01: package com.sun.portal.fabric.mbeans;
02:
03: import java.util.Hashtable;
04: import java.util.List;
05:
06: /**
07: *
08: */
09: public interface PortalLogConfigHostBridgeMBean {
10: public static final String TYPE = PortalDomainMBean.TYPE
11: + ".PortalLogConfigHostBridge";
12:
13: public Hashtable getCommonLogDetails(String component,
14: String componentID, String instance) throws Exception;
15:
16: public void setCommonLogDetails(String component,
17: String componentID, String instance, Hashtable values)
18: throws Exception;
19:
20: public List getSpecificLogDetails(String component,
21: String componentID, String instance) throws Exception;
22:
23: public void setSpecificLogDetails(String component,
24: String componentID, String instance, List loggersDetails)
25: throws Exception;
26:
27: public Hashtable getLogFileNames(String componentType,
28: String componentID, String instance) throws Exception;
29:
30: public Hashtable getLogRecords(String componentType,
31: String componentID, String instance,
32: Hashtable logViewerInputs) throws Exception;
33:
34: public Hashtable getLoggerDetails(String componentType,
35: String componentID, String instance, String loggerName)
36: throws Exception;
37:
38: }
|