fipaos.mts.service
Class ServiceStack

java.lang.Object
  |
  +--fipaos.mts.service.ServiceStack

public class ServiceStack
extends java.lang.Object

This class provides a convenient mechanism for initialising a set of Services to form a stack


Constructor Summary
ServiceStack()
          Default constructor
 
Method Summary
 void add(Service s)
          Adds the given Service to the stack, but doesn't initialise it - this occurs when initialise() is invoked.
 void initialise()
          Links all Service's within the stack together
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ServiceStack

public ServiceStack()
Default constructor
Method Detail

add

public void add(Service s)
Adds the given Service to the stack, but doesn't initialise it - this occurs when initialise() is invoked. The order of the Services within the stack is dependant upon the order they are added.
Parameters:
s - The Service to add to the stack

initialise

public void initialise()
Links all Service's within the stack together