/* * OneCMDB, an open source configuration management project. * Copyright 2007, Lokomo Systems AB, and individual contributors * as indicated by the @authors tag. See the copyright.txt in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.onecmdb.ui.gwt.itil.client.application.problem.screen; import java.util.Arrays; import org.onecmdb.ui.gwt.itil.client.ITILApplication; import org.onecmdb.ui.gwt.itil.client.application.incident.control.NewIncidentAttributeControl; import org.onecmdb.ui.gwt.itil.client.application.problem.control.NewProblemControl; import org.onecmdb.ui.gwt.toolkit.client.control.input.AttributeControl; import org.onecmdb.ui.gwt.toolkit.client.control.input.AttributeLoaderControl; import org.onecmdb.ui.gwt.toolkit.client.control.input.CIAttributeValueInputControl; import org.onecmdb.ui.gwt.toolkit.client.control.input.CIDescriptionControl; import org.onecmdb.ui.gwt.toolkit.client.control.input.DefaultAttributeFilter; import org.onecmdb.ui.gwt.toolkit.client.control.input.IAttributeFilter; import org.onecmdb.ui.gwt.toolkit.client.control.input.TextAttributeControl; import org.onecmdb.ui.gwt.toolkit.client.model.onecmdb.GWT_CiBean; import org.onecmdb.ui.gwt.toolkit.client.view.screen.ci.NewCIScreen; public class NewProblemScreen extends NewCIScreen { private static DefaultAttributeFilter defFilter = new DefaultAttributeFilter(); public NewProblemScreen() { super(); setTitleText("New Problem"); defFilter.setAttributeControl(Arrays.asList(getCtrls())); } public void load() { super.load("ITIL_Problem", null); } private String[] orders = new String[] { "title", "opDescription", "affectedCIs", "priority", "status", "ticketIssuer" }; public IAttributeFilter getAttributeFilter() { return(defFilter); } protected CIAttributeValueInputControl getControl() { return(new NewProblemControl(templateAlias, isNew())); } private AttributeControl[] getCtrls() { AttributeControl[] ctrls = new AttributeControl[] { new AttributeControl("title", false, true), new CIDescriptionControl(true), //new TextAttributeControl("opDescription", false, false, TextAttributeControl.TEXT_AREA_TYPE, new Integer(5), null), new AttributeControl("affectedCIs", false, false), new AttributeControl("priority", false, true), new AttributeControl("status", true, false), new AttributeLoaderControl("ticketIssuer", true, true, loadTickIssuer()) }; return(ctrls); } public void onLoadComplete(Object sender) { showLoading(false); } protected void onCommitSuccess(Object result) { if (result instanceof GWT_CiBean) { ITILApplication.get().showScreen(ITILApplication.CONFIRM_NEW_PROBLEM_SCREEN, ((GWT_CiBean)result).getAlias(), new Long(0)); } } }