ermi
Class Context

java.lang.Object
  |
  +--ermi.Context

public class Context
extends java.lang.Object

Context contains ERMI middleware constants like connection timeouts, block delays and String constants for the properties objects.


Field Summary
static java.lang.String CLASS_ID
          CLASS_ID is the unique identifier assigned to an object server.
static java.lang.String CLASS_NAME
          CLASS_NAME is the constant that references to the name of the Stub class for the properties reference.
static java.lang.String CLASS_STORE
          CLASS_STORE is the constant that references to the directory contaning loadable remote stubs.
static int DELAY
          Default delay for synchronous calls.
static int TIMEOUT
          Time out for the ERMI Middleware.
 
Constructor Summary
Context()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

TIMEOUT

public static int TIMEOUT
Time out for the ERMI Middleware. It implies a TIMEOUT*DELAY milliseconds.


DELAY

public static int DELAY
Default delay for synchronous calls.


CLASS_STORE

public static final java.lang.String CLASS_STORE
CLASS_STORE is the constant that references to the directory contaning loadable remote stubs.

See Also:
Constant Field Values

CLASS_NAME

public static final java.lang.String CLASS_NAME
CLASS_NAME is the constant that references to the name of the Stub class for the properties reference.

See Also:
Constant Field Values

CLASS_ID

public static final java.lang.String CLASS_ID
CLASS_ID is the unique identifier assigned to an object server. It is used for all subscriptions related to this object.

See Also:
Constant Field Values
Constructor Detail

Context

public Context()