com.sibvisions.rad.server.protocol
Interface ICommandConstants


public interface ICommandConstants

The ICommandConstants defines the standard protocol commands.


Field Summary
static java.lang.String DB_DELETE
          the delete command.
static java.lang.String DB_EXEC_FUNCTION
          the execute function command.
static java.lang.String DB_EXEC_PROCEDURE
          the execute procedure command.
static java.lang.String DB_EXEC_QUERY
          the execute query command.
static java.lang.String DB_EXEC_SQL
          the execute sql command.
static java.lang.String DB_EXEC_STATEMENT
          the execute statement command.
static java.lang.String DB_FETCH
          the fetch command.
static java.lang.String DB_GET_ALLOWEDVALUES
          the get allowed values command.
static java.lang.String DB_GET_COLUMNMETADATA
          the get column metadata command.
static java.lang.String DB_GET_DEFAULTVALUES
          the get default values command.
static java.lang.String DB_GET_FKS
          the get foreign keys command.
static java.lang.String DB_GET_PK
          the get primary key command.
static java.lang.String DB_GET_TABLEINFO
          the get table info command.
static java.lang.String DB_GET_TABLESYNONYM
          the get tablesynonym command.
static java.lang.String DB_GET_UKS
          the get unique keys command.
static java.lang.String DB_INSERT
          the insert command.
static java.lang.String DB_UPDATE
          the update command.
static java.lang.String SERVER_CREATE_SESSION
          the create session command.
static java.lang.String SERVER_CREATE_SUBSESSION
          the create subsession command.
static java.lang.String SERVER_DESTROY_SESSION
          the destroy session command.
static java.lang.String SERVER_EXEC_ACTION
          the execute action command.
static java.lang.String SERVER_EXEC_ACTIONCALLBACK
          the execute action callback command.
static java.lang.String SERVER_EXEC_CALLBACK
          the execute callback command.
static java.lang.String SERVER_EXECUTE
          the execute command.
static java.lang.String SERVER_PROCESS
          the process command.
static java.lang.String SERVER_SET_NEWPASSWORD
          the set new password command.
static java.lang.String SESSION_AUTHENTICATE
          the authenticate command.
static java.lang.String SESSION_CALL
          the call command.
static java.lang.String SESSION_CALL_ACTION
          the call action command.
static java.lang.String SESSION_CALLBACK
          the callback command.
static java.lang.String SESSION_CHECK_ACCESS
          the check access command.
static java.lang.String SESSION_CONFIGURATION
          the configuration command.
static java.lang.String SESSION_INIT
          the init session command.
static java.lang.String SESSMAN_DESTROY
          the session destroy command.
static java.lang.String SESSMAN_INIT_PROPERTIES
          the init properties command.
static java.lang.String SESSMAN_MASTER
          the master session command.
static java.lang.String SESSMAN_POST_CREATE
          the post create session command.
static java.lang.String SESSMAN_SUB
          the sub session command.
static java.lang.String SESSMAN_VALIDATE
          the validate sessions command.
static java.lang.String STORAGE_CREATE_AUTOLINK
          the create automatic link command.
static java.lang.String STORAGE_EXEC_DELETE
          the execute delete command.
static java.lang.String STORAGE_EXEC_FETCH
          the execute fetch command.
static java.lang.String STORAGE_EXEC_INSERT
          the execute insert command.
static java.lang.String STORAGE_EXEC_REFETCH
          the execute refetch command.
static java.lang.String STORAGE_EXEC_UPDATE
          the execute update command.
static java.lang.String STORAGE_OPEN
          the storage open command.
 

Field Detail

DB_INSERT

static final java.lang.String DB_INSERT
the insert command.

See Also:
Constant Field Values

DB_FETCH

static final java.lang.String DB_FETCH
the fetch command.

See Also:
Constant Field Values

DB_UPDATE

static final java.lang.String DB_UPDATE
the update command.

See Also:
Constant Field Values

DB_DELETE

static final java.lang.String DB_DELETE
the delete command.

See Also:
Constant Field Values

DB_GET_UKS

static final java.lang.String DB_GET_UKS
the get unique keys command.

See Also:
Constant Field Values

DB_GET_PK

static final java.lang.String DB_GET_PK
the get primary key command.

See Also:
Constant Field Values

DB_GET_FKS

static final java.lang.String DB_GET_FKS
the get foreign keys command.

See Also:
Constant Field Values

DB_GET_DEFAULTVALUES

static final java.lang.String DB_GET_DEFAULTVALUES
the get default values command.

See Also:
Constant Field Values

DB_GET_ALLOWEDVALUES

static final java.lang.String DB_GET_ALLOWEDVALUES
the get allowed values command.

See Also:
Constant Field Values

DB_GET_COLUMNMETADATA

static final java.lang.String DB_GET_COLUMNMETADATA
the get column metadata command.

See Also:
Constant Field Values

DB_GET_TABLESYNONYM

static final java.lang.String DB_GET_TABLESYNONYM
the get tablesynonym command.

See Also:
Constant Field Values

DB_GET_TABLEINFO

static final java.lang.String DB_GET_TABLEINFO
the get table info command.

See Also:
Constant Field Values

DB_EXEC_PROCEDURE

static final java.lang.String DB_EXEC_PROCEDURE
the execute procedure command.

See Also:
Constant Field Values

DB_EXEC_FUNCTION

static final java.lang.String DB_EXEC_FUNCTION
the execute function command.

See Also:
Constant Field Values

DB_EXEC_STATEMENT

static final java.lang.String DB_EXEC_STATEMENT
the execute statement command.

See Also:
Constant Field Values

DB_EXEC_QUERY

static final java.lang.String DB_EXEC_QUERY
the execute query command.

See Also:
Constant Field Values

DB_EXEC_SQL

static final java.lang.String DB_EXEC_SQL
the execute sql command.

See Also:
Constant Field Values

STORAGE_EXEC_FETCH

static final java.lang.String STORAGE_EXEC_FETCH
the execute fetch command.

See Also:
Constant Field Values

STORAGE_EXEC_REFETCH

static final java.lang.String STORAGE_EXEC_REFETCH
the execute refetch command.

See Also:
Constant Field Values

STORAGE_EXEC_INSERT

static final java.lang.String STORAGE_EXEC_INSERT
the execute insert command.

See Also:
Constant Field Values

STORAGE_EXEC_UPDATE

static final java.lang.String STORAGE_EXEC_UPDATE
the execute update command.

See Also:
Constant Field Values

STORAGE_EXEC_DELETE

static final java.lang.String STORAGE_EXEC_DELETE
the execute delete command.

See Also:
Constant Field Values

STORAGE_OPEN

static final java.lang.String STORAGE_OPEN
the storage open command.

See Also:
Constant Field Values

STORAGE_CREATE_AUTOLINK

static final java.lang.String STORAGE_CREATE_AUTOLINK
the create automatic link command.

See Also:
Constant Field Values

SESSMAN_MASTER

static final java.lang.String SESSMAN_MASTER
the master session command.

See Also:
Constant Field Values

SESSMAN_SUB

static final java.lang.String SESSMAN_SUB
the sub session command.

See Also:
Constant Field Values

SESSMAN_INIT_PROPERTIES

static final java.lang.String SESSMAN_INIT_PROPERTIES
the init properties command.

See Also:
Constant Field Values

SESSMAN_POST_CREATE

static final java.lang.String SESSMAN_POST_CREATE
the post create session command.

See Also:
Constant Field Values

SESSMAN_DESTROY

static final java.lang.String SESSMAN_DESTROY
the session destroy command.

See Also:
Constant Field Values

SESSMAN_VALIDATE

static final java.lang.String SESSMAN_VALIDATE
the validate sessions command.

See Also:
Constant Field Values

SESSION_INIT

static final java.lang.String SESSION_INIT
the init session command.

See Also:
Constant Field Values

SESSION_CONFIGURATION

static final java.lang.String SESSION_CONFIGURATION
the configuration command.

See Also:
Constant Field Values

SESSION_AUTHENTICATE

static final java.lang.String SESSION_AUTHENTICATE
the authenticate command.

See Also:
Constant Field Values

SESSION_CHECK_ACCESS

static final java.lang.String SESSION_CHECK_ACCESS
the check access command.

See Also:
Constant Field Values

SESSION_CALL

static final java.lang.String SESSION_CALL
the call command.

See Also:
Constant Field Values

SESSION_CALL_ACTION

static final java.lang.String SESSION_CALL_ACTION
the call action command.

See Also:
Constant Field Values

SESSION_CALLBACK

static final java.lang.String SESSION_CALLBACK
the callback command.

See Also:
Constant Field Values

SERVER_CREATE_SESSION

static final java.lang.String SERVER_CREATE_SESSION
the create session command.

See Also:
Constant Field Values

SERVER_CREATE_SUBSESSION

static final java.lang.String SERVER_CREATE_SUBSESSION
the create subsession command.

See Also:
Constant Field Values

SERVER_DESTROY_SESSION

static final java.lang.String SERVER_DESTROY_SESSION
the destroy session command.

See Also:
Constant Field Values

SERVER_PROCESS

static final java.lang.String SERVER_PROCESS
the process command.

See Also:
Constant Field Values

SERVER_EXECUTE

static final java.lang.String SERVER_EXECUTE
the execute command.

See Also:
Constant Field Values

SERVER_EXEC_CALLBACK

static final java.lang.String SERVER_EXEC_CALLBACK
the execute callback command.

See Also:
Constant Field Values

SERVER_EXEC_ACTION

static final java.lang.String SERVER_EXEC_ACTION
the execute action command.

See Also:
Constant Field Values

SERVER_EXEC_ACTIONCALLBACK

static final java.lang.String SERVER_EXEC_ACTIONCALLBACK
the execute action callback command.

See Also:
Constant Field Values

SERVER_SET_NEWPASSWORD

static final java.lang.String SERVER_SET_NEWPASSWORD
the set new password command.

See Also:
Constant Field Values


Copyright © 2009 SIB Visions GmbH. All Rights Reserved.