Java tutorial
/* * CRUK-CI Genologics REST API Java Client. * Copyright (C) 2013 Cancer Research UK Cambridge Institute. * * 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/>. */ package com.genologics.ri.processexecution; import java.io.Serializable; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import org.apache.commons.beanutils.PropertyUtils; import com.genologics.ri.Linkable; import com.genologics.ri.artifact.Artifact; /** * * The base representation of an Artifact in the context of Process execution, * defining common elements for both input and output Artifacts. */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "artifactbase", propOrder = { "qcFlag" }) @XmlSeeAlso({ Input.class, Output.class }) public abstract class ArtifactBase implements Serializable { private static final long serialVersionUID = -946571040944446567L; @XmlElement(name = "qc-flag") protected QCFlag qcFlag; public QCFlag getQCFlag() { return qcFlag; } public void setQCFlag(QCFlag value) { this.qcFlag = value; } protected void updateQCFlag(Linkable<Artifact> link) { qcFlag = null; try { String objectQCFlagString = PropertyUtils.getProperty(link, "qcFlag").toString(); if (objectQCFlagString != null) { qcFlag = QCFlag.valueOf(objectQCFlagString); } } catch (Exception e) { // Ignore. } } }