/* * RHQ Management Platform * Copyright (C) 2005-2008 Red Hat, Inc. * All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation version 2 of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ package org.rhq.enterprise.gui.inventory.group; import javax.faces.application.FacesMessage; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.rhq.core.domain.auth.Subject; import org.rhq.core.domain.resource.group.ResourceGroup; import org.rhq.core.gui.util.FacesContextUtility; import org.rhq.enterprise.gui.util.EnterpriseFacesContextUtility; import org.rhq.enterprise.server.resource.group.ResourceGroupManagerLocal; import org.rhq.enterprise.server.resource.group.ResourceGroupUpdateException; import org.rhq.enterprise.server.util.LookupUtil; public class EditGroupGeneralPropertiesUIBean { private final Log log = LogFactory.getLog(EditGroupGeneralPropertiesUIBean.class); public static final String MANAGED_BEAN_NAME = "EditGroupGeneralPropertiesUIBean"; private static final String OUTCOME_SUCCESS = "success"; private static final String OUTCOME_FAILURE = "failure"; private String name; private String description; private boolean recursive; private ResourceGroupManagerLocal resourceGroupManager = LookupUtil.getResourceGroupManager(); public EditGroupGeneralPropertiesUIBean() { ResourceGroup resourceGroup = EnterpriseFacesContextUtility.getResourceGroup(); this.name = resourceGroup.getName(); this.description = resourceGroup.getDescription(); this.recursive = resourceGroup.isRecursive(); } public String begin() { return OUTCOME_SUCCESS; } public String update() { Subject subject = EnterpriseFacesContextUtility.getSubject(); ResourceGroup resourceGroup = EnterpriseFacesContextUtility.getResourceGroup(); resourceGroup.setName(this.name); resourceGroup.setDescription(this.description); resourceGroup.setRecursive(this.recursive); try { // pass null to let the method try to figure out the change this.resourceGroupManager.updateResourceGroup(subject, resourceGroup); } catch (ResourceGroupUpdateException rgue) { FacesContextUtility.addMessage(FacesMessage.SEVERITY_ERROR, "Problem updating group: " + rgue.getMessage()); log.error("Problem updating group: ", rgue); return OUTCOME_FAILURE; } FacesContextUtility.addMessage(FacesMessage.SEVERITY_INFO, "General properties updated."); return OUTCOME_SUCCESS; } public String cancel() { FacesContextUtility.addMessage(FacesMessage.SEVERITY_INFO, "General properties not updated."); return OUTCOME_SUCCESS; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public boolean isRecursive() { return recursive; } public void setRecursive(boolean recursive) { this.recursive = recursive; } }