Examples of GroupCategory


Examples of org.rhq.core.domain.resource.group.GroupCategory

        }
    }

    protected void fetchReturnPathParams(HttpServletRequest request, Map params) {
        Integer groupId = RequestUtils.getGroupId(request);
        GroupCategory gc = RequestUtils.getGroupCategory(request);
        String category;
        if (gc != null)
            category = gc.name();
        else {
            category = GroupCategory.COMPATIBLE.name(); // Set a default
            log.warn("fetchReturnPathParam: No category was given, assuming compatible");
        }
        params.put(HubConstants.PARAM_GROUP_ID, groupId);
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.