GigaSpaces XAP 7.1 API

Uses of Class
com.j_spaces.core.client.SpaceURL

Packages that use SpaceURL
com.gigaspaces.client Deprecated: use org.openspaces.core instead. 
com.j_spaces.core Provides Space properties and security context services 
com.j_spaces.core.client Provides GigaSpaces client interface services 
com.j_spaces.core.cluster Provides GigaSpaces cluster plug-in interfaces 
com.j_spaces.map Provides GigaSpaces MAP API 
org.openspaces.admin.space Support for managing of Space(s) through the Admin API. 
org.openspaces.core.space This package is responsible for simplifying the creation of IJSpace implementation. 
org.openspaces.core.space.cache A package allowing for simpler creation of Local Cache and Local View (expose an IJSpace) based on an actual IJSpace instance (usually created using the core.space package). 
org.openspaces.core.util A package including utility classes for OpenSpaces core. 
org.openspaces.pu.container.servicegrid A Service Grid based processing unit container. 
 

Uses of SpaceURL in com.gigaspaces.client
 

Methods in com.gigaspaces.client that return SpaceURL
 SpaceURL IProxyAdmin.getFinderURL()
          Returns the SpaceURL object which was used as the argument for SpaceFinder.find(SpaceURL) while looking for the space.
 SpaceURL IServerAdmin.getURL()
          Returns the SpaceURL instance which was used to initialize the space.
 

Uses of SpaceURL in com.j_spaces.core
 

Methods in com.j_spaces.core that return SpaceURL
 SpaceURL SpaceCopyStatus.getSourceMemberURL()
           
 SpaceURL IJSpaceContainer.getURL()
          Returns the SpaceURL instance which was used to initialize the space.
 

Uses of SpaceURL in com.j_spaces.core.client
 

Methods in com.j_spaces.core.client that return SpaceURL
 SpaceURL SpaceURL.setProperty(String spaceURLKey, String spaceURLValue)
          Deprecated.  
static SpaceURL SpaceFinder.verifyURL(String url)
          Deprecated. Verifies for validation if the specified url is valid and returns SpaceURL object that contains all information about specified url.
 

Methods in com.j_spaces.core.client with parameters of type SpaceURL
static Object SpaceFinder.find(SpaceURL spaceURL)
          Deprecated.  The general format for this URL is as follows: Protocol://[host]:[port]/[container_name]/[space_name]?
static Object SpaceFinder.find(SpaceURL[] spaceURLs)
          Deprecated.  SpaceFinder.find multiple URL provides ability to define space search order.
static Object SpaceFinder.find(SpaceURL[] spaceURLs, Properties customProperties)
          Deprecated.  
static Object SpaceFinder.find(SpaceURL spaceURL, IJSpace spaceProxy, com.sun.jini.start.LifeCycle lifeCycle)
          Deprecated.  The general format for this URL is as follows: Protocol://[host]:[port]/[container_name]/[space_name]?
static Object SpaceFinder.find(SpaceURL spaceURL, IJSpace spaceProxy, Properties customProperties, com.sun.jini.start.LifeCycle lifeCycle, UserDetails userDetails)
          Deprecated.  The general format for this URL is as follows: Protocol://[host]:[port]/[container_name]/[space_name]?
protected  Object SpaceFinder.findService(SpaceURL[] spaceURLs, IJSpace spaceProxy, Properties customProperties, com.sun.jini.start.LifeCycle lifeCycle, UserDetails userDetails)
          Deprecated.  
protected  Object SpaceFinder.findService(SpaceURL spaceURL, IJSpace spaceProxy, Properties customProperties, com.sun.jini.start.LifeCycle lifeCycle, UserDetails userDetails)
          Deprecated. The main method of SpaceFinder to find single Space or Container proxy.
protected  com.gigaspaces.internal.client.spaceproxy.ISpaceProxy SpaceFinder.initCacheProperties(com.gigaspaces.internal.client.spaceproxy.ISpaceProxy spaceProxy, Properties customProps, SpaceURL spaceURL)
          Deprecated.  
protected static void SpaceFinder.loadCacheConfig(SpaceURL spaceURL, com.gigaspaces.internal.client.spaceproxy.ISpaceProxy spaceProxy, Properties customProperties)
          Deprecated.  
 

Uses of SpaceURL in com.j_spaces.core.cluster
 

Fields in com.j_spaces.core.cluster with type parameters of type SpaceURL
 List<SpaceURL> ReplicationPolicy.m_ReplicationGroupMembersURLs
           
 

Methods in com.j_spaces.core.cluster that return types with arguments of type SpaceURL
 List<SpaceURL> ReplicationPolicy.getPrimaryTargets(List<String> excludeTargets)
          Returns a list of URLs or an empty list of primary targets .
 List<SpaceURL> ReplicationPolicy.getRecoverableTargets(List<String> excludeTargets)
          Finds all the recovery targets in cluster.
 List<SpaceURL> ReplicationPolicy.getSyncTargets(List<String> excludeTargets)
          Returns a list of URLs or an empty list of reliable targets to recover from.
 

Constructor parameters in com.j_spaces.core.cluster with type arguments of type SpaceURL
ReplicationPolicy(String clusterName, String replicationGroupName, List<String> replicationGroupMembersNames, List<SpaceURL> replicationGroupMembersURLs, String ownMemberName, Hashtable<String,ReplicationPolicy.ReplicationPolicyDescription> replMemberPolicyDescTable, com.gigaspaces.cluster.replication.sync.SyncReplPolicy syncReplPolicy)
           
 

Uses of SpaceURL in com.j_spaces.map
 

Methods in com.j_spaces.map with parameters of type SpaceURL
static Object CacheFinder.find(SpaceURL spaceURL, IJSpace spaceProxy, com.sun.jini.start.LifeCycle lifeCycle)
          Deprecated. Find a cache using the space provided.
static Object CacheFinder.find(SpaceURL spaceURL, IJSpace spaceProxy, com.sun.jini.start.LifeCycle lifeCycle, UserDetails userDetails)
          Deprecated. Find a cache using the space provided.
protected  Object CacheFinder.findService(SpaceURL su, IJSpace space, Properties customProps, com.sun.jini.start.LifeCycle lifeCycle, UserDetails userDetails)
          Deprecated. internal find.
protected  com.gigaspaces.internal.client.spaceproxy.ISpaceProxy CacheFinder.initCacheProperties(com.gigaspaces.internal.client.spaceproxy.ISpaceProxy spaceProxy, Properties customProps, SpaceURL spaceURL)
          Deprecated. CacheFinder with/without "useLocalCache" parameter will initialize with cache properties.
 

Uses of SpaceURL in org.openspaces.admin.space
 

Methods in org.openspaces.admin.space that return SpaceURL
 SpaceURL SpaceInstance.getSpaceUrl()
           
 

Uses of SpaceURL in org.openspaces.core.space
 

Methods in org.openspaces.core.space that return SpaceURL
protected  SpaceURL[] UrlSpaceFactoryBean.doGetSpaceUrls()
          Parses the given space url using SpaceURLParser and returns the parsed SpaceURL.
 SpaceURL SpaceServiceDetails.getSpaceUrl()
           
 

Uses of SpaceURL in org.openspaces.core.space.cache
 

Methods in org.openspaces.core.space.cache with parameters of type SpaceURL
protected  void AbstractLocalCacheSpaceFactoryBean.prepareUrl(SpaceURL spaceURL)
           
protected  void LocalViewSpaceFactoryBean.prepareUrl(SpaceURL spaceURL)
           
 

Uses of SpaceURL in org.openspaces.core.util
 

Methods in org.openspaces.core.util with parameters of type SpaceURL
static boolean SpaceUtils.isRemoteProtocol(SpaceURL spaceUrl)
          Returns true if the url points at a remote protocol.
 

Uses of SpaceURL in org.openspaces.pu.container.servicegrid
 

Methods in org.openspaces.pu.container.servicegrid that return SpaceURL
 SpaceURL[] PUServiceBeanProxy.listSpacesURLs()
           
 SpaceURL[] PUServiceBeanImpl.listSpacesURLs()
           
 SpaceURL[] PUServiceBean.listSpacesURLs()
           
 


GigaSpaces XAP 7.1 API

Copyright © GigaSpaces.