Initial commit

This commit is contained in:
Ziver Koc 2015-04-09 21:22:47 +00:00
commit aa4e110832
69 changed files with 17898 additions and 0 deletions

View file

@ -0,0 +1,11 @@
package wa.server.plugin;
import java.io.IOException;
import java.sql.SQLException;
import zutil.db.DBConnection;
public interface WAConfigurator {
public void read(DBConnection db) throws SQLException;
public void save(DBConnection db) throws IOException;
}