GigaSpaces XAP 9.0 API

com.j_spaces.core.admin
Class SpaceConfig

java.lang.Object
  extended by java.util.Dictionary<K,V>
      extended by java.util.Hashtable<Object,Object>
          extended by java.util.Properties
              extended by com.j_spaces.core.JSpaceAttributes
                  extended by com.j_spaces.core.admin.SpaceConfig
All Implemented Interfaces:
Externalizable, Serializable, Cloneable, Map<Object,Object>

public class SpaceConfig
extends com.j_spaces.core.JSpaceAttributes

This structure contains all information about space configuration. SpaceConfig builds inside of Server and transfered to the side of client.

Version:
1.0
Author:
Igor Goldenberg
See Also:
IRemoteJSpaceAdmin.getConfig(), Serialized Form

Field Summary
 
Fields inherited from class com.j_spaces.core.JSpaceAttributes
m_isClustered
 
Fields inherited from class java.util.Properties
defaults
 
Constructor Summary
SpaceConfig()
           
SpaceConfig(String spaceName, Properties prop, String containerName, String schemaPath)
          Creates SpaceConfig with the provided space name, using the given Properties.
SpaceConfig(String spaceName, String containerName)
          Creates SpaceConfig with the provided space name.
 
Method Summary
 boolean containsKey(Object key)
           
 String getContainerName()
          Return container owner name
 String getFullSpaceName()
           
 String getProperty(String key)
          
 String getProperty(String key, String defaultValue)
           
 String getPropertyFromSuper(String key)
          Returns the property without using the space name.
 String getSchemaPath()
          Returns space schema file path
 String getSpaceName()
          Returns the space name.
 void readExternal(ObjectInput in)
           
 Object setProperty(String key, String value)
          
 void setSchemaPath(String schemaName)
          Sets space schema file path
 void setSpaceName(String spaceName)
          Set the space name.
 String toString()
           
 void writeExternal(ObjectOutput out)
           
 
Methods inherited from class com.j_spaces.core.JSpaceAttributes
clear, clone, getCacheManagerSize, getCachePolicy, getClusterConfigURL, getClusterPolicy, getConnectionRetries, getCustomProperties, getDataClass, getDataPropertiesFile, getDataSourceClass, getDataSourceSharedIteratorMode, getDataSourceSharedIteratorTimeToLive, getDCacheConfigName, getDCacheProperties, getEngineMaxThreads, getEngineMemoryUsageEvictionBatchSize, getEngineMemoryUsageHighPercentageRatio, getEngineMemoryUsageLowPercentageRatio, getEngineMemoryUsageRetryCount, getEngineMemoryUsageWriteOnlyBlockPercentageRatio, getEngineMemoryWriteOnlyCheckPercentageRatio, getEngineMinThreads, getExpirationTimeInterval, getFiltersInfo, getGatewaysPolicy, getJMSQueueNames, getJMSRmiPort, getJMSTopicNames, getNotifyRetries, getNumberImplicitIndexes, getProxyConnectionMode, getProxyConnectionRetries, getProxyDetectorFrequency, getProxyMonitorFrequency, getQpDateFormat, getQpDateTimeFormat, getQpSpaceReadLeaseTime, getQpSpaceWriteLeaseTime, getQpTimeFormat, getQpTransactionTimeout, getQueryBuilderClass, getSchemaName, getSerializationType, getSpaceState, getStorageAdapterClass, getStubHandler, getUsage, isClustered, isEngineMemoryExplicitGSEnabled, isEngineMemoryUsageEnabled, isLoadOnStartup, isMirrorServiceEnabled, isPersistent, isPrivate, isQPAutoCommit, isQPParserCaseSensetivity, isQPTraceExecTime, isSupportsInheritanceEnabled, isSupportsPartialUpdateEnabled, isSupportsRemoveByIdEnabled, isSupportsVersionEnabled, setCacheManagerSize, setCachePolicy, setClusterConfigURL, setClustered, setClusterPolicy, setConnectionRetries, setCustomProperties, setDataClass, setDataPropertiesFile, setDataSourceClass, setDataSourceSharedIteratorMode, setDataSourceSharedIteratorTimeToLive, setDCacheConfigName, setDCacheProperties, setEngineMaxThreads, setEngineMemoryExplicitGSEnabled, setEngineMemoryUsageEnabled, setEngineMemoryUsageEvictionBatchSize, setEngineMemoryUsageHighPercentageRatio, setEngineMemoryUsageLowPercentageRatio, setEngineMemoryUsageRetryCount, setEngineMemoryUsageWriteOnlyBlockPercentageRatio, setEngineMemoryWriteOnlyCheckPercentageRatio, setEngineMinThreads, setExpirationTimeInterval, setFilterInfoAt, setFiltersInfo, setJMSQueueNames, setJMSRmiPort, setJMSTopicNames, setLoadOnStartup, setMirrorServiceEnabled, setNotifyRetries, setNumberImplicitIndexes, setPersistent, setPrivate, setProxyConnectionMode, setProxyConnectionRetries, setProxyDetectorFrequency, setProxyMonitorFrequency, setQPAutoCommit, setQpDateFormat, setQpDateTimeFormat, setQPParserCaseSensetivity, setQpSpaceReadLeaseTime, setQpSpaceWriteLeaseTime, setQpTimeFormat, setQPTraceExecTime, setQpTransactionTimeout, setQueryBuilderClass, setSchemaName, setSerializationType, setSpaceState, setStorageAdapterClass, setStubHandler, setSupportsInheritanceEnabled, setSupportsPartialUpdateEnabled, setSupportsRemoveByIdEnabled, setSupportsVersionEnabled, setUsage
 
Methods inherited from class java.util.Properties
list, list, load, load, loadFromXML, propertyNames, save, store, store, storeToXML, storeToXML, stringPropertyNames
 
Methods inherited from class java.util.Hashtable
contains, containsValue, elements, entrySet, equals, get, hashCode, isEmpty, keys, keySet, put, putAll, rehash, remove, size, values
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SpaceConfig

public SpaceConfig()

SpaceConfig

public SpaceConfig(String spaceName,
                   String containerName)
Creates SpaceConfig with the provided space name.

Parameters:
spaceName - the space name
containerName - container owner name

SpaceConfig

public SpaceConfig(String spaceName,
                   Properties prop,
                   String containerName,
                   String schemaPath)
Creates SpaceConfig with the provided space name, using the given Properties.

Parameters:
spaceName - the space name
prop - properties for the SpaceConfig
containerName - container owner name
schemaPath - path to space schema file
Method Detail

getSpaceName

public String getSpaceName()
Returns the space name.

Returns:
the space name

setSpaceName

public void setSpaceName(String spaceName)
Set the space name.

Parameters:
spaceName - the new space name

getFullSpaceName

public String getFullSpaceName()

getSchemaPath

public String getSchemaPath()
Returns space schema file path

Returns:
path to space schema file ( including host IP address )

setSchemaPath

public void setSchemaPath(String schemaName)
Sets space schema file path

Parameters:
schemaName - path to space schema file ( including host IP address )

getProperty

public String getProperty(String key)

Overrides:
getProperty in class Properties

getProperty

public String getProperty(String key,
                          String defaultValue)
Overrides:
getProperty in class Properties

setProperty

public Object setProperty(String key,
                          String value)

Overrides:
setProperty in class com.j_spaces.core.JSpaceAttributes

getPropertyFromSuper

public String getPropertyFromSuper(String key)
Returns the property without using the space name.

Parameters:
key - the property key.
Returns:
the value in this property list with the specified key value.

toString

public String toString()
Overrides:
toString in class com.j_spaces.core.JSpaceAttributes

containsKey

public boolean containsKey(Object key)
Specified by:
containsKey in interface Map<Object,Object>
Overrides:
containsKey in class Hashtable<Object,Object>

getContainerName

public String getContainerName()
Return container owner name

Returns:
container name

readExternal

public void readExternal(ObjectInput in)
                  throws IOException,
                         ClassNotFoundException
Specified by:
readExternal in interface Externalizable
Overrides:
readExternal in class com.j_spaces.core.JSpaceAttributes
Throws:
IOException
ClassNotFoundException

writeExternal

public void writeExternal(ObjectOutput out)
                   throws IOException
Specified by:
writeExternal in interface Externalizable
Overrides:
writeExternal in class com.j_spaces.core.JSpaceAttributes
Throws:
IOException

GigaSpaces XAP 9.0 API

Copyright © GigaSpaces.