edu.internet2.middleware.grouper.cfg
Interface Configuration

All Known Implementing Classes:
ApiConfig, Hib3DaoConfig, HibernateDaoConfig, PropertiesConfiguration

public interface Configuration

Grouper configuration interface.

Since:
1.2.1
Version:
$Id: Configuration.java,v 1.2 2007-08-27 15:53:52 blair Exp $
Author:
blair christensen.

Method Summary
 String getProperty(String property)
          Get value of property.
 String setProperty(String property, String value)
          Set value of property.
 

Method Detail

getProperty

String getProperty(String property)
                   throws IllegalArgumentException
Get value of property.

Parameters:
property - Get this property.
Returns:
Value of property or null.
Throws:
IllegalArgumentException - if property is null.
Since:
1.2.1

setProperty

String setProperty(String property,
                   String value)
                   throws IllegalArgumentException
Set value of property.

Parameters:
property - Set this property.
value - Value to set on this property.
Returns:
New value of property.
Throws:
IllegalArgumentException - if either param is null.
Since:
1.2.1