/* * #%L * gitools-biomart * %% * Copyright (C) 2013 Universitat Pompeu Fabra - Biomedical Genomics group * %% * 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 3 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, see * <http://www.gnu.org/licenses/gpl-3.0.html>. * #L% */ package org.gitools.datasources.biomart.restful.model; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; @XmlAccessorType(XmlAccessType.FIELD) public abstract class AbstractDescription { @XmlAttribute private String internalName; @XmlAttribute private String displayName; @XmlAttribute private String description; @XmlAttribute private boolean hidden; @XmlAttribute private boolean hideDisplay; @XmlAttribute private String tableConstraint; @XmlAttribute private String field; @XmlAttribute private String key; @XmlAttribute private boolean default_; AbstractDescription() { } public String getInternalName() { return internalName; } public void setInternalName(String internalName) { this.internalName = internalName; } public String getDisplayName() { return displayName; } public void setDisplayName(String displayName) { this.displayName = displayName; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public boolean isHidden() { return hidden; } public void setHidden(boolean hidden) { this.hidden = hidden; } public boolean isHideDisplay() { return hideDisplay; } public void setHideDisplay(boolean hideDisplay) { this.hideDisplay = hideDisplay; } public String getTableConstraint() { return tableConstraint; } public void setTableConstraint(String tableConstraint) { this.tableConstraint = tableConstraint; } public String getField() { return field; } public void setField(String field) { this.field = field; } public String getKey() { return key; } public void setKey(String key) { this.key = key; } public boolean isDefault() { return default_; } public void setDefault(boolean default_) { this.default_ = default_; } }