package wa.server.plugin; public interface WAServiceConfig { /** * @return the String name of this configuration type */ public String getName(); /** * Read in current configuration data */ public void read() throws Exception; /** * Save configured data to disk or database */ public void save() throws Exception; /** * Configure service with current configuration data */ public void configure() throws Exception; }