Package org.jmanage.core.management

Examples of org.jmanage.core.management.ObjectOperationInfo


            signature[paramIndex] =
                    request.getParameter(operationName + paramIndex + "_type");
        }

        MBeanService service = ServiceFactory.getMBeanService();
        ObjectOperationInfo operationInfo = service.getOperationInfo(
                Utils.getServiceContext(context),
                operationName, signature);
        OperationResultData[] resultData =
                service.invoke(Utils.getServiceContext(context),
                        operationName,
View Full Code Here


        List operations = mbean.getChildren("operation");
        ObjectOperationInfo[] operationInfo = new ObjectOperationInfo[operations.size()];
        int index = 0;
        for(Iterator it = operations.iterator(); it.hasNext(); index++){
            Element operation = (Element)it.next();
            operationInfo[index] = new ObjectOperationInfo(operation.getAttributeValue("name"),
                    operation.getAttributeValue("description"),
                    getSignature(operation),
                    null, // not overridden
                    0);   // not overridden
            operationInfo[index].setUnits(operation.getAttributeValue("units"));
View Full Code Here

TOP

Related Classes of org.jmanage.core.management.ObjectOperationInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.