/* * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software * Foundation. * * You should have received a copy of the GNU Lesser General Public License along with this * program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * 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 Lesser General Public License for more details. * * Copyright (c) 2015 Pentaho Corporation. All rights reserved. */ package org.pentaho.marketplace.domain.model.entities.serialization.jaxb.dto; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * The stage of development the version of the market entry is at. * <p/> * <p/> * <p>Java class for development_stage complex type. * <p/> * <p>The following schema fragment specifies the expected content contained within this class. * <p/> * <pre> * <complexType name="development_stage"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <all> * <element name="lane" type="{}development_stage_lane"/> * <element name="phase" type="{}development_stage_phase"/> * </all> * </restriction> * </complexContent> * </complexType> * </pre> */ @XmlAccessorType( XmlAccessType.FIELD ) @XmlType( name = "development_stage", propOrder = {} ) public class DevelopmentStage { @XmlElement( required = true ) protected DevelopmentStageLane lane; protected long phase; /** * Gets the value of the lane property. * * @return possible object is {@link DevelopmentStageLane } */ public DevelopmentStageLane getLane() { return lane; } /** * Sets the value of the lane property. * * @param value allowed object is {@link DevelopmentStageLane } */ public void setLane( DevelopmentStageLane value ) { this.lane = value; } /** * Gets the value of the phase property. */ public long getPhase() { return phase; } /** * Sets the value of the phase property. */ public void setPhase( long value ) { this.phase = value; } }