/* * Lokomo OneCMDB - An Open Source Software for Configuration * Management of Datacenter Resources * * Copyright (C) 2006 Lokomo Systems AB * * 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; either version 2 of the License, or (at * your option) any later version. * * 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., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301 USA. * * Lokomo Systems AB can be contacted via e-mail: info@lokomo.com or via * paper mail: Lokomo Systems AB, Sv�rdv�gen 27, SE-182 33 * Danderyd, Sweden. * */ package org.onecmdb.ui.gwt.toolkit.client.model.onecmdb.graph.query; public class GWT_ItemRFCSelector extends GWT_ItemSelector { public static final String TEMPLATE_RFC = null; public static final String RFC_ANY_TYPE = "RFC"; public static final String RFC_MODIFY_VALUE_TYPE = "RFC_MODIFY_VALUE"; public static final String RFC_NEW_CI_TYPE = "RFC_NEW_CI"; // Need to store this a string, some bug in GWT-RPC with large long values! private String txId; public Long getTxId() { if (this.txId == null) { return(null); } return Long.valueOf(this.txId); } public void setTxId(Long txId) { if (txId == null) { this.txId = null; } else { this.txId = txId.toString(); } } public GWT_ItemRFCSelector() { } public GWT_ItemRFCSelector(String id, String template) { super(id, template); } public boolean hasTemplate() { return(false); } }