Uses of Interface
com.sas.services.RemoteServiceInterface

Packages that use RemoteServiceInterface
com.sas.services SAS Foundation Services. 
com.sas.services.deployment This subsystem provides utilities to deploy and lookup SAS Foundation Services. 
com.sas.services.discovery Discover a service based upon its service capabilities and optionally service attributes. 
com.sas.services.events.broker Broker events that are triggered by various transport protocols. 
com.sas.services.events.discovery Locate event brokers. 
com.sas.services.information Interact with data repositories on behalf of client applications. 
com.sas.services.security Perform Authentication against modular authentication providers with user identities. 
com.sas.services.session Session services. 
com.sas.services.storedprocess Execute stored processes. 
com.sas.services.user Maintain user identities and profiles. 
com.sas.services.util Utility classes used by Foundation Services. 
 

Uses of RemoteServiceInterface in com.sas.services
 

Methods in com.sas.services that return RemoteServiceInterface
protected  RemoteServiceInterface ServiceProxy.findRemoteService()
          Attempts to re-discover an instance of a remote service represented by this proxy.
protected  RemoteServiceInterface ServiceProxy.getService()
          Gets the service.
 RemoteServiceInterface ServiceFactoryInterface.getService(ServiceConfigurationInterface serviceConfiguration)
          Gets a service that has been initialized with the specified service configuration.
 RemoteServiceInterface AbstractServiceFactory.getService(ServiceConfigurationInterface serviceConfiguration)
          Gets a service from the factory and registers it with the local discovery service.
 RemoteServiceInterface ServiceFactoryInterface.getService(ServiceConfigurationInterface serviceConfiguration, DiscoveryServiceInterface discoveryService)
          Gets a service initialized with the specified service configuration.
abstract  RemoteServiceInterface AbstractServiceFactory.getService(ServiceConfigurationInterface serviceConfiguration, DiscoveryServiceInterface discoveryService)
           
 RemoteServiceInterface ServiceProxy.getServiceProxy()
          Gets the service proxy.
 RemoteServiceInterface ServiceInterface.getServiceProxy()
          Gets the service proxy.
 RemoteServiceInterface RemoteServiceInterface.getServiceProxy()
          Gets the service proxy.
 RemoteServiceInterface AbstractRemoteService.getServiceProxy()
          Gets the service proxy.
 

Constructors in com.sas.services with parameters of type RemoteServiceInterface
ServiceProxy(RemoteServiceInterface service)
          Constructs a foundation service proxy for the specified service.
 

Uses of RemoteServiceInterface in com.sas.services.deployment
 

Methods in com.sas.services.deployment that return RemoteServiceInterface
 RemoteServiceInterface RMIDeployableService.deploy()
          Deploys an RMI service by either looking up its stub in an RMI registry or instantiating a service and optionally registering it with RMI.
 RemoteServiceInterface RMIBinding.deploy()
          Deploys the class in-process (within the same JVM).
 RemoteServiceInterface DeployableService.deploy()
          Deploys a service by constructing a service factory and asking it to manufacture a service for a specified service configuration.
 RemoteServiceInterface DeployInterface.deploy()
          Initiates an action to instantiate and initialize a platform service.
 RemoteServiceInterface RMIDeployableService.deploy(DiscoveryServiceInterface discoveryService)
          Deploys an RMI service by either looking up its stub in an RMI registry or instantiating a service and optionally registering it with RMI.
 RemoteServiceInterface DeployableService.deploy(DiscoveryServiceInterface discoveryService)
          Deploys a service by constructing a service factory and asking it to manufacture a service for a specified service configuration.
static RemoteServiceInterface PlatformServices.findService(ServiceTemplate serviceTemplate)
          Finds a service satisfying the specified service template.
static RemoteServiceInterface PlatformServices.findServiceUsingId(java.lang.String serviceId)
          Finds a service associated with the specified service ID.
 

Methods in com.sas.services.deployment with parameters of type RemoteServiceInterface
static void DeploymentApplicationMonitor.log(RemoteServiceInterface service, java.lang.String action)
          Log a message to the application monitor to notify it of that the specified action has been executed on the service.
 

Uses of RemoteServiceInterface in com.sas.services.discovery
 

Methods in com.sas.services.discovery that return RemoteServiceInterface
 RemoteServiceInterface RemoteDiscoveryServiceProxy.findService(ServiceTemplate serviceTemplate)
          Finds a service using a discovery mechanism.
 RemoteServiceInterface RegistryDiscoveryService.findService(ServiceTemplate serviceTemplate)
          Finds a service using a discovery mechanism.
 RemoteServiceInterface FindServiceInterface.findService(ServiceTemplate serviceTemplate)
          Finds a service using a discovery mechanism.
 RemoteServiceInterface ActivatableDiscoveryService.findService(ServiceTemplate serviceTemplate)
          Finds a service using a discovery mechanism.
 RemoteServiceInterface AbstractDiscoveryService.findService(ServiceTemplate serviceTemplate)
          Finds a service using a discovery mechanism.
 RemoteServiceInterface RemoteDiscoveryServiceProxy.findServiceUsingId(java.lang.String serviceId)
          Re-acquires a previously discovered service via its service discovery ID.
 RemoteServiceInterface RegistryDiscoveryService.findServiceUsingId(java.lang.String runtimeServiceId)
          Re-acquires a previously discovered service via its service discovery ID.
 RemoteServiceInterface FindServiceInterface.findServiceUsingId(java.lang.String serviceId)
          Re-acquires a previously discovered service via its service discovery ID.
 RemoteServiceInterface ActivatableDiscoveryService.findServiceUsingId(java.lang.String runtimeServiceId)
          Re-acquires a previously discovered service via its service discovery ID.
 RemoteServiceInterface AbstractDiscoveryService.findServiceUsingId(java.lang.String runtimeServiceId)
          Re-acquires a previously discovered service via its service discovery ID.
 RemoteServiceInterface DiscoveryServiceFactory.getService(ServiceConfigurationInterface serviceConfiguration, DiscoveryServiceInterface discoveryService)
          Gets a service that has been initialized with the specified service configuration.
 RemoteServiceInterface RemoteDiscoveryServiceProxy.getServiceProxy()
          Gets the service proxy.
 RemoteServiceInterface ActivatableDiscoveryService.getServiceProxy()
          Gets a new proxy to this service.
 

Methods in com.sas.services.discovery with parameters of type RemoteServiceInterface
 void ServicesCache.add(RemoteServiceInterface service)
          Adds a service to the the cache.
 boolean Services.add(RemoteServiceInterface service)
          Adds a RemoteServiceInterface object to this collection.
 void RemoteDiscoveryServiceProxy.addService(RemoteServiceInterface serviceIf)
          Adds a service to the registry.
 void DiscoveryService.addService(RemoteServiceInterface service)
          Adds a service that is intended to be discovered.
 void DiscoveryAdminInterface.addService(RemoteServiceInterface service)
          Adds a service.
 void ActivatableDiscoveryService.addService(RemoteServiceInterface service)
          Adds a service to the registry.
 boolean ServiceTypes.areSatisfiedBy(RemoteServiceInterface serviceIf)
          Determines whether or not the service provider satisfies all of the service capabilities.
 boolean ServiceTemplate.isSatisfiedBy(RemoteServiceInterface service)
          Determines whether or not the service satisfies this service template.
 void ServicesCache.remove(RemoteServiceInterface service)
          Removes the service from the cache.
 boolean Services.remove(RemoteServiceInterface service)
          Removes a RemoteServiceInterface object from this collection.
 void RemoteDiscoveryServiceProxy.removeService(RemoteServiceInterface serviceIf)
          Removes a service from the registry.
 void DiscoveryService.removeService(RemoteServiceInterface service)
          Removes a service from this discovery service.
 void DiscoveryAdminInterface.removeService(RemoteServiceInterface service)
          Removes a services.
 void ActivatableDiscoveryService.removeService(RemoteServiceInterface service)
          Removes a service from the registry.
 

Uses of RemoteServiceInterface in com.sas.services.events.broker
 

Methods in com.sas.services.events.broker that return RemoteServiceInterface
 RemoteServiceInterface EventBrokerServiceFactory.getService(ServiceConfigurationInterface serviceConfiguration, DiscoveryServiceInterface discoveryService)
          Deprecated. Instantiates a new Event Broker service initialized with the specified configuration.
 RemoteServiceInterface EventBrokerService.getServiceProxy()
          Deprecated. Gets the service proxy.
 

Uses of RemoteServiceInterface in com.sas.services.events.discovery
 

Methods in com.sas.services.events.discovery that return RemoteServiceInterface
 RemoteServiceInterface EventBrokerDiscoveryServiceFactory.getService(ServiceConfigurationInterface serviceConfiguration, DiscoveryServiceInterface discoveryService)
          Deprecated. As of release 9.2, this class is no longer being supported.
 RemoteServiceInterface EventBrokerDiscoveryService.getServiceProxy()
          Deprecated. As of release 9.2, this class is no longer being supported.
 

Uses of RemoteServiceInterface in com.sas.services.information
 

Methods in com.sas.services.information that return RemoteServiceInterface
 RemoteServiceInterface InformationService.getServiceProxy()
          Gets the service proxy.
 

Uses of RemoteServiceInterface in com.sas.services.security
 

Methods in com.sas.services.security that return RemoteServiceInterface
 RemoteServiceInterface AuthenticationService.getServiceProxy()
          Gets the service proxy.
 

Uses of RemoteServiceInterface in com.sas.services.session
 

Methods in com.sas.services.session that return RemoteServiceInterface
 RemoteServiceInterface SessionServiceFactory.getService(ServiceConfigurationInterface serviceConfiguration, DiscoveryServiceInterface discoveryService)
          Gets a Session service initialized with the specified configuration.
 RemoteServiceInterface SessionService.getServiceProxy()
          Gets the service proxy.
 

Uses of RemoteServiceInterface in com.sas.services.storedprocess
 

Methods in com.sas.services.storedprocess that return RemoteServiceInterface
 RemoteServiceInterface StoredProcessServiceFactory.getService(ServiceConfigurationInterface serviceConfiguration, DiscoveryServiceInterface discoveryService)
          Gets a Stored Process service initialized with the specified configuration.
 

Uses of RemoteServiceInterface in com.sas.services.user
 

Methods in com.sas.services.user that return RemoteServiceInterface
 RemoteServiceInterface UserService.getServiceProxy()
          Gets the service proxy.
 

Uses of RemoteServiceInterface in com.sas.services.util
 

Methods in com.sas.services.util with parameters of type RemoteServiceInterface
static java.lang.String Names.getObjectName(java.lang.String name, RemoteServiceInterface remoteService)
          Create the String representation of the MBean object name.
 




Copyright © 2009 SAS Institute Inc. All Rights Reserved.