package org.biomoby.registry.properties;

import java.util.Map;

/**
 * An interface for extracting environment variables.
 * 
 * @author Eddie created Nov 28, 2005
 */
public interface Environment {
	/**
	 * 
	 * @return a map containing key value pairs that correspond to the
	 *         systems' environment variables.
	 */
	public Map getEnv();
}
