Package org.rhq.enterprise.gui.legacy

Examples of org.rhq.enterprise.gui.legacy.Portal


     */
    public ActionForward changeOwner(ActionMapping mapping, ActionForm form, HttpServletRequest request,
        HttpServletResponse response) throws Exception {
        super.setResource(request);

        Portal portal = Portal.createPortal("resource.common.inventory.ChangeOwnerTitle",
            ".resource.inventory.ChangeOwner");
        request.setAttribute(AttrConstants.PORTAL_KEY, portal);
        return null;
    }
View Full Code Here


            resourceTypeName, pluginName);
        initInventorySummary(subject, request);

        SessionUtils.resetReturnPath(request.getSession());

        Portal portal = Portal.createPortal("resource.hub.ResourceHubTitle", ".group.hub");
        request.setAttribute(Constants.PORTAL_KEY, portal);

        String navHierarchy = HubUtils.buildNavHierarchy(groupCategory.toString(), resourceTypeName);
        request.setAttribute(Constants.INVENTORY_HIERARCHY_ATTR, navHierarchy);
        return returnSuccess(request, mapping);
View Full Code Here

        ActionForward fwd = dispatchMethod(mapping, form, request, response, methodName);

        // save the return path in case the user clicks into a
        // workflow. be sure to include the mode parameter.
        try {
            Portal tmpPortal = (Portal) request.getAttribute(AttrConstants.PORTAL_KEY);
            if (tmpPortal.doWorkflow()) {
                Map<String, String> params = tmpPortal.getWorkflowParams();
                if (params == null) {
                    params = new HashMap<String, String>();
                    params.put(ParamConstants.MODE_PARAM, name);
                }
View Full Code Here

        return keyMethodMap;
    }

    public ActionForward savedQueries(ActionMapping mapping, ActionForm form, HttpServletRequest request,
        HttpServletResponse response) throws Exception {
        Portal portal = Portal.createPortal("dash.settings.PageTitle.SQ", ".dashContent.admin.savedQueries");

        portal.setDialog(true);

        request.setAttribute(Constants.PORTAL_KEY, portal);

        return null;
    }
View Full Code Here

        return null;
    }

    public ActionForward resourceHealth(ActionMapping mapping, ActionForm form, HttpServletRequest request,
        HttpServletResponse response) throws Exception {
        Portal portal = Portal.createPortal("dash.settings.PageTitle.RH", ".dashContent.admin.resourceHealth");

        portal.setDialog(true);

        request.setAttribute(Constants.PORTAL_KEY, portal);

        return null;
    }
View Full Code Here

        return null;
    }

    public ActionForward recentlyApproved(ActionMapping mapping, ActionForm form, HttpServletRequest request,
        HttpServletResponse response) throws Exception {
        Portal portal = Portal.createPortal("dash.settings.PageTitle.RA", ".dashContent.admin.recentlyApproved");

        portal.setDialog(true);

        request.setAttribute(Constants.PORTAL_KEY, portal);

        return null;
    }
View Full Code Here

        return null;
    }

    public ActionForward criticalAlerts(ActionMapping mapping, ActionForm form, HttpServletRequest request,
        HttpServletResponse response) throws Exception {
        Portal portal = Portal.createPortal("dash.settings.PageTitle.A", ".dashContent.admin.criticalAlerts");

        portal.setDialog(true);

        request.setAttribute(Constants.PORTAL_KEY, portal);

        return null;
    }
View Full Code Here

        return null;
    }

    public ActionForward summaryCounts(ActionMapping mapping, ActionForm form, HttpServletRequest request,
        HttpServletResponse response) throws Exception {
        Portal portal = Portal.createPortal("dash.settings.PageTitle.SC", ".dashContent.admin.summaryCounts");

        portal.setDialog(true);

        request.setAttribute(Constants.PORTAL_KEY, portal);

        return null;
    }
View Full Code Here

        return null;
    }

    public ActionForward autoDiscovery(ActionMapping mapping, ActionForm form, HttpServletRequest request,
        HttpServletResponse response) throws Exception {
        Portal portal = Portal.createPortal("dash.settings.PageTitle.AD", ".dashContent.admin.autoDiscovery");

        portal.setDialog(true);

        request.setAttribute(Constants.PORTAL_KEY, portal);

        return null;
    }
View Full Code Here

        return null;
    }

    public ActionForward controlActions(ActionMapping mapping, ActionForm form, HttpServletRequest request,
        HttpServletResponse response) throws Exception {
        Portal portal = Portal.createPortal("dash.settings.PageTitle.CA", ".dashContent.admin.controlActions");

        portal.setDialog(true);

        request.setAttribute(Constants.PORTAL_KEY, portal);

        return null;
    }
View Full Code Here

TOP

Related Classes of org.rhq.enterprise.gui.legacy.Portal

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.