01: /*
02: * Created on May 2, 2003
03: *
04: * Dbmjui is free software; you can redistribute it and/or
05: * modify it under the terms of the GNU General Public License version 2 as
06: * published by the Free Software Foundation.
07: *
08: * Dbmjui is distributed in the hope that it will be useful,
09: * but WITHOUT ANY WARRANTY; without even the implied warranty of
10: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11: * General Public License for more details.
12: *
13: * You should have received a copy of the GNU General Public
14: * License along with dbmjui; see the file COPYING. If not,
15: * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16: * Boston, MA 02111-1307, USA.
17: *
18: */
19: package fr.aliacom.dbmjui.driver;
20:
21: import fr.aliacom.dbmjui.DbInstance;
22: import fr.aliacom.dbmjui.beans.InstanceInformations;
23:
24: /**
25: * @author tom
26: *
27: * (c) 2001, 2003 Thomas Cataldo
28: */
29: public interface IInstanceHelper {
30:
31: /**
32: * @param instance
33: * @return the informations on the instance
34: */
35: InstanceInformations updateInformations(DbInstance instance);
36:
37: /**
38: * Checks wether autolog is activ on the given instance
39: *
40: * @param instance
41: * @return true if autolog is active
42: */
43: boolean isAutologEnabled(DbInstance instance);
44:
45: void changeState(DbInstance dbi, int newState);
46:
47: }
|