Package com.sun.enterprise.admin.monitor.types

Examples of com.sun.enterprise.admin.monitor.types.MonitoredAttributeType


    /**
     * Get type of the specified monitored attribute.
     */
    public MonitoredAttributeType getAttributeType(String attrName) {
        MonitoredAttributeType type = null;
        if (attrNameTypeMap != null && attrName != null) {
            type = (MonitoredAttributeType)attrNameTypeMap.get(attrName);
        }
        return type;
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.admin.monitor.types.MonitoredAttributeType

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.