Open Source Repository

Home /spring/spring-core-3.0.5 | Repository Home



org/springframework/util/PropertiesPersister.java
/*
 * Copyright 2002-2005 the original author or authors.
 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 
 *      http://www.apache.org/licenses/LICENSE-2.0
 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.util;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.Reader;
import java.io.Writer;
import java.util.Properties;

/**
 * Strategy interface for persisting <code>java.util.Properties</code>,
 * allowing for pluggable parsing strategies.
 *
 <p>The default implementation is DefaultPropertiesPersister,
 * providing the native parsing of <code>java.util.Properties</code>,
 * but allowing for reading from any Reader and writing to any Writer
 * (which allows to specify an encoding for a properties file).
 *
 <p>As of Spring 1.2.2, this interface also supports properties XML files,
 * through the <code>loadFromXml</code> and <code>storeToXml</code> methods.
 * The default implementations delegate to JDK 1.5's corresponding methods.
 *
 @author Juergen Hoeller
 @since 10.03.2004
 @see DefaultPropertiesPersister
 @see java.util.Properties
 */
public interface PropertiesPersister {

  /**
   * Load properties from the given InputStream into the given
   * Properties object.
   @param props the Properties object to load into
   @param is the InputStream to load from
   @throws IOException in case of I/O errors
   @see java.util.Properties#load
   */
  void load(Properties props, InputStream isthrows IOException;

  /**
   * Load properties from the given Reader into the given
   * Properties object.
   @param props the Properties object to load into
   @param reader the Reader to load from
   @throws IOException in case of I/O errors
   */
  void load(Properties props, Reader readerthrows IOException;


  /**
   * Write the contents of the given Properties object to the
   * given OutputStream.
   @param props the Properties object to store
   @param os the OutputStream to write to
   @param header the description of the property list
   @throws IOException in case of I/O errors
   @see java.util.Properties#store
   */
  void store(Properties props, OutputStream os, String headerthrows IOException;

  /**
   * Write the contents of the given Properties object to the
   * given Writer.
   @param props the Properties object to store
   @param writer the Writer to write to
   @param header the description of the property list
   @throws IOException in case of I/O errors
   */
  void store(Properties props, Writer writer, String headerthrows IOException;


  /**
   * Load properties from the given XML InputStream into the
   * given Properties object.
   @param props the Properties object to load into
   @param is the InputStream to load from
   @throws IOException in case of I/O errors
   @see java.util.Properties#loadFromXML(java.io.InputStream)
   */
  void loadFromXml(Properties props, InputStream isthrows IOException;

  /**
   * Write the contents of the given Properties object to the
   * given XML OutputStream.
   @param props the Properties object to store
   @param os the OutputStream to write to
   @param header the description of the property list
   @throws IOException in case of I/O errors
   @see java.util.Properties#storeToXML(java.io.OutputStream, String)
   */
  void storeToXml(Properties props, OutputStream os, String headerthrows IOException;

  /**
   * Write the contents of the given Properties object to the
   * given XML OutputStream.
   @param props the Properties object to store
   @param os the OutputStream to write to
   @param encoding the encoding to use
   @param header the description of the property list
   @throws IOException in case of I/O errors
   @see java.util.Properties#storeToXML(java.io.OutputStream, String, String)
   */
  void storeToXml(Properties props, OutputStream os, String header, String encodingthrows IOException;

}