/** * * * * $Id$ */ package net.opengis.wps; import java.math.BigInteger; /** * * A representation of the model object 'Supported Complex Data Input Type'. * * * * * * *

* The following features are supported: *

*

* * @see net.opengis.wps.WpsPackage#getSupportedComplexDataInputType() * @model extendedMetaData="name='SupportedComplexDataInputType' kind='elementOnly'" * @generated */ public interface SupportedComplexDataInputType extends SupportedComplexDataType { /** * Returns the value of the 'Maximum Megabytes' attribute. * * * * The maximum file size, in megabytes, of this input. If the input exceeds this size, the server will return an error instead of processing the inputs. * * @return the value of the 'Maximum Megabytes' attribute. * @see #setMaximumMegabytes(BigInteger) * @see net.opengis.wps.WpsPackage#getSupportedComplexDataInputType_MaximumMegabytes() * @model dataType="org.eclipse.emf.ecore.xml.type.Integer" * extendedMetaData="kind='attribute' name='maximumMegabytes'" * @generated */ BigInteger getMaximumMegabytes(); /** * Sets the value of the '{@link net.opengis.wps.SupportedComplexDataInputType#getMaximumMegabytes Maximum Megabytes}' attribute. * * * @param value the new value of the 'Maximum Megabytes' attribute. * @see #getMaximumMegabytes() * @generated */ void setMaximumMegabytes(BigInteger value); } // SupportedComplexDataInputType