1 23 24 28 29 package com.sun.enterprise.admin.mbeanapi; 30 31 import java.util.ArrayList ; 32 import javax.management.AttributeList ; 33 import javax.management.ObjectName ; 34 import javax.management.MBeanException ; 35 36 public interface IConnectorConnectionPoolMBean { 37 38 public void createSecurityMap(AttributeList attrList) 39 throws Exception ; 40 41 public ObjectName createSecurityMap(AttributeList attrList,String userName, 42 String password, String tgtName) throws MBeanException ; 43 44 public boolean updateSecurityMap(AttributeList attrList,String tgtName ) 45 throws MBeanException ; 46 47 public ArrayList listSecurityMap(String mapName,Boolean verb,String poolName, 48 String tgtName) throws MBeanException ; 49 50 public AttributeList getAttributes(String mapName,String poolName) 51 throws Exception ; 52 } 53 | Popular Tags |