Interface IRemoteServiceContainerAdapter
- All Superinterfaces:
org.eclipse.core.runtime.IAdaptable
,IRemoteServiceConsumer
,IRemoteServiceHost
- All Known Subinterfaces:
IOSGiRemoteServiceContainerAdapter
,IRemoteServiceClientContainerAdapter
- All Known Implementing Classes:
AbstractClientContainer
,AbstractRestClientContainer
,AbstractRSAClientContainer
,RegistrySharedObject
,RemoteServiceContainer
,RemoteServiceContainerAdapterImpl
,RestClientContainer
,RSARemoteServiceContainerAdapter
,ServletServerContainer
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Add listener for remote service registration/unregistration for this containerorg.eclipse.equinox.concurrent.future.IFuture
asyncGetRemoteServiceReferences
(ID[] idFilter, String clazz, String filter) Asynchronously returns an array ofIRemoteServiceReference
objects.org.eclipse.equinox.concurrent.future.IFuture
asyncGetRemoteServiceReferences
(ID target, String clazz, String filter) Asynchronously returns an array ofIRemoteServiceReference
objects.org.eclipse.equinox.concurrent.future.IFuture
asyncGetRemoteServiceReferences
(ID target, ID[] idFilter, String clazz, String filter) Asynchronously returns an array ofIRemoteServiceReference
objects.createRemoteFilter
(String filter) Creates aIRemoteFilter
object.getAllRemoteServiceReferences
(String clazz, String filter) Returns an array ofIRemoteServiceReference
objects.getRemoteService
(IRemoteServiceReference reference) Get remote service for given IRemoteServiceReference.getRemoteServiceID
(ID containerID, long containerRelativeID) Get a remote service ID from a containerID and a containerRelative long value.Get namespace to use for this remote service provider.getRemoteServiceReference
(IRemoteServiceID serviceID) Get the remote service reference known to this container for the given IRemoteServiceID.getRemoteServiceReferences
(ID[] idFilter, String clazz, String filter) Returns an array ofIRemoteServiceReference
objects.getRemoteServiceReferences
(ID target, String clazz, String filter) Returns an array ofIRemoteServiceReference
objects.getRemoteServiceReferences
(ID target, ID[] idFilter, String clazz, String filter) Returns an array ofIRemoteServiceReference
objects.registerRemoteService
(String[] clazzes, Object service, Dictionary properties) Register a new remote service.void
Remove remote service registration/unregistration listener for this container.void
setConnectContextForAuthentication
(IConnectContext connectContext) Set connect context for authentication upon subsequent calls togetRemoteServiceReferences(ID[], String, String)
orasyncGetRemoteServiceReferences(ID[], String, String)
.boolean
Set the remote service call policy to enable authorization on remote service method callsboolean
ungetRemoteService
(IRemoteServiceReference reference) Unget IRemoteServiceReference.Methods inherited from interface org.eclipse.core.runtime.IAdaptable
getAdapter
-
Method Details
-
addRemoteServiceListener
Add listener for remote service registration/unregistration for this container- Specified by:
addRemoteServiceListener
in interfaceIRemoteServiceConsumer
- Specified by:
addRemoteServiceListener
in interfaceIRemoteServiceHost
- Parameters:
listener
- notified of service registration/unregistration events. Must not benull
.
-
removeRemoteServiceListener
Remove remote service registration/unregistration listener for this container.- Specified by:
removeRemoteServiceListener
in interfaceIRemoteServiceConsumer
- Specified by:
removeRemoteServiceListener
in interfaceIRemoteServiceHost
- Parameters:
listener
- to remove. Must not benull
.
-
registerRemoteService
IRemoteServiceRegistration registerRemoteService(String[] clazzes, Object service, Dictionary properties) Register a new remote service. This method is to be called by the service server...i.e. the client that wishes to make available a service to other client within this container.- Specified by:
registerRemoteService
in interfaceIRemoteServiceHost
- Parameters:
clazzes
- the interface classes that the service exposes to remote clients. Must not benull
and must not be an empty array.service
- the service object. Under normal conditions this object must- not be
null
- implement all of the classes specified by the first parameter
null
is if the service propertyConstants.SERVICE_REGISTER_PROXY
is set in the properties. IfConstants.SERVICE_REGISTER_PROXY
is set in the properties parameter (to an arbitrary value), then the service object may then benull
.- not be
properties
- to be associated with service- Returns:
- IRemoteServiceRegistration the service registration. Will not
return
null
.
-
getRemoteServiceReferences
IRemoteServiceReference[] getRemoteServiceReferences(ID target, ID[] idFilter, String clazz, String filter) throws InvalidSyntaxException, ContainerConnectException Returns an array ofIRemoteServiceReference
objects. The returned array ofIRemoteServiceReference
objects contains services that were registered under the specified class and match the specified idFilter, and filter criteria.Note this method assumes that the enclosing container has previously been connected, and uses the idFilter to filter among targets within the previously connected set of container IDs. To request connection as part of reference lookup, see
getRemoteServiceReferences(ID, String, String)
.The list is valid at the time of the call to this method, however since the Framework is a very dynamic environment, services can be modified or unregistered at anytime.
target
is a remote container to connect to. Ifnull
, no connection attempt is made.idFilter
is used to select a registered services that were registered by a given set of containers with id in idFilter. Only services exposed by a container with id in idFilter will be returned. IfidFilter
isnull
, all containers are considered to match the filter.filter
is used to select the registered service whose properties objects contain keys and values which satisfy the filter. SeeFilter
for a description of the filter string syntax. Iffilter
isnull
, all registered services are considered to match the filter. Iffilter
cannot be parsed, anInvalidSyntaxException
will be thrown with a human readable message where the filter became unparsable.- Specified by:
getRemoteServiceReferences
in interfaceIRemoteServiceConsumer
- Parameters:
target
- a target container to connect to if enclosing container is not already connected. May benull
.idFilter
- an array of ID instances that will restrict the search for matching container ids If null, all remote containers will be considered in search for matching IRemoteServiceReference instances. May benull
.clazz
- the fully qualified name of the interface class that describes the desired service. Must not benull
.filter
- The filter criteria. May benull
.- Returns:
- Array of IRemoteServiceReferences matching given search criteria or
null
if no services are found that match the search. - Throws:
InvalidSyntaxException
- If filter contains an invalid filter string that cannot be parsed.ContainerConnectException
- if container cannot connect- Since:
- 5.0
-
asyncGetRemoteServiceReferences
org.eclipse.equinox.concurrent.future.IFuture asyncGetRemoteServiceReferences(ID target, ID[] idFilter, String clazz, String filter) Asynchronously returns an array ofIRemoteServiceReference
objects. The returned array ofIRemoteServiceReference
objects contains services that were registered under the specified class and match the specified idFilter, and filter criteria.The IFuture is returned immediately, and subsequent calls to
IFuture.get()
orIFuture.get(long)
will return the actual results received. The type of the Object returned fromIFuture.get()
will be IRemoteServiceReference [].The list is valid at the time of the call to this method, however since the Framework is a very dynamic environment, services can be modified or unregistered at anytime.
target
is a remote container to connect to. Ifnull
, no connection attempt is made.idFilter
is used to select a registered services that were registered by a given set of containers with id in idFilter. Only services exposed by a container with id in idFilter will be returned. IfidFilter
isnull
, all containers are considered to match the filter.filter
is used to select the registered service whose properties objects contain keys and values which satisfy the filter. SeeFilter
for a description of the filter string syntax. Iffilter
isnull
, all registered services are considered to match the filter. Iffilter
cannot be parsed, anInvalidSyntaxException
will be thrown with a human readable message where the filter became unparsable.- Specified by:
asyncGetRemoteServiceReferences
in interfaceIRemoteServiceConsumer
- Parameters:
target
- an target to connect to if enclosing container is not already connected. May benull
.idFilter
- an array of ID instances that will restrict the search for matching container ids If null, all remote containers will be considered in search for matching IRemoteServiceReference instances. May benull
.clazz
- the fully qualified name of the interface class that describes the desired service. Must not benull
.filter
- The filter criteria. May benull
.- Returns:
- IFuture that through subsequent calls to IFuture#get() will return
IRemoteServiceReference [] with IRemoteServiceReferences matching given search criteria.
Will not return
null
. - Since:
- 5.0
-
getRemoteServiceReferences
IRemoteServiceReference[] getRemoteServiceReferences(ID[] idFilter, String clazz, String filter) throws InvalidSyntaxException Returns an array ofIRemoteServiceReference
objects. The returned array ofIRemoteServiceReference
objects contains services that were registered under the specified class and match the specified idFilter, and filter criteria.Note this method assumes that the enclosing container has previously been connected, and uses the idFilter to filter among targets within the previously connected set of container IDs. To request connection as part of reference lookup, see
getRemoteServiceReferences(ID, String, String)
.The list is valid at the time of the call to this method, however since the Framework is a very dynamic environment, services can be modified or unregistered at anytime.
idFilter
is used to select a registered services that were registered by a given set of containers with id in idFilter. Only services exposed by a container with id in idFilter will be returned.If
idFilter
isnull
, all containers are considered to match the filter.filter
is used to select the registered service whose properties objects contain keys and values which satisfy the filter. SeeFilter
for a description of the filter string syntax.If
filter
isnull
, all registered services are considered to match the filter. Iffilter
cannot be parsed, anInvalidSyntaxException
will be thrown with a human readable message where the filter became unparsable.- Specified by:
getRemoteServiceReferences
in interfaceIRemoteServiceConsumer
- Parameters:
idFilter
- an array of ID instances that will restrict the search for matching container ids If null, all remote containers will be considered in search for matching IRemoteServiceReference instances. May benull
.clazz
- the fully qualified name of the interface class that describes the desired service. Must not benull
.filter
- The filter criteria. May benull
.- Returns:
- Array of IRemoteServiceReferences matching given search criteria or
null
if no services are found that match the search. - Throws:
InvalidSyntaxException
- If filter contains an invalid filter string that cannot be parsed.
-
getRemoteServiceReferences
IRemoteServiceReference[] getRemoteServiceReferences(ID target, String clazz, String filter) throws InvalidSyntaxException, ContainerConnectException Returns an array of
IRemoteServiceReference
objects. The returned array ofIRemoteServiceReference
objects contains services that were registered under the specified class and match the specified idFilter, and filter criteria.The list is valid at the time of the call to this method, however since the Framework is a very dynamic environment, services can be modified or unregistered at anytime.
target is a remote container to connect to.
filter
is used to select the registered service whose properties objects contain keys and values which satisfy the filter. SeeFilter
for a description of the filter string syntax.If
filter
isnull
, all registered services are considered to match the filter. Iffilter
cannot be parsed, anInvalidSyntaxException
will be thrown with a human readable message where the filter became unparsable.- Specified by:
getRemoteServiceReferences
in interfaceIRemoteServiceConsumer
- Parameters:
target
- an target to connect to if enclosing container is not already connected. May benull
.clazz
- the fully qualified name of the interface class that describes the desired service. Must not benull
.filter
- The filter criteria. May benull
.- Returns:
- Array of IRemoteServiceReferences matching given search criteria or
null
if no services are found that match the search. - Throws:
InvalidSyntaxException
- If filter contains an invalid filter string that cannot be parsed.ContainerConnectException
- if container cannot connect- Since:
- 3.0
-
asyncGetRemoteServiceReferences
org.eclipse.equinox.concurrent.future.IFuture asyncGetRemoteServiceReferences(ID[] idFilter, String clazz, String filter) Asynchronously returns an array ofIRemoteServiceReference
objects. The returned array ofIRemoteServiceReference
objects contains services that were registered under the specified class and match the specified idFilter, and filter criteria.Note this method assumes that the enclosing container has previously been connected, and uses the idFilter to filter among targets within the previously connected set of container IDs. To request connection as part of reference lookup, see
getRemoteServiceReferences(ID, String, String)
.The IFuture is returned immediately, and subsequent calls to
IFuture.get()
orIFuture.get(long)
will return the actual results received. The type of the Object returned fromIFuture.get()
will be IRemoteServiceReference [].The list is valid at the time of the call to this method, however since the Framework is a very dynamic environment, services can be modified or unregistered at anytime.
idFilter
is used to select a registered services that were registered by a given set of containers with id in idFilter. Only services exposed by a container with id in idFilter will be returned.If
idFilter
isnull
, all containers are considered to match the filter.filter
is used to select the registered service whose properties objects contain keys and values which satisfy the filter. SeeFilter
for a description of the filter string syntax.- Specified by:
asyncGetRemoteServiceReferences
in interfaceIRemoteServiceConsumer
- Parameters:
idFilter
- an array of ID instances that will restrict the search for matching container ids If null, all remote containers will be considered in search for matching IRemoteServiceReference instances. May benull
.clazz
- the fully qualified name of the interface class that describes the desired service. Must not benull
.filter
- The filter criteria. May benull
.- Returns:
- IFuture that through subsequent calls to IFuture#get() will return
IRemoteServiceReference [] with IRemoteServiceReferences matching given search criteria.
Will not return
null
. - Since:
- 3.0
-
asyncGetRemoteServiceReferences
org.eclipse.equinox.concurrent.future.IFuture asyncGetRemoteServiceReferences(ID target, String clazz, String filter) Asynchronously returns an array ofIRemoteServiceReference
objects. The returned array ofIRemoteServiceReference
objects contains services that were registered under the specified class and match the specified idFilter, and filter criteria.The IFuture is returned immediately, and subsequent calls to
IFuture.get()
orIFuture.get(long)
will return the actual results received. The type of the Object returned fromIFuture.get()
will be IRemoteServiceReference [].The list is valid at the time of the call to this method, however since the Framework is a very dynamic environment, services can be modified or unregistered at anytime.
idFilter
is used to select a registered services that were registered by a given set of containers with id in idFilter. Only services exposed by a container with id in idFilter will be returned.target is a remote container to connect to.
filter
is used to select the registered service whose properties objects contain keys and values which satisfy the filter. SeeFilter
for a description of the filter string syntax.- Specified by:
asyncGetRemoteServiceReferences
in interfaceIRemoteServiceConsumer
- Parameters:
target
- an target to connect to if enclosing container is not already connected. May benull
.clazz
- the fully qualified name of the interface class that describes the desired service. Must not benull
.filter
- The filter criteria. May benull
.- Returns:
- IFuture that through subsequent calls to IFuture#get() will return
IRemoteServiceReference [] with IRemoteServiceReferences matching given search criteria.
Will not return
null
. - Since:
- 3.0
-
getAllRemoteServiceReferences
IRemoteServiceReference[] getAllRemoteServiceReferences(String clazz, String filter) throws InvalidSyntaxException Returns an array of
IRemoteServiceReference
objects. The returned array ofIRemoteServiceReference
objects contains services that were registered under the specified class, or if the clazz parameter isnull
all services registered.The list is valid at the time of the call to this method, however since the remote service container is a very dynamic environment, services can be modified or unregistered at anytime.
filter
is used to select the registered service whose properties objects contain keys and values which satisfy the filter. SeeFilter
for a description of the filter string syntax.If
filter
isnull
, all registered services are considered to match the filter. Iffilter
cannot be parsed, anInvalidSyntaxException
will be thrown with a human readable message where the filter became unparsable.- Specified by:
getAllRemoteServiceReferences
in interfaceIRemoteServiceConsumer
- Parameters:
clazz
- the fully qualified name of the interface class that describes the desired service. May benull
.filter
- The filter criteria. May benull
.- Returns:
- Array of IRemoteServiceReferences matching given search criteria or
null
if no services are found that match the search. - Throws:
InvalidSyntaxException
- If filter contains an invalid filter string that cannot be parsed.- Since:
- 3.0
-
getRemoteServiceNamespace
Namespace getRemoteServiceNamespace()Get namespace to use for this remote service provider.- Specified by:
getRemoteServiceNamespace
in interfaceIRemoteServiceConsumer
- Specified by:
getRemoteServiceNamespace
in interfaceIRemoteServiceHost
- Returns:
- Namespace to use for creating IRemoteServiceID for this remote service provider. Will
not return
null
. - Since:
- 3.0
-
getRemoteServiceID
Get a remote service ID from a containerID and a containerRelative long value. Will return a non-null value if the IRemoteServiceRegistration/Reference is currently 'known' to this container adapter.null
if not.- Specified by:
getRemoteServiceID
in interfaceIRemoteServiceConsumer
- Specified by:
getRemoteServiceID
in interfaceIRemoteServiceHost
- Parameters:
containerID
- the containerID that is the server/host for the remote service. Must not benull
. This must be the containerID for the server/host of the remote service.containerRelativeID
- the long value identifying the remote service relative to the container ID.- Returns:
- IRemoteServiceID instance if the associated IRemoteServiceRegistration/Reference is known to this container
adapter,
null
if it is not. - Since:
- 3.0
-
getRemoteServiceReference
Get the remote service reference known to this container for the given IRemoteServiceID. Note that this method must be guaranteed not to block by the provider implementation.- Specified by:
getRemoteServiceReference
in interfaceIRemoteServiceConsumer
- Parameters:
serviceID
- the serviceID to retrieve the IRemoteServiceReference for.- Returns:
- IRemoteServiceReference the remote service reference associated with the given serviceID.
Will return
null
if no IRemoteServiceReference found for the given serviceID. - Since:
- 3.0
-
getRemoteService
Get remote service for given IRemoteServiceReference. Note that clients that call this method successfully should later callungetRemoteService(IRemoteServiceReference)
when the IRemoteService will no longer be used.- Specified by:
getRemoteService
in interfaceIRemoteServiceConsumer
- Parameters:
reference
- the IRemoteServiceReference for the desired service. Must not benull
.- Returns:
- IRemoteService representing the remote service. If remote service
no longer exists for reference, then
null
is returned. - See Also:
-
ungetRemoteService
Unget IRemoteServiceReference. Release all resources associated with the given IRemoteServiceReference. This method should be called by users of the IRemoteServiceReference that have previously calledgetRemoteService(IRemoteServiceReference)
. If this method returns true, then the previously used IRemoteService will no longer be usable.- Specified by:
ungetRemoteService
in interfaceIRemoteServiceConsumer
- Parameters:
reference
- the IRemoteServiceReference to unget- Returns:
- true if unget successful, false if not. If this method returns true, then the IRemoteService instance previously retrieved via the given IRemoteServiceReference instance provided will no longer be usable.
- See Also:
-
createRemoteFilter
Creates aIRemoteFilter
object. ThisIRemoteFilter
object may be used to match aIRemoteServiceReference
object or aDictionary
object.If the filter cannot be parsed, an
InvalidSyntaxException
will be thrown with a human readable message where the filter became unparsable.- Specified by:
createRemoteFilter
in interfaceIRemoteServiceConsumer
- Parameters:
filter
- The filter string.- Returns:
- A
IRemoteFilter
object encapsulating the filter string. - Throws:
InvalidSyntaxException
- Iffilter
contains an invalid filter string that cannot be parsed.NullPointerException
- Iffilter
is null.IllegalStateException
- If this IRemoteServiceContainerAdapter is no longer valid.- Since:
- 3.0
- See Also:
-
- "Framework specification for a description of the filter string syntax."
FrameworkUtil.createFilter(String)
-
setConnectContextForAuthentication
Set connect context for authentication upon subsequent calls togetRemoteServiceReferences(ID[], String, String)
orasyncGetRemoteServiceReferences(ID[], String, String)
. This method should be called with a non-null connectContext in order to allow authentication to occur during.- Specified by:
setConnectContextForAuthentication
in interfaceIRemoteServiceConsumer
- Parameters:
connectContext
- the connect context to use for authenticating. Ifnull
, then no authentication will be attempted.- Since:
- 3.0
-
setRemoteServiceCallPolicy
Set the remote service call policy to enable authorization on remote service method calls- Parameters:
policy
- Implementation ofIRemoteServiceCallPolicy
containing authorization specific code- Returns:
true
if the underlying provider supports using the policy,false
if it does not support using the policy.- Since:
- 6.0
-