JXTA

net.jxta.impl.peergroup
Interface PlatformConfigurator

All Superinterfaces:
Configurator
All Known Implementing Classes:
AutomaticConfigurator, DefaultConfigurator, NullConfigurator

Deprecated. This interface has been replaced with the NetworkConfigurator.

@Deprecated
public interface PlatformConfigurator
extends Configurator

Defines a configurator for the JXTA Platform peer group.


Method Summary
 PlatformConfig getPlatformConfig()
          Deprecated. Retrieve the associated PlatformConfig and potentially performing any required configuration of the parameters before returning.
 boolean isReconfigure()
          Deprecated. Determine if a forced reconfiguration is set for the next call to getPlatformConfig().
 void setPlatformConfig(PlatformConfig pc)
          Deprecated. Sets the associated PlatformConfig.
 void setReconfigure(boolean forceReconfig)
          Deprecated. Sets the reconfiguration status to the specified status.
 
Methods inherited from interface net.jxta.peergroup.Configurator
getConfigParams, load, save, setConfigParams
 

Method Detail

getPlatformConfig

PlatformConfig getPlatformConfig()
                                 throws ConfiguratorException
Deprecated. 
Retrieve the associated PlatformConfig and potentially performing any required configuration of the parameters before returning.

Returns:
PlatformConfig
Throws:
ConfiguratorException - If configuration error occurs.

setPlatformConfig

void setPlatformConfig(PlatformConfig pc)
Deprecated. 
Sets the associated PlatformConfig.

Parameters:
pc - the configuration

setReconfigure

void setReconfigure(boolean forceReconfig)
Deprecated. 
Sets the reconfiguration status to the specified status. If true then reconfiguration will be forced the next time the PlatformConfig is retrieved.

Parameters:
forceReconfig - If true then a forced reconfiguration will occur the next time getPlatformConfig() is called.

isReconfigure

boolean isReconfigure()
Deprecated. 
Determine if a forced reconfiguration is set for the next call to getPlatformConfig().

Returns:
Returns true if a forced reconfiguration will occur the next time getPlatformConfig() is called.

JXSE