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
 java.lang.String getProperty(java.lang.String property)
          Get value of property.
 java.lang.String setProperty(java.lang.String property, java.lang.String value)
          Set value of property.
 

Method Detail

getProperty

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

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

setProperty

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

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