com.cometway.props
Class PropsListServiceManager.PropsListServiceManagerImpl

java.lang.Object
  extended by com.cometway.props.PropsListServiceManager.PropsListServiceManagerImpl
All Implemented Interfaces:
ServiceManagerInterface
Enclosing class:
PropsListServiceManager

public class PropsListServiceManager.PropsListServiceManagerImpl
extends java.lang.Object
implements ServiceManagerInterface


Constructor Summary
PropsListServiceManager.PropsListServiceManagerImpl()
           
 
Method Summary
protected  boolean authenticate(java.lang.Object authorization)
          Used to evaluate authentication; always returns true.
 java.lang.Object getServiceImpl(java.lang.String service_name, java.lang.Object authorization)
          Returns an implementation for the specified service name if one exists; null otherwise.
 java.util.List listServices(java.lang.String service_name, java.lang.Object authorization)
          Returns an implementation for the specified service name if one exists; null otherwise.
 boolean registerService(java.lang.String service_name, java.lang.Object service_impl, java.lang.Object authorization)
          Registers the service implementation under the specified service name.
 boolean unregisterService(java.lang.String service_name, java.lang.Object service_impl, java.lang.Object authorization)
          Unregisters the specified service implementation under the specified service name.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PropsListServiceManager.PropsListServiceManagerImpl

public PropsListServiceManager.PropsListServiceManagerImpl()
Method Detail

authenticate

protected boolean authenticate(java.lang.Object authorization)
Used to evaluate authentication; always returns true.


getServiceImpl

public java.lang.Object getServiceImpl(java.lang.String service_name,
                                       java.lang.Object authorization)
Returns an implementation for the specified service name if one exists; null otherwise. Authorization is ignored.

Specified by:
getServiceImpl in interface ServiceManagerInterface

listServices

public java.util.List listServices(java.lang.String service_name,
                                   java.lang.Object authorization)
Returns an implementation for the specified service name if one exists; null otherwise. Authorization is ignored.

Specified by:
listServices in interface ServiceManagerInterface

registerService

public boolean registerService(java.lang.String service_name,
                               java.lang.Object service_impl,
                               java.lang.Object authorization)
Registers the service implementation under the specified service name. Authorization is ignored. Returns true if successful; false otherwise.

Specified by:
registerService in interface ServiceManagerInterface

unregisterService

public boolean unregisterService(java.lang.String service_name,
                                 java.lang.Object service_impl,
                                 java.lang.Object authorization)
Unregisters the specified service implementation under the specified service name. Authorization is ignored. Returns true if successful; false otherwise.

Specified by:
unregisterService in interface ServiceManagerInterface