Uses of Interface
com.sapportals.wcm.crt.configuration.IConfiguration

Packages that use IConfiguration
com.sap.netweaver.bc.rf.mi Contains repository framework manager interface. 
com.sapportals.wcm.crt.component Provides interfaces for CRT component implementations. 
com.sapportals.wcm.crt.configuration Provides configuration data interfaces for CRT component implementations. 
com.sapportals.wcm.repository.filter Contains interfaces and classes to define repository filters. 
com.sapportals.wcm.repository.manager Contains interfaces for repository managers. 
com.sapportals.wcm.repository.runtime Contains the classes that enable components to interact with the repository framework runtime. 
com.sapportals.wcm.repository.service Contains the repository service factory interface. 
com.sapportals.wcm.service Contains the service factory. 
com.sapportals.wcm.service.wastebasket   
 

Uses of IConfiguration in com.sap.netweaver.bc.rf.mi
 

Fields in com.sap.netweaver.bc.rf.mi declared as IConfiguration
protected  IConfiguration AbstractManager.config
          This manager's configuration
 

Methods in com.sap.netweaver.bc.rf.mi that return IConfiguration
 IConfiguration AbstractManager.getConfig()
           
 

Methods in com.sap.netweaver.bc.rf.mi with parameters of type IConfiguration
protected  void AbstractManager.checkNotReconfigurableAttributes(String[] notReconfigurable, IConfiguration newConfig)
          Helper method for reconfigure() implementations.
 void AbstractManager.configure(IConfiguration config)
           
protected  Properties AbstractManager.convertConfigToProperties(IConfiguration config, String prefix)
          Helper method for conversion of configuration data into properties.
protected  void AbstractManager.reconfigureDescription(IConfiguration newConfig)
           
protected  boolean AbstractManager.reconfigureSecurityManager(IConfiguration newConfig)
          Must be called by the RM implementation in its reconfigure() method if reconfiguration of security managers at runtime must be supported.
 

Uses of IConfiguration in com.sapportals.wcm.crt.component
 

Methods in com.sapportals.wcm.crt.component with parameters of type IConfiguration
 void IContainerManager.addChild(String key, String className, String proxyName, IConfiguration config, Object parameters)
          Adds a child component with the specified key, java class name and configuration data.
 void IContainerManager.addChild(String key, String className, String proxyName, IConfiguration config, Object parameters, int defaultPoolSize, int maximumPoolSize)
          Adds a pooled child component with the specified key, java class name and configuration data.
 void IConfigurable.configure(IConfiguration configuration)
          Passes the configuration data to the configurable.
 void IReconfigurable.reconfigure(IConfiguration configuration)
          Passes the new configuration data to the component.
 

Uses of IConfiguration in com.sapportals.wcm.crt.configuration
 

Classes in com.sapportals.wcm.crt.configuration that implement IConfiguration
 class AbstractConfiguration
          This is an abstract IConfiguration implementation that deals with methods that can be abstracted away from underlying implementations.
 class DefaultConfiguration
          This is the default implementation of a configuration node.
 

Fields in com.sapportals.wcm.crt.configuration declared as IConfiguration
protected static IConfiguration[] DefaultConfiguration.NO_CHILDREN
           
 

Methods in com.sapportals.wcm.crt.configuration that return IConfiguration
 IConfiguration IConfiguration.getChild(String child)
          Returns the child node with the specified name.
 IConfiguration AbstractConfiguration.getChild(String name)
          Return the first Configuration object child of this associated with the given name.
 IConfiguration IConfiguration.getChild(String child, boolean createNew)
          Returns the specified child node.
 IConfiguration DefaultConfiguration.getChild(String name, boolean createNew)
           
 IConfiguration[] IConfiguration.getChildren()
          Returns an array of all child nodes.
 IConfiguration[] DefaultConfiguration.getChildren()
           
 IConfiguration[] IConfiguration.getChildren(String name)
          Returns an array of all child nodes with the specified name.
 IConfiguration[] DefaultConfiguration.getChildren(String name)
           
 IConfiguration IConfigurationProvider.readConfiguration(ClassLoader classLoader)
          Returns the top-level configuration element that contains the complete configuration data for a single CRT client.
 

Methods in com.sapportals.wcm.crt.configuration with parameters of type IConfiguration
 void DefaultConfiguration.addChild(IConfiguration childConfiguration)
          Adds a child configuration node to this node.
 void IConfigurationEventListener.notifyComponentConfigAdded(ComponentUri containerUri, IConfiguration config)
          Notifies the CRT that a new "component" element was added to the configuration.
 void IConfigurationEventListener.notifyComponentConfigChanged(ComponentUri uri, IConfiguration config)
          Notifies the CRT that a component's configuration data has been changed.
 void DefaultConfiguration.removeChild(IConfiguration childConfiguration)
          Removes the child configuration node from this node.
 

Uses of IConfiguration in com.sapportals.wcm.repository.filter
 

Fields in com.sapportals.wcm.repository.filter declared as IConfiguration
protected  IConfiguration AbstractFilterManager.config
           
 

Methods in com.sapportals.wcm.repository.filter with parameters of type IConfiguration
protected  void AbstractUriFilterManager.changeSystemProperties(IConfiguration newConfig)
          Deprecated.  
protected  void AbstractRidFilterManager.changeSystemProperties(IConfiguration newConfig)
           
protected  void AbstractPropertyFilterManager.changeSystemProperties(IConfiguration newConfig)
           
protected  void AbstractNamespaceFilterManager.changeSystemProperties(IConfiguration newConfig)
           
protected abstract  void AbstractFilterManager.changeSystemProperties(IConfiguration newConfig)
          Changes the system properties of a filter manager.
protected  void AbstractContentFilterManager2.changeSystemProperties(IConfiguration newConfig)
           
protected  void AbstractContentFilterManager.changeSystemProperties(IConfiguration newConfig)
           
protected  void AbstractFilterManager.checkNotReconfigurableAttributes(String[] notReconfigurable, IConfiguration newConfig)
          Helper method for reconfigure() implementations.
 void AbstractFilterManager.configure(IConfiguration config)
           
protected static Properties AbstractFilterManager.convertConfigToProperties(IConfiguration config)
          Helper method for conversion of configuration data into properties.
protected static Properties AbstractFilterManager.convertConfigToProperties(IConfiguration config, String prefix)
          Helper method for conversion of configuration data into properties.
 

Uses of IConfiguration in com.sapportals.wcm.repository.manager
 

Methods in com.sapportals.wcm.repository.manager that return IConfiguration
 IConfiguration IRepositoryManager.getConfiguration()
          Returns the configuration data of this repository manager.
 

Uses of IConfiguration in com.sapportals.wcm.repository.runtime
 

Methods in com.sapportals.wcm.repository.runtime that return IConfiguration
 IConfiguration[] CmConfigDiffTool.ChildConfigDiff.getAddedChildren()
          Returns an array of added child configurations.
 IConfiguration[] CmConfigDiffTool.ChildConfigDiff.getModifiedChildren()
          Returns an array of modified child configurations
 IConfiguration[] CmConfigDiffTool.ChildConfigDiff.getRemovedChildren()
          Returns an array of removed child configurations.
 

Methods in com.sapportals.wcm.repository.runtime with parameters of type IConfiguration
static CmConfigDiffTool.ChildConfigDiff CmConfigDiffTool.diffChildConfigurations(String childConfigClassName, IConfiguration config, IConfiguration newConfig)
          Helper method for reconfigure() implementation of components that are containers: Returns a diff object for the configuration data of all added, removed and modified child components.
 

Uses of IConfiguration in com.sapportals.wcm.repository.service
 

Fields in com.sapportals.wcm.repository.service declared as IConfiguration
protected  IConfiguration AbstractRepositoryService.config
           
 

Methods in com.sapportals.wcm.repository.service with parameters of type IConfiguration
 void AbstractRepositoryService.configure(IConfiguration config)
           
static com.sap.netweaver.km.monitor.data.ConfigData AbstractRepositoryService.convertConfigData(IConfiguration cfg)
          Convert a CRT configuration data object to the monitor format.
static Properties AbstractRepositoryService.convertConfigToProperties(IConfiguration config)
          Helper method for conversion of configuration data into properties.
protected static Properties AbstractRepositoryService.convertConfigToProperties(IConfiguration config, String prefix)
          Helper method for conversion of configuration data into properties.
 

Uses of IConfiguration in com.sapportals.wcm.service
 

Fields in com.sapportals.wcm.service declared as IConfiguration
protected  IConfiguration AbstractService.config
          This service's configuration
 

Methods in com.sapportals.wcm.service with parameters of type IConfiguration
 void AbstractService.configure(IConfiguration config)
           
static com.sap.netweaver.km.monitor.data.ConfigData AbstractService.convertConfigData(IConfiguration cfg)
          Convert a CRT configuration data object to the monitor format.
static Properties AbstractService.convertConfigToProperties(IConfiguration config)
          Helper method for conversion of configuration data into properties.
protected static Properties AbstractService.convertConfigToProperties(IConfiguration config, String prefix)
          Helper method for conversion of configuration data into properties.
 

Uses of IConfiguration in com.sapportals.wcm.service.wastebasket
 

Methods in com.sapportals.wcm.service.wastebasket with parameters of type IConfiguration
 void WastebasketService.reconfigure(IConfiguration configuration)
           
 



Copyright 2012 SAP AG Complete Copyright Notice