Examples of AffinityGroup


Examples of org.rhq.core.domain.cloud.AffinityGroup

    }

    private void createNewGroup(final Window modalWindow, final DynamicForm form) {
        if (form.validate()) {
            String name = form.getValueAsString(FIELD_NAME);
            AffinityGroup affinityGroup = new AffinityGroup(name);
            GWTServiceLookup.getTopologyService().createAffinityGroup(affinityGroup, new AsyncCallback<Integer>() {
                public void onSuccess(Integer affinityGroupId) {
                    modalWindow.destroy();
                    CoreGUI.goToView(VIEW_PATH + "/" + affinityGroupId);
                }
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.