Package org.objectweb.celtix.bus.management.jmx.export.annotation

Examples of org.objectweb.celtix.bus.management.jmx.export.annotation.ManagedOperationParameters


    public ManagedOperation getManagedOperation(Method method) {
        return method.getAnnotation(ManagedOperation.class);
    }

    public ManagedOperationParameter[] getManagedOperationParameters(Method method) {
        ManagedOperationParameters params = method.getAnnotation(ManagedOperationParameters.class);
        ManagedOperationParameter[] result = null;
        if (params == null) {
            result = new ManagedOperationParameter[0];
        } else {
            result = params.value();
        }
        return result;
    }
View Full Code Here

TOP

Related Classes of org.objectweb.celtix.bus.management.jmx.export.annotation.ManagedOperationParameters

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.