View Javadoc

1   package com.notuvy.singleapp.multiuser;
2   
3   import org.apache.log4j.Logger;
4   
5   /**
6    * Allow access to the package level API.
7    *
8    * @author murali
9    */
10  public class MultiUserFixture {
11  
12      //------------------------------------------------------------
13      //- Class Variables
14  
15      protected static final Logger LOG = Logger.getLogger("com.notuvy.singleapp.multiuser");
16  
17  
18      //------------------------------------------------------------
19      //- Class Functions
20  
21  
22      //------------------------------------------------------------
23      //- Instance Variables
24  
25  
26      //------------------------------------------------------------
27      //- Constructors
28  
29  
30      //------------------------------------------------------------
31      //- Gettors
32  
33  
34      //------------------------------------------------------------
35      //- Settors
36  
37  
38      //------------------------------------------------------------
39      //- Private/Protected Utility Functions
40  
41  
42      //------------------------------------------------------------
43      //- Public Interface Functions
44  
45      public void terminate() {
46          Broker.terminateCurrent();
47      }
48  
49  
50      //------------------------------------------------------------
51      //- Class Interface Functions
52  
53  
54      //------------------------------------------------------------
55      //- Inner Classes
56  
57  
58      //------------------------------------------------------------
59      //- Main
60  
61  
62  }