- DCS_MASTER_PORT - Static variable in class org.trafodion.rest.Constants
-
Configuration key for DCS master port
- DECODE - Static variable in class org.trafodion.rest.util.Base64
-
Specify decoding.
- decode(byte[], int, int, int) - Static method in class org.trafodion.rest.util.Base64
-
Very low-level access to decoding ASCII characters in the form of a byte
array.
- decode(String) - Static method in class org.trafodion.rest.util.Base64
-
Decodes data from Base64 notation, automatically detecting gzip-compressed
data and decompressing it.
- decode(String, int) - Static method in class org.trafodion.rest.util.Base64
-
Decodes data from Base64 notation, automatically detecting gzip-compressed
data and decompressing it.
- decode4to3(byte[], int, byte[], int, int) - Static method in class org.trafodion.rest.util.Base64
-
Decodes four bytes from array source and writes the resulting
bytes (up to three of them) to destination.
- decodeFileToFile(String, String) - Static method in class org.trafodion.rest.util.Base64
-
Reads infile and decodes it to outfile.
- decodeFromFile(String) - Static method in class org.trafodion.rest.util.Base64
-
Convenience method for reading a base64-encoded file and decoding it.
- decodeToFile(String, String) - Static method in class org.trafodion.rest.util.Base64
-
Convenience method for decoding data to a file.
- decodeToObject(String) - Static method in class org.trafodion.rest.util.Base64
-
Attempts to decode Base64 data and deserialize a Java Object within.
- DEFAULT_DCS_MASTER_PORT - Static variable in class org.trafodion.rest.Constants
-
Default value for DCS master port
- DEFAULT_HOST - Static variable in class org.trafodion.rest.Constants
-
default host address
- DEFAULT_KEYVALUE_SEPARATOR - Static variable in class org.trafodion.rest.util.Strings
-
- DEFAULT_REST_CLOUD_COMMAND - Static variable in class org.trafodion.rest.Constants
-
Default value for REST cloud command
- DEFAULT_REST_DNS_INTERFACE - Static variable in class org.trafodion.rest.Constants
-
Default value for REST DNS interface
- DEFAULT_REST_KEYSTORE - Static variable in class org.trafodion.rest.Constants
-
Default ssl keystore
- DEFAULT_REST_KEYSTORE_COMMAND - Static variable in class org.trafodion.rest.Constants
-
Rest Keystore creation command
- DEFAULT_REST_MASTER_AUTHORIZATION - Static variable in class org.trafodion.rest.Constants
-
Default value for Rest authorization feature
- DEFAULT_SEPARATOR - Static variable in class org.trafodion.rest.util.Strings
-
- DEFAULT_T4_DRIVER_MAX_POOL_SIZE - Static variable in class org.trafodion.rest.Constants
-
Rest minPoolSize used in JdbcT4Util
- DEFAULT_T4_DRIVER_MIN_POOL_SIZE - Static variable in class org.trafodion.rest.Constants
-
Rest minPoolSize used in JdbcT4Util
- DEFAULT_T4_DRIVER_USERNAME_PASSWORD - Static variable in class org.trafodion.rest.Constants
-
Rest default base64 encoded username:password used in JdbcT4Util
- DEFAULT_ZK_RECOVERY_RETRY - Static variable in class org.trafodion.rest.Constants
-
Default value for ZooKeeper recovery retry
- DEFAULT_ZK_RECOVERY_RETRY_INTERVAL_MILLIS - Static variable in class org.trafodion.rest.Constants
-
Default value for ZooKeeper recovery retry interval millis
- DEFAULT_ZK_SESSION_TIMEOUT - Static variable in class org.trafodion.rest.Constants
-
Default value for ZooKeeper session timeout
- DEFAULT_ZOOKEEPER_CLIENT_PORT - Static variable in class org.trafodion.rest.Constants
-
Default client port that the zookeeper listens on
- DEFAULT_ZOOKEEPER_ZNODE_MASTER - Static variable in class org.trafodion.rest.Constants
-
- DEFAULT_ZOOKEEPER_ZNODE_MASTER_LEADER - Static variable in class org.trafodion.rest.Constants
-
- DEFAULT_ZOOKEEPER_ZNODE_PARENT - Static variable in class org.trafodion.rest.Constants
-
- DEFAULT_ZOOKEEPER_ZNODE_SERVERS - Static variable in class org.trafodion.rest.Constants
-
- DEFAULT_ZOOKEEPER_ZNODE_SERVERS_REGISTERED - Static variable in class org.trafodion.rest.Constants
-
- DEFAULT_ZOOKEEPER_ZNODE_SERVERS_RUNNING - Static variable in class org.trafodion.rest.Constants
-
- DEFAULT_ZOOKEPER_MAX_CLIENT_CNXNS - Static variable in class org.trafodion.rest.Constants
-
Default limit on concurrent client-side zookeeper connections
- DEFAULT_ZOOKEPER_RECOVERABLE_WAITIME - Static variable in class org.trafodion.rest.Constants
-
Default wait time for the recoverable zookeeper
- delete(String) - Method in class org.trafodion.rest.client.Client
-
Send a DELETE request
- delete(Cluster, String) - Method in class org.trafodion.rest.client.Client
-
Send a DELETE request
- delete(String, int) - Method in class org.trafodion.rest.zookeeper.ZkClient
-
delete is an idempotent operation.
- domainNamePointerToHostName(String) - Static method in class org.trafodion.rest.util.Strings
-
Given a PTR string generated via reverse DNS lookup, return everything
except the trailing period.
- DONT_BREAK_LINES - Static variable in class org.trafodion.rest.util.Base64
-
Don't break lines when encoding (violates strict Base64 specification)
- EMPTY_HEADER_ARRAY - Static variable in class org.trafodion.rest.client.Client
-
- ENCODE - Static variable in class org.trafodion.rest.util.Base64
-
Specify encoding.
- encode3to4(byte[], byte[], int, int) - Static method in class org.trafodion.rest.util.Base64
-
Encodes up to the first three bytes of array threeBytes and
returns a four-byte array in Base64 notation.
- encode3to4(byte[], int, int, byte[], int, int) - Static method in class org.trafodion.rest.util.Base64
-
Encodes up to three bytes of the array source and writes the
resulting four Base64 bytes to destination.
- encodeBytes(byte[]) - Static method in class org.trafodion.rest.util.Base64
-
Encodes a byte array into Base64 notation.
- encodeBytes(byte[], int) - Static method in class org.trafodion.rest.util.Base64
-
Encodes a byte array into Base64 notation.
- encodeBytes(byte[], int, int) - Static method in class org.trafodion.rest.util.Base64
-
Encodes a byte array into Base64 notation.
- encodeBytes(byte[], int, int, int) - Static method in class org.trafodion.rest.util.Base64
-
Encodes a byte array into Base64 notation.
- encodeFileToFile(String, String) - Static method in class org.trafodion.rest.util.Base64
-
Reads infile and encodes it to outfile.
- encodeFromFile(String) - Static method in class org.trafodion.rest.util.Base64
-
Convenience method for reading a binary file and base64-encoding it.
- encodeObject(Serializable) - Static method in class org.trafodion.rest.util.Base64
-
Serializes an object and returns the Base64-encoded version of that
serialized object.
- encodeObject(Serializable, int) - Static method in class org.trafodion.rest.util.Base64
-
Serializes an object and returns the Base64-encoded version of that
serialized object.
- encodeToFile(byte[], String) - Static method in class org.trafodion.rest.util.Base64
-
Convenience method for encoding data to a file.
- equals(byte[], byte[]) - Static method in class org.trafodion.rest.util.Bytes
-
- ESTIMATED_HEAP_TAX - Static variable in class org.trafodion.rest.util.Bytes
-
Estimate of size cost to pay beyond payload in jvm for instance of byte [].
- exec(String) - Method in class org.trafodion.rest.util.JdbcT2Util
-
- execute(Cluster, HttpMethod, Header[], String) - Method in class org.trafodion.rest.client.Client
-
Execute a transaction method.
- executePathOnly(Cluster, HttpMethod, Header[], String) - Method in class org.trafodion.rest.client.Client
-
Execute a transaction method given only the path.
- executeURI(HttpMethod, Header[], String) - Method in class org.trafodion.rest.client.Client
-
Execute a transaction method given a complete URI.
- exists(String, Watcher) - Method in class org.trafodion.rest.zookeeper.ZkClient
-
exists is an idempotent operation.
- exists(String, boolean) - Method in class org.trafodion.rest.zookeeper.ZkClient
-
exists is an idempotent operation.
- generateFile(File, VerGen.Version, int, String) - Static method in class org.trafodion.rest.version.util.VerGen
-
- get(String) - Method in class org.trafodion.rest.client.Client
-
Send a GET request
- get(Cluster, String) - Method in class org.trafodion.rest.client.Client
-
Send a GET request
- get(String, String) - Method in class org.trafodion.rest.client.Client
-
Send a GET request
- get(Cluster, String, String) - Method in class org.trafodion.rest.client.Client
-
Send a GET request
- get(String, Header[]) - Method in class org.trafodion.rest.client.Client
-
Send a GET request
- get(Cluster, String, Header[]) - Method in class org.trafodion.rest.client.Client
-
Send a GET request
- get(ServletContext, UriInfo) - Method in class org.trafodion.rest.VersionResource
-
Build a response for a version request.
- get(String, Watcher) - Method in class org.trafodion.rest.zookeeper.ZkClient
-
- getAll(UriInfo, Request) - Method in class org.trafodion.rest.ServerResource
-
- getAll(UriInfo, Request) - Method in class org.trafodion.rest.TransactionsResource
-
- getAlphabet(int) - Static method in class org.trafodion.rest.util.Base64
-
Returns one of the _SOMETHING_ALPHABET byte arrays depending on the options
specified.
- getAttemptTimes() - Method in class org.trafodion.rest.util.RetryCounter
-
- getBody() - Method in class org.trafodion.rest.client.Response
-
- getBytes(ByteBuffer) - Static method in class org.trafodion.rest.util.Bytes
-
This method will get a sequence of bytes from pos -> limit,
but will restore pos after.
- getCanonicalHostName(NetworkInterface, InetAddress) - Method in class org.trafodion.rest.util.NetworkConfiguration
-
- getChildren(String, Watcher) - Method in class org.trafodion.rest.zookeeper.ZkClient
-
getChildren is an idempotent operation.
- getClientAppl() - Method in class org.trafodion.rest.RegisteredServer
-
- getClientIpAddress() - Method in class org.trafodion.rest.RegisteredServer
-
- getClientName() - Method in class org.trafodion.rest.RegisteredServer
-
- getClientPort() - Method in class org.trafodion.rest.RegisteredServer
-
- getCluster() - Method in class org.trafodion.rest.client.Client
-
- getCode() - Method in class org.trafodion.rest.client.Response
-
- getCommand() - Method in class org.trafodion.rest.script.ScriptContext
-
- getConnection() - Method in class org.trafodion.rest.util.JdbcT4Util
-
- getConnections(UriInfo, Request) - Method in class org.trafodion.rest.ServerResource
-
- getContext(Class<?>) - Method in class org.trafodion.rest.provider.JAXBContextResolver
-
- getData(String, Watcher, Stat) - Method in class org.trafodion.rest.zookeeper.ZkClient
-
getData is an idempotent operation.
- getData(String, boolean, Stat) - Method in class org.trafodion.rest.zookeeper.ZkClient
-
getData is an idemnpotent operation.
- getDate() - Static method in class org.trafodion.rest.util.VersionInfo
-
The date that rest was compiled.
- getDcs(UriInfo, Request) - Method in class org.trafodion.rest.ServerResource
-
- getDcsServersList() - Method in class org.trafodion.rest.RESTServlet
-
- getDcsSummary(UriInfo, Request) - Method in class org.trafodion.rest.ServerResource
-
- getDebug() - Method in class org.trafodion.rest.script.ScriptContext
-
- getDecodabet(int) - Static method in class org.trafodion.rest.util.Base64
-
Returns one of the _SOMETHING_DECODABET byte arrays depending on the
options specified.
- getDialogueId() - Method in class org.trafodion.rest.RegisteredServer
-
- getDtm(UriInfo, Request) - Method in class org.trafodion.rest.ServerResource
-
- getExitCode() - Method in class org.trafodion.rest.script.ScriptContext
-
- getExtHostAddress() - Method in class org.trafodion.rest.util.NetworkConfiguration
-
- getExtraHeader(String) - Method in class org.trafodion.rest.client.Client
-
Get an extra header value.
- getExtraHeaders() - Method in class org.trafodion.rest.client.Client
-
Get all extra headers (read-only).
- getHeader(String) - Method in class org.trafodion.rest.client.Response
-
- getHeaders() - Method in class org.trafodion.rest.client.Response
-
- getHostname() - Method in class org.trafodion.rest.RunningServer
-
- getHostName() - Method in class org.trafodion.rest.script.ScriptContext
-
- getHostName() - Method in class org.trafodion.rest.util.NetworkConfiguration
-
- getHttpClient() - Method in class org.trafodion.rest.client.Client
-
- getInetAddress(NetworkInterface) - Method in class org.trafodion.rest.util.NetworkConfiguration
-
- getInfoPort() - Method in class org.trafodion.rest.RunningServer
-
- getInstance() - Static method in class org.trafodion.rest.RESTServlet
-
- getInstance(Configuration) - Static method in class org.trafodion.rest.RESTServlet
-
- getInstance() - Method in class org.trafodion.rest.RunningServer
-
- getInstance() - Static method in class org.trafodion.rest.script.ScriptManager
-
- getInstanceIntValue() - Method in class org.trafodion.rest.RunningServer
-
- getIntHostAddress() - Method in class org.trafodion.rest.util.NetworkConfiguration
-
- getIpAddress() - Method in class org.trafodion.rest.RegisteredServer
-
- getIsRegistered() - Method in class org.trafodion.rest.RegisteredServer
-
- getItem(int) - Method in class org.trafodion.rest.RunningServer
-
- GetJavaProperty - Class in org.trafodion.rest.util
-
A generic way for querying Java properties.
- GetJavaProperty() - Constructor for class org.trafodion.rest.util.GetJavaProperty
-
- getJerseyVersion() - Method in class org.trafodion.rest.model.VersionModel
-
- getJstackProgram(UriInfo, Request, String) - Method in class org.trafodion.rest.ServerResource
-
- getJVMVersion() - Method in class org.trafodion.rest.model.VersionModel
-
- getLocation() - Method in class org.trafodion.rest.client.Response
-
- getMaxRetries() - Method in class org.trafodion.rest.util.RetryCounter
-
- getNid() - Method in class org.trafodion.rest.RegisteredServer
-
- getNodes(UriInfo, Request) - Method in class org.trafodion.rest.ServerResource
-
- getOSVersion() - Method in class org.trafodion.rest.model.VersionModel
-
- getPid() - Method in class org.trafodion.rest.RegisteredServer
-
- getPort() - Method in class org.trafodion.rest.RegisteredServer
-
- getProcessName() - Method in class org.trafodion.rest.RegisteredServer
-
- getPstack(UriInfo, Request) - Method in class org.trafodion.rest.ServerResource
-
- getPstackProgram(UriInfo, Request, String) - Method in class org.trafodion.rest.ServerResource
-
- getRegistered() - Method in class org.trafodion.rest.RunningServer
-
- getRESTVersion() - Method in class org.trafodion.rest.model.VersionModel
-
- getRevision() - Static method in class org.trafodion.rest.util.VersionInfo
-
Get the subversion revision number for the root directory
- getRms(UriInfo, Request) - Method in class org.trafodion.rest.ServerResource
-
- getScriptManager() - Method in class org.trafodion.rest.RESTServlet
-
- getScriptName() - Method in class org.trafodion.rest.script.ScriptContext
-
- getServerResource() - Method in class org.trafodion.rest.RootResource
-
- getServerVersion() - Method in class org.trafodion.rest.model.VersionModel
-
- getSessionId() - Method in class org.trafodion.rest.zookeeper.ZkClient
-
- getSessionPasswd() - Method in class org.trafodion.rest.zookeeper.ZkClient
-
- getSize(Object, Class<?>, Type, Annotation[], MediaType) - Method in class org.trafodion.rest.provider.producer.PlainTextMessageBodyProducer
-
- getStartTime() - Method in class org.trafodion.rest.RunningServer
-
- getStartTimeAsDate() - Method in class org.trafodion.rest.RunningServer
-
- getState() - Method in class org.trafodion.rest.RegisteredServer
-
- getState() - Method in class org.trafodion.rest.zookeeper.ZkClient
-
- getStats(UriInfo, Request) - Method in class org.trafodion.rest.TransactionsResource
-
- GetStatusResponse - Class in org.trafodion.rest
-
- GetStatusResponse() - Constructor for class org.trafodion.rest.GetStatusResponse
-
- GetStatusResponse(String) - Constructor for class org.trafodion.rest.GetStatusResponse
-
- getStdErr() - Method in class org.trafodion.rest.script.ScriptContext
-
- getStdOut() - Method in class org.trafodion.rest.script.ScriptContext
-
- getStripStdErr() - Method in class org.trafodion.rest.script.ScriptContext
-
- getStripStdOut() - Method in class org.trafodion.rest.script.ScriptContext
-
- getTimestamp() - Method in class org.trafodion.rest.RegisteredServer
-
- getTimestampAsDate() - Method in class org.trafodion.rest.RegisteredServer
-
- getTm(UriInfo, Request) - Method in class org.trafodion.rest.TransactionsResource
-
- getTransactionsTm() - Method in class org.trafodion.rest.RootResource
-
- getUrl() - Static method in class org.trafodion.rest.util.VersionInfo
-
Get the subversion URL for the root rest directory.
- getUser() - Static method in class org.trafodion.rest.util.VersionInfo
-
The user that compiled rest.
- getVersion() - Static method in class org.trafodion.rest.util.VersionInfo
-
Get the rest version.
- getVersionResource() - Method in class org.trafodion.rest.RootResource
-
- getVersionResource() - Method in class org.trafodion.rest.VersionResource
-
Dispatch /version/rest to self.
- getWorkloadId() - Method in class org.trafodion.rest.GetStatusResponse
-
- getZk() - Method in class org.trafodion.rest.zookeeper.ZkClient
-
- getZkQuorum() - Method in class org.trafodion.rest.zookeeper.ZkClient
-
- getZKQuorumServersString(Properties) - Static method in class org.trafodion.rest.zookeeper.ZKConfig
-
Return the ZK Quorum servers string given zk properties returned by
makeZKProps
- getZKQuorumServersString(Configuration) - Static method in class org.trafodion.rest.zookeeper.ZKConfig
-
Return the ZK Quorum servers string given the specified configuration.
- getZooKeeper() - Method in class org.trafodion.rest.zookeeper.ZkClient
-
- GZIP - Static variable in class org.trafodion.rest.util.Base64
-
Specify that data should be gzip-compressed.
- read() - Method in class org.trafodion.rest.util.Base64.Base64InputStream
-
Reads enough of the input stream to convert to/from Base64 and returns
the next byte.
- read(byte[], int, int) - Method in class org.trafodion.rest.util.Base64.Base64InputStream
-
- readByteArray(DataInput) - Static method in class org.trafodion.rest.util.Bytes
-
Read byte-array written with a WritableableUtils.vint prefix.
- readByteArrayThrowsRuntime(DataInput) - Static method in class org.trafodion.rest.util.Bytes
-
Read byte-array written with a WritableableUtils.vint prefix.
- readVLong(byte[], int) - Static method in class org.trafodion.rest.util.Bytes
-
Reads a zero-compressed encoded long from input stream and returns it.
- RegisteredServer - Class in org.trafodion.rest
-
- RegisteredServer() - Constructor for class org.trafodion.rest.RegisteredServer
-
- remove(String) - Method in class org.trafodion.rest.client.Cluster
-
Remove a node from the cluster
- remove(String, int) - Method in class org.trafodion.rest.client.Cluster
-
Remove a node from the cluster
- removeExtraHeader(String) - Method in class org.trafodion.rest.client.Client
-
Remove an extra header.
- removeMetaData(byte[]) - Method in class org.trafodion.rest.zookeeper.ZkClient
-
- removeScript(String) - Method in class org.trafodion.rest.script.ScriptManager
-
- resetZk() - Method in class org.trafodion.rest.zookeeper.ZkClient
-
- ResourceBase - Class in org.trafodion.rest
-
- ResourceBase() - Constructor for class org.trafodion.rest.ResourceBase
-
- ResourceConfig - Class in org.trafodion.rest
-
- ResourceConfig() - Constructor for class org.trafodion.rest.ResourceConfig
-
- Response - Class in org.trafodion.rest.client
-
The HTTP result code, response headers, and body of a HTTP response.
- Response(int) - Constructor for class org.trafodion.rest.client.Response
-
Constructor
- Response(int, Header[]) - Constructor for class org.trafodion.rest.client.Response
-
Constructor
- Response(int, Header[], byte[]) - Constructor for class org.trafodion.rest.client.Response
-
Constructor
- REST_CLOUD_COMMAND - Static variable in class org.trafodion.rest.Constants
-
REST cloud command
- REST_DNS_INTERFACE - Static variable in class org.trafodion.rest.Constants
-
Configuration key for REST DNS interface
- REST_KEYSTORE - Static variable in class org.trafodion.rest.Constants
-
Rest ssl keystore
- REST_KEYSTORE_COMMAND - Static variable in class org.trafodion.rest.Constants
-
Rest keystore command
- REST_MASTER_AUTHORIZATION - Static variable in class org.trafodion.rest.Constants
-
Rest authorization feature
- REST_MASTER_AUTHORIZATION_IS_ENABLED - Static variable in class org.trafodion.rest.Constants
-
Rest authorization is enabled
- REST_MASTER_AUTHORIZATION_IS_NOT_ENABLED - Static variable in class org.trafodion.rest.Constants
-
Rest authorization is not enabled
- REST_MASTER_TRAFODION_QUERY_TOOLS_IS_NOT_ENABLED - Static variable in class org.trafodion.rest.Constants
-
Rest Trafodion query tools is not enabled
- REST_SSL_PASSWORD - Static variable in class org.trafodion.rest.Constants
-
Rest ssl password
- REST_TRAFODION_HOME - Static variable in class org.trafodion.rest.Constants
-
User program feature is enabled
- RestConfiguration - Class in org.trafodion.rest.util
-
Adds rest configuration files to a Configuration
- RestConfiguration() - Constructor for class org.trafodion.rest.util.RestConfiguration
-
- RestConstants - Interface in org.trafodion.rest
-
Common constants for org.trafodion.rest
- RESTServlet - Class in org.trafodion.rest
-
Singleton class encapsulating global REST servlet state and functions.
- resumeEncoding() - Method in class org.trafodion.rest.util.Base64.Base64OutputStream
-
Resumes encoding of the stream.
- RetryCounter - Class in org.trafodion.rest.util
-
- RetryCounter(int, int, TimeUnit) - Constructor for class org.trafodion.rest.util.RetryCounter
-
- RetryCounterFactory - Class in org.trafodion.rest.util
-
- RetryCounterFactory(int, int) - Constructor for class org.trafodion.rest.util.RetryCounterFactory
-
- RootResource - Class in org.trafodion.rest
-
- RootResource() - Constructor for class org.trafodion.rest.RootResource
-
- run() - Method in class org.trafodion.rest.script.ScriptManagerWatcher
-
- run() - Method in class org.trafodion.rest.TrafodionRest
-
- RunningServer - Class in org.trafodion.rest
-
- RunningServer() - Constructor for class org.trafodion.rest.RunningServer
-
- runScript(ScriptContext) - Method in class org.trafodion.rest.script.ScriptManager
-
- T2_DRIVER_CLASS_NAME - Static variable in class org.trafodion.rest.Constants
-
T2 Driver name
- T2_DRIVER_URL - Static variable in class org.trafodion.rest.Constants
-
T2 Driver URL
- T4_DRIVER_CLASS_NAME - Static variable in class org.trafodion.rest.Constants
-
T4 Driver name
- T4_DRIVER_MAX_POOL_SIZE - Static variable in class org.trafodion.rest.Constants
-
Rest minPoolSize used in JdbcT4Util
- T4_DRIVER_MIN_POOL_SIZE - Static variable in class org.trafodion.rest.Constants
-
Rest minPoolSize used in JdbcT4Util
- T4_DRIVER_URL - Static variable in class org.trafodion.rest.Constants
-
T4 Driver URL
- T4_DRIVER_USERNAME_PASSWORD - Static variable in class org.trafodion.rest.Constants
-
Rest base64 encoded username:password used in JdbcT4Util
- test(UriInfo, Request) - Method in class org.trafodion.rest.ServerResource
-
- THIRTY_SECONDS - Static variable in class org.trafodion.rest.Constants
-
long constant for thirty
- toBigDecimal(byte[]) - Static method in class org.trafodion.rest.util.Bytes
-
Converts a byte array to a BigDecimal
- toBigDecimal(byte[], int, int) - Static method in class org.trafodion.rest.util.Bytes
-
Converts a byte array to a BigDecimal value
- toBinaryFromHex(byte) - Static method in class org.trafodion.rest.util.Bytes
-
Takes a ASCII digit in the range A-F0-9 and returns
the corresponding integer/ordinal value.
- toBoolean(byte[]) - Static method in class org.trafodion.rest.util.Bytes
-
- toBytes(ByteBuffer) - Static method in class org.trafodion.rest.util.Bytes
-
Returns a new byte array, copied from the passed ByteBuffer.
- toBytes(String) - Static method in class org.trafodion.rest.util.Bytes
-
Converts a string to a UTF-8 byte array.
- toBytes(boolean) - Static method in class org.trafodion.rest.util.Bytes
-
Convert a boolean to a byte array.
- toBytes(long) - Static method in class org.trafodion.rest.util.Bytes
-
Convert a long value to a byte array using big-endian.
- toBytes(float) - Static method in class org.trafodion.rest.util.Bytes
-
- toBytes(double) - Static method in class org.trafodion.rest.util.Bytes
-
Serialize a double as the IEEE 754 double format output.
- toBytes(int) - Static method in class org.trafodion.rest.util.Bytes
-
Convert an int value to a byte array
- toBytes(short) - Static method in class org.trafodion.rest.util.Bytes
-
- toBytes(BigDecimal) - Static method in class org.trafodion.rest.util.Bytes
-
Convert a BigDecimal value to a byte array
- toBytesBinary(String) - Static method in class org.trafodion.rest.util.Bytes
-
- toDouble(byte[]) - Static method in class org.trafodion.rest.util.Bytes
-
- toDouble(byte[], int) - Static method in class org.trafodion.rest.util.Bytes
-
- toFloat(byte[]) - Static method in class org.trafodion.rest.util.Bytes
-
Presumes float encoded as IEEE 754 floating-point "single format"
- toFloat(byte[], int) - Static method in class org.trafodion.rest.util.Bytes
-
Presumes float encoded as IEEE 754 floating-point "single format"
- toInt(byte[]) - Static method in class org.trafodion.rest.util.Bytes
-
Converts a byte array to an int value
- toInt(byte[], int) - Static method in class org.trafodion.rest.util.Bytes
-
Converts a byte array to an int value
- toInt(byte[], int, int) - Static method in class org.trafodion.rest.util.Bytes
-
Converts a byte array to an int value
- toLong(byte[]) - Static method in class org.trafodion.rest.util.Bytes
-
Converts a byte array to a long value.
- toLong(byte[], int) - Static method in class org.trafodion.rest.util.Bytes
-
Converts a byte array to a long value.
- toLong(byte[], int, int) - Static method in class org.trafodion.rest.util.Bytes
-
Converts a byte array to a long value.
- toShort(byte[]) - Static method in class org.trafodion.rest.util.Bytes
-
Converts a byte array to a short value
- toShort(byte[], int) - Static method in class org.trafodion.rest.util.Bytes
-
Converts a byte array to a short value
- toShort(byte[], int, int) - Static method in class org.trafodion.rest.util.Bytes
-
Converts a byte array to a short value
- toString() - Method in class org.trafodion.rest.model.VersionModel
-
- toString() - Method in class org.trafodion.rest.script.ScriptContext
-
- toString(byte[]) - Static method in class org.trafodion.rest.util.Bytes
-
- toString(byte[], String, byte[]) - Static method in class org.trafodion.rest.util.Bytes
-
Joins two byte arrays together using a separator.
- toString(byte[], int, int) - Static method in class org.trafodion.rest.util.Bytes
-
This method will convert utf8 encoded bytes into a string.
- toStringBinary(byte[]) - Static method in class org.trafodion.rest.util.Bytes
-
Write a printable representation of a byte array.
- toStringBinary(ByteBuffer) - Static method in class org.trafodion.rest.util.Bytes
-
Converts the given byte buffer, from its array offset to its limit, to
a string.
- toStringBinary(byte[], int, int) - Static method in class org.trafodion.rest.util.Bytes
-
Write a printable representation of a byte array.
- TrafodionRest - Class in org.trafodion.rest
-
- TrafodionRest(String[]) - Constructor for class org.trafodion.rest.TrafodionRest
-
- TrafodionRest(Configuration) - Constructor for class org.trafodion.rest.TrafodionRest
-
- TransactionsResource - Class in org.trafodion.rest
-
- TransactionsResource() - Constructor for class org.trafodion.rest.TransactionsResource
-
- ZERO_L - Static variable in class org.trafodion.rest.Constants
-
long constant for zero
- ZEROES - Static variable in class org.trafodion.rest.Constants
-
- ZK_CFG_PROPERTY_PREFIX - Static variable in class org.trafodion.rest.Constants
-
Common prefix of ZooKeeper configuration properties
- ZK_CFG_PROPERTY_PREFIX_LEN - Static variable in class org.trafodion.rest.Constants
-
- ZK_RECOVERY_RETRY - Static variable in class org.trafodion.rest.Constants
-
Configuration key for ZooKeeper recovery retry
- ZK_RECOVERY_RETRY_INTERVAL_MILLIS - Static variable in class org.trafodion.rest.Constants
-
Configuration key for ZooKeeper recovery retry interval millis
- ZK_SESSION_TIMEOUT - Static variable in class org.trafodion.rest.Constants
-
Configuration key for ZooKeeper session timeout
- ZkClient - Class in org.trafodion.rest.zookeeper
-
- ZkClient() - Constructor for class org.trafodion.rest.zookeeper.ZkClient
-
- ZkClient(int, int, int) - Constructor for class org.trafodion.rest.zookeeper.ZkClient
-
- ZkClient(String, int) - Constructor for class org.trafodion.rest.zookeeper.ZkClient
-
- ZKConfig - Class in org.trafodion.rest.zookeeper
-
Utility methods for reading, parsing, and building zookeeper configuration.
- ZKConfig() - Constructor for class org.trafodion.rest.zookeeper.ZKConfig
-
- ZkQuorumPeer - Class in org.trafodion.rest.zookeeper
-
DCS's version of ZooKeeper's QuorumPeer.
- ZkQuorumPeer() - Constructor for class org.trafodion.rest.zookeeper.ZkQuorumPeer
-
- ZKServerTool - Class in org.trafodion.rest.zookeeper
-
Tool for reading ZooKeeper servers from dcs XML configuration and producing
a line-by-line list for use by bash scripts.
- ZKServerTool() - Constructor for class org.trafodion.rest.zookeeper.ZKServerTool
-
- ZkUtil - Class in org.trafodion.rest.zookeeper
-
- ZkUtil() - Constructor for class org.trafodion.rest.zookeeper.ZkUtil
-
- ZOOKEEPER_CLIENT_PORT - Static variable in class org.trafodion.rest.Constants
-
Parameter name for the client port that the zookeeper listens on
- ZOOKEEPER_CONFIG_NAME - Static variable in class org.trafodion.rest.Constants
-
Name of ZooKeeper config file in conf/ directory.
- ZOOKEEPER_DATA_DIR - Static variable in class org.trafodion.rest.Constants
-
Parameter name for the ZK data directory
- ZOOKEEPER_MAX_CLIENT_CNXNS - Static variable in class org.trafodion.rest.Constants
-
Parameter name for the limit on concurrent client-side zookeeper
connections
- ZOOKEEPER_QUORUM - Static variable in class org.trafodion.rest.Constants
-
Name of ZooKeeper quorum configuration parameter.
- ZOOKEEPER_RECOVERABLE_WAITTIME - Static variable in class org.trafodion.rest.Constants
-
Parameter name for the wait time for the recoverable zookeeper
- ZOOKEEPER_USEMULTI - Static variable in class org.trafodion.rest.Constants
-
Configuration key for whether to use ZK.multi
- ZOOKEEPER_ZNODE_PARENT - Static variable in class org.trafodion.rest.Constants
-
Parameter name for the dcs root dir in ZK for this cluster
- ZooKeeperMainServerArg - Class in org.trafodion.rest.zookeeper
-
Tool for reading a ZooKeeper server from HBase XML configuration producing
the '-server host:port' argument to pass ZooKeeperMain.
- ZooKeeperMainServerArg() - Constructor for class org.trafodion.rest.zookeeper.ZooKeeperMainServerArg
-