Examples of CannedGroupExpressions


Examples of org.rhq.core.clientapi.descriptor.group.expressions.CannedGroupExpressions

     * @param pluginName
     * @return canned dyna-group addition instance or null on error or non-existing descriptor
     */
    public static CannedGroupAddition getCannedGroupsAddition(URL url, String pluginName) {
        try {
            CannedGroupExpressions descriptor = AgentPluginDescriptorUtil.loadCannedExpressionsFromUrl(url);
            return parseCGAdditions(descriptor, pluginName);
        } catch (Exception e) {
            log.error("Failed to parse plugin addition found in plugin [" + url + "]", e);
            return null;
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.