Page History
The JSMContainer interface allows the service program to gain information about its environment.
...
public interface JSMContainer...
{
...
public JSMTrace getServiceTrace () ;
...
public JSMStorage getServiceStorage () ;
...
public JSMResource getServiceResource () ;
...
public JSMResource getContainerResource () ;
...
}
The JSMStorage object allows the service program to store objects. This storage will be valid across a SERVICE_LOAD and SERVICE_UNLOAD command. The storage object is valid between a JSM open and close. When the JSM closes the storage object is lost. The storage object is never null.
...