Package tigase.conf

Interface ConfigRepositoryIfc

All Superinterfaces:
ComponentRepository<ConfigItem>, Iterable<ConfigItem>, Repository
All Known Implementing Classes:
ConfigSQLRepository, ConfigurationCache, ConfigXMLRepository

public interface ConfigRepositoryIfc extends ComponentRepository<ConfigItem>
Created: Dec 10, 2009 2:04:20 PM
Author:
Artur Hefczyc
  • Field Details

  • Method Details

    • getProperties

      @Deprecated Map<String,Object> getProperties(String compName) throws ConfigurationException
      Deprecated.
      Returns all known settings for the given component name.
      Returns:
      map with configuration
      Throws:
      ConfigurationException
    • getItemsForComponent

      Set<ConfigItem> getItemsForComponent(String compName)
      Get set of config items stored for component
      Returns:
      set of component items
    • putProperties

      @Deprecated void putProperties(String compName, Map<String,Object> props) throws ConfigurationException
      Deprecated.
      Sets/adds properties for the given component name.
      Throws:
      ConfigurationException
    • get

      Object get(String compName, String node, String key, Object def)
      Returns a configuration setting for a given component, node and key. If the configuration parameters is not found, returns given default value.
      Returns:
      value
    • set

      void set(String compName, String node, String key, Object value)
      Puts/sets/adds/updates a configuration setting to the configuration repository.
    • getCompNames

      String[] getCompNames()
      Returns all component names for which there are some configuration settings available.
      Returns:
      array of component names
    • getKeys

      String[] getKeys(String compName, String node)
      Returns an array of all configuration keys for a given component and configuration node.
      Returns:
      array of keys for component and node
    • remove

      void remove(String compName, String node, String key)
      Removes a configuration setting from the configuration repository.
    • addItem

      void addItem(String key, Object value) throws ConfigurationException
      Method adds an Item to the configuration repository where the key is the item key constructed of component name, node name and property key name.
      Throws:
      ConfigurationException
    • setDefHostname

      void setDefHostname(String hostname)
      This is used to load a configuration for a selected cluster node. The configuration repository (file or database) may contain settings for all cluster nodes, some of the settings may be exclusive to one or another cluster node. This method informs the repository what node name (hostname) it is running on.
    • getInitProperties

      Map<String,Object> getInitProperties()