Examples of HubView


Examples of org.rhq.enterprise.gui.legacy.action.resource.hub.HubView

public class HubUtils {
    public static void initView(HubForm hubForm, WebUser user) throws Exception {
        WebUserPreferences preferences = user.getWebPreferences();

        HubView prefView = HubView.valueOf(preferences.getResourceBrowserViewMode());

        String viewStr = hubForm.getView();
        if (viewStr == null) {
            hubForm.setView(prefView.name());
        }

        HubView view = HubView.valueOf(hubForm.getView().toUpperCase());
        if (view != prefView) {
            preferences.setResourceBrowserViewMode(view.name()); // Save new preference.
        }
    }
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.