/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 2009, Geomatys * * This library 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 library 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. */ package org.geotoolkit.sml.xml.v100; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for AbstractDerivableProcessType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="AbstractDerivableProcessType"> * <complexContent> * <extension base="{http://www.opengis.net/sensorML/1.0}AbstractProcessType"> * <sequence> * <element name="inputs" type="{http://www.opengis.net/sensorML/1.0}inputsPropertyType" minOccurs="0"/> * <element name="outputs" type="{http://www.opengis.net/sensorML/1.0}outputsPropertyType" minOccurs="0"/> * <element name="parameters" type="{http://www.opengis.net/sensorML/1.0}parametersPropertyType" minOccurs="0"/> * <choice minOccurs="0"> * <element ref="{http://www.opengis.net/sensorML/1.0}method"/> * <sequence> * <element name="components" type="{http://www.opengis.net/sensorML/1.0}componentsPropertyType"/> * <element name="dataSources" type="{http://www.opengis.net/sensorML/1.0}dataSourcesPropertyType" minOccurs="0"/> * <element name="connections" type="{http://www.opengis.net/sensorML/1.0}connectionsPropertyType"/> * </sequence> * </choice> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbstractDerivableProcessType", propOrder = { "inputs", "outputs", "parameters", "method", "components", "dataSources", "connections" }) public abstract class AbstractDerivableProcessType extends AbstractProcessType { private InputsPropertyType inputs; private OutputsPropertyType outputs; private ParametersPropertyType parameters; private MethodPropertyType method; private ComponentsPropertyType components; private DataSourcesPropertyType dataSources; private ConnectionsPropertyType connections; /** * Gets the value of the inputs property. * * @return * possible object is * {@link InputsPropertyType } * */ public InputsPropertyType getInputs() { return inputs; } /** * Sets the value of the inputs property. * * @param value * allowed object is * {@link InputsPropertyType } * */ public void setInputs(final InputsPropertyType value) { this.inputs = value; } /** * Gets the value of the outputs property. * * @return * possible object is * {@link OutputsPropertyType } * */ public OutputsPropertyType getOutputs() { return outputs; } /** * Sets the value of the outputs property. * * @param value * allowed object is * {@link OutputsPropertyType } * */ public void setOutputs(final OutputsPropertyType value) { this.outputs = value; } /** * Gets the value of the parameters property. * * @return * possible object is * {@link ParametersPropertyType } * */ public ParametersPropertyType getParameters() { return parameters; } /** * Sets the value of the parameters property. * * @param value * allowed object is * {@link ParametersPropertyType } * */ public void setParameters(final ParametersPropertyType value) { this.parameters = value; } /** * Gets the value of the method property. * * @return * possible object is * {@link MethodPropertyType } * */ public MethodPropertyType getMethod() { return method; } /** * Sets the value of the method property. * * @param value * allowed object is * {@link MethodPropertyType } * */ public void setMethod(final MethodPropertyType value) { this.method = value; } /** * Gets the value of the components property. * * @return * possible object is * {@link ComponentsPropertyType } * */ public ComponentsPropertyType getComponents() { return components; } /** * Sets the value of the components property. * * @param value * allowed object is * {@link ComponentsPropertyType } * */ public void setComponents(final ComponentsPropertyType value) { this.components = value; } /** * Gets the value of the dataSources property. * * @return * possible object is * {@link DataSourcesPropertyType } * */ public DataSourcesPropertyType getDataSources() { return dataSources; } /** * Sets the value of the dataSources property. * * @param value * allowed object is * {@link DataSourcesPropertyType } * */ public void setDataSources(final DataSourcesPropertyType value) { this.dataSources = value; } /** * Gets the value of the connections property. * * @return * possible object is * {@link ConnectionsPropertyType } * */ public ConnectionsPropertyType getConnections() { return connections; } /** * Sets the value of the connections property. * * @param value * allowed object is * {@link ConnectionsPropertyType } * */ public void setConnections(final ConnectionsPropertyType value) { this.connections = value; } }