Engine Session Properties
Session Properties are properties that last for the duration of an Engine session on the Manager. They are set on an Engine when it logs in and reset when the Engine logs off.
This example sets a Session Property:
public void init() {
// initialize some static data for use by another service
EngineSession.setProperty("inited", "true");
// this property can now be used by the Discriminator
// of the other Service
}
See the API documentation for the EngineSession class for more information.