| Package | Description |
|---|---|
| com.sybase.esp.sdk | |
| com.sybase.esp.util.upload |
| Modifier and Type | Method and Description |
|---|---|
Publisher |
SDK.createPublisher(Uri uri,
Credentials creds)
Returns a
Publisher that can be used to publish data to the specified project. |
Publisher |
SDK.createPublisher(Uri uri,
Credentials creds,
PublisherOptions options)
Returns a
Publisher that can be used to publish data to the specified project. |
Subscriber |
SDK.createSubscriber(Uri uri,
Credentials creds)
Returns a new
Subscriber with default options. |
Subscriber |
SDK.createSubscriber(Uri uri,
Credentials creds,
SubscriberOptions options)
Returnes a new
Subscriber with the specified options. |
abstract void |
ServerController.deployPublicKey(java.lang.String usernameOrAlias,
byte[] pubKey)
Deploy a public key to the server
|
abstract byte[] |
ServerController.getEncryptedBytes(java.lang.String clearText)
Encrypt the supplied text using server's key.
|
Project |
SDK.getProject(java.lang.String host,
int commandPort,
Credentials creds)
Returns a project object for a standalone project (one that has been started manually on the command line).
|
Project |
SDK.getProject(java.lang.String host,
int commandPort,
java.lang.String gatewayHost,
int gatewyPort,
Credentials creds,
ProjectOptions options)
Returns a project object for a standalone project (one that has been started manually on the command line).
|
Project |
Server.getProject(java.lang.String workspace,
java.lang.String projectName)
Is equivalent to the call
#getProject(String, ProjectOptions) with default project options. |
Project |
Server.getProject(java.lang.String workspace,
java.lang.String projectName,
ProjectOptions options)
Retrieves the Project object corresponding to the projectName.
|
Project |
SDK.getProject(Uri uri,
Credentials creds)
Retrieves a
Project object corresponding to the project refered to by the uri. |
Project |
SDK.getProject(Uri uri,
Credentials creds,
ProjectOptions options)
Retrieves a
Project object corresponding to the server project refered to by the uri using the
specified options. |
| Modifier and Type | Method and Description |
|---|---|
void |
Uploader.connect(java.lang.String uri,
Credentials creds,
int blockSize)
Connects the uploader to the target project running in the server framework.
|
void |
Uploader.connect(java.lang.String host,
int port,
Credentials creds,
int blocksize)
Connect to a standalone project.
|