View Javadoc

1   package net.sf.crispy;
2   
3   import java.util.Properties;
4   
5   /**
6    * Interface, to load the Properties for the <code>Servicemanage</code>.
7    * 
8    * @author Linke
9    *
10   */
11  public interface PropertiesLoader {
12  	
13  	public Properties load();
14  
15  }