01: package com.sun.portal.ubt.admin.mbeans;
02:
03: import java.util.Hashtable;
04:
05: /**
06: *
07: */
08: public interface UBTSettingsHostBridgeMBean {
09: public Hashtable getUBTSettings(String instance) throws Exception;
10:
11: public void setUBTSettings(Hashtable values, String instance)
12: throws Exception;
13: }
|