01: /**
02: * Copyright 2004 Sun Microsystems, Inc. All
03: * rights reserved. Use of this product is subject
04: * to license terms. Federal Acquisitions:
05: * Commercial Software -- Government Users
06: * Subject to Standard License Terms and
07: * Conditions.
08: *
09: * Sun, Sun Microsystems, the Sun logo, and Sun ONE
10: * are trademarks or registered trademarks of Sun Microsystems,
11: * Inc. in the United States and other countries.
12: */package com.sun.portal.search.admin.mbeans;
13:
14: import java.util.*;
15: import com.sun.portal.admin.common.PSMBeanException;
16: import com.sun.portal.search.autoclassify.*;
17: import com.sun.portal.search.rdm.*;
18:
19: public interface AutoclassifyMBean {
20:
21: public String getConfigString(String config)
22: throws PSMBeanException, java.net.UnknownHostException;
23:
24: public HashMap retrieveConfig() throws PSMBeanException,
25: java.net.UnknownHostException;
26:
27: public Boolean setConfig(String logPath, String dbPath,
28: String cacheSize) throws PSMBeanException,
29: java.net.UnknownHostException;
30:
31: public String runAutoclassify(String dbname, String locale,
32: String startDate) throws PSMBeanException,
33: java.net.UnknownHostException;
34:
35: public String runAutoclassify(ArrayList dbs, String locale,
36: String startDate) throws PSMBeanException,
37: java.net.UnknownHostException;
38:
39: }
|