1 25 package org.objectweb.jonas.mejb; 26 27 import java.rmi.Remote ; 28 import java.rmi.RemoteException ; 29 30 36 public interface ManagementEndpoint extends Remote { 37 38 43 String getDefaultDomain() throws RemoteException ; 44 45 51 String [] getServers() throws ManagementEndpointException, RemoteException ; 52 53 62 String [] getAttribute(String domainServerName, String objectName, String attribute) 63 throws ManagementEndpointException, RemoteException ; 64 65 71 Integer getMBeanCount(String domainServerName) throws RemoteException ; 72 73 82 boolean isRegistered(String domainServerName, String objectName) 83 throws ManagementEndpointException, RemoteException ; 84 85 95 String [] queryNames(String domainServerName, String objectName, String query) 96 throws ManagementEndpointException, RemoteException ; 97 98 107 String [] getAttributesList(String domainServerName, String objectName) 108 throws ManagementEndpointException, RemoteException ; 109 110 118 String getDescription(String domainServerName, String objectName) 119 throws ManagementEndpointException, RemoteException ; 120 121 129 String [] getOperations(String domainServerName, String objectName) 130 throws ManagementEndpointException, RemoteException ; 131 132 } 133 | Popular Tags |