Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.acs.damsel.client
Class ClientApp  view ClientApp download ClientApp.java

java.lang.Object
  extended byorg.acs.damsel.client.ClientApp

public class ClientApp
extends java.lang.Object

Title: ClientApp

Description: This class is a singleton mediator between the presentation and application layers and provides the presentation layer access to objects and services in the application layer

This class provides access to the SchemaMgr, CollectionMgr, AuthMgr and SearchMgr

Version:
1.0

Field Summary
private  org.acs.damsel.srvr.auth.AuthMgr authMgr
           
private  org.acs.damsel.srvr.collection.CollectionMgr collectionMgr
           
private  org.acs.damsel.srvr.group.GroupMgr groupMgr
           
private static ClientApp instance
           
private  org.acs.damsel.srvr.repository.RepositoryMgr repositoryMgr
           
private  org.acs.damsel.srvr.schema.SchemaMgr schemaMgr
           
private  org.acs.damsel.srvr.search.SearchMgr searchMgr
           
private  org.acs.damsel.srvr.user.UserMgr userMgr
           
 
Constructor Summary
private ClientApp()
           
 
Method Summary
 org.acs.damsel.srvr.auth.AuthMgr getAuthMgr()
          getAuthMgr() returns a handle on the AuthMgr.
 org.acs.damsel.srvr.collection.CollectionMgr getCollectionMgr()
          getCollectionMgr() returns a handle on the CollectionMgr.
 org.acs.damsel.srvr.group.GroupMgr getGroupMgr()
          getGroupMgr() returns a handle on the GroupMgr.
 org.acs.damsel.srvr.repository.RepositoryMgr getRepositoryMgr()
          getRepositoryMgr() returns a handle on the RepositoryMgr.
 org.acs.damsel.srvr.schema.SchemaMgr getSchemaMgr()
          getSchemaMgr() returns a handle on the SchemaMgr.
 org.acs.damsel.srvr.search.SearchMgr getSearchMgr()
          getSearchMgr(Collection c) returns a handle on the SearchMgr.
 org.acs.damsel.srvr.user.UserMgr getUserMgr()
          getUserMgr() returns a handle on the UserMgr.
static ClientApp instance()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

instance

private static ClientApp instance

schemaMgr

private org.acs.damsel.srvr.schema.SchemaMgr schemaMgr

searchMgr

private org.acs.damsel.srvr.search.SearchMgr searchMgr

userMgr

private org.acs.damsel.srvr.user.UserMgr userMgr

collectionMgr

private org.acs.damsel.srvr.collection.CollectionMgr collectionMgr

authMgr

private org.acs.damsel.srvr.auth.AuthMgr authMgr

repositoryMgr

private org.acs.damsel.srvr.repository.RepositoryMgr repositoryMgr

groupMgr

private org.acs.damsel.srvr.group.GroupMgr groupMgr
Constructor Detail

ClientApp

private ClientApp()
Method Detail

instance

public static ClientApp instance()

getCollectionMgr

public org.acs.damsel.srvr.collection.CollectionMgr getCollectionMgr()
getCollectionMgr() returns a handle on the CollectionMgr. If the CollectionMgr has not yet been initialized, Damsel creates one.


getAuthMgr

public org.acs.damsel.srvr.auth.AuthMgr getAuthMgr()
getAuthMgr() returns a handle on the AuthMgr. If the AuthMgr has not yet been initialized, Damsel creates one.


getSearchMgr

public org.acs.damsel.srvr.search.SearchMgr getSearchMgr()
getSearchMgr(Collection c) returns a handle on the SearchMgr. A new SearchMgr is created based on the specified collection.


getSchemaMgr

public org.acs.damsel.srvr.schema.SchemaMgr getSchemaMgr()
getSchemaMgr() returns a handle on the SchemaMgr. If the SchemaMgr has not yet been initialized, Damsel creates one.


getRepositoryMgr

public org.acs.damsel.srvr.repository.RepositoryMgr getRepositoryMgr()
getRepositoryMgr() returns a handle on the RepositoryMgr. If the repositoryMgr has not yet been initialized, Damsel creates one.


getUserMgr

public org.acs.damsel.srvr.user.UserMgr getUserMgr()
getUserMgr() returns a handle on the UserMgr. If the userMgr has not yet been initialized, Damsel creates one.


getGroupMgr

public org.acs.damsel.srvr.group.GroupMgr getGroupMgr()
getGroupMgr() returns a handle on the GroupMgr. If the groupMgr has not yet been initialized, Damsel creates one.