/** * * * * $Id$ */ package net.opengis.ows11; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Basic Identification Type'. * * * * Basic metadata identifying and describing a set of data. * * *

* The following features are supported: *

*

* * @see net.opengis.ows11.Ows11Package#getBasicIdentificationType() * @model extendedMetaData="name='BasicIdentificationType' kind='elementOnly'" * @generated */ public interface BasicIdentificationType extends DescriptionType { /** * Returns the value of the 'Identifier' containment reference. * * * * Optional unique identifier or name of this dataset. * * @return the value of the 'Identifier' containment reference. * @see #setIdentifier(CodeType) * @see net.opengis.ows11.Ows11Package#getBasicIdentificationType_Identifier() * @model containment="true" * extendedMetaData="kind='element' name='Identifier' namespace='##targetNamespace'" * @generated */ CodeType getIdentifier(); /** * Sets the value of the '{@link net.opengis.ows11.BasicIdentificationType#getIdentifier Identifier}' containment reference. * * * @param value the new value of the 'Identifier' containment reference. * @see #getIdentifier() * @generated */ void setIdentifier(CodeType value); /** * Returns the value of the 'Metadata' containment reference list. * The list contents are of type {@link net.opengis.ows11.MetadataType}. * * * * Optional unordered list of additional metadata about this data(set). A list of optional metadata elements for this data identification could be specified in the Implementation Specification for this service. * * @return the value of the 'Metadata' containment reference list. * @see net.opengis.ows11.Ows11Package#getBasicIdentificationType_Metadata() * @model type="net.opengis.ows11.MetadataType" containment="true" * extendedMetaData="kind='element' name='Metadata' namespace='##targetNamespace'" * @generated */ EList getMetadata(); } // BasicIdentificationType