/** * * * * $Id$ */ package net.opengis.ows10; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Responsible Party Type'. * * * * Identification of, and means of communication with, person responsible for the server. At least one of IndividualName, OrganisationName, or PositionName shall be included. * * *

* The following features are supported: *

*

* * @see net.opengis.ows10.Ows10Package#getResponsiblePartyType() * @model extendedMetaData="name='ResponsiblePartyType' kind='elementOnly'" * @generated */ public interface ResponsiblePartyType extends EObject { /** * Returns the value of the 'Individual Name' attribute. * *

* If the meaning of the 'Individual Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Individual Name' attribute. * @see #setIndividualName(String) * @see net.opengis.ows10.Ows10Package#getResponsiblePartyType_IndividualName() * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='element' name='IndividualName' namespace='##targetNamespace'" * @generated */ String getIndividualName(); /** * Sets the value of the '{@link net.opengis.ows10.ResponsiblePartyType#getIndividualName Individual Name}' attribute. * * * @param value the new value of the 'Individual Name' attribute. * @see #getIndividualName() * @generated */ void setIndividualName(String value); /** * Returns the value of the 'Organisation Name' attribute. * *

* If the meaning of the 'Organisation Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Organisation Name' attribute. * @see #setOrganisationName(String) * @see net.opengis.ows10.Ows10Package#getResponsiblePartyType_OrganisationName() * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='element' name='OrganisationName' namespace='##targetNamespace'" * @generated */ String getOrganisationName(); /** * Sets the value of the '{@link net.opengis.ows10.ResponsiblePartyType#getOrganisationName Organisation Name}' attribute. * * * @param value the new value of the 'Organisation Name' attribute. * @see #getOrganisationName() * @generated */ void setOrganisationName(String value); /** * Returns the value of the 'Position Name' attribute. * *

* If the meaning of the 'Position Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Position Name' attribute. * @see #setPositionName(String) * @see net.opengis.ows10.Ows10Package#getResponsiblePartyType_PositionName() * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='element' name='PositionName' namespace='##targetNamespace'" * @generated */ String getPositionName(); /** * Sets the value of the '{@link net.opengis.ows10.ResponsiblePartyType#getPositionName Position Name}' attribute. * * * @param value the new value of the 'Position Name' attribute. * @see #getPositionName() * @generated */ void setPositionName(String value); /** * Returns the value of the 'Contact Info' containment reference. * *

* If the meaning of the 'Contact Info' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Contact Info' containment reference. * @see #setContactInfo(ContactType) * @see net.opengis.ows10.Ows10Package#getResponsiblePartyType_ContactInfo() * @model containment="true" * extendedMetaData="kind='element' name='ContactInfo' namespace='##targetNamespace'" * @generated */ ContactType getContactInfo(); /** * Sets the value of the '{@link net.opengis.ows10.ResponsiblePartyType#getContactInfo Contact Info}' containment reference. * * * @param value the new value of the 'Contact Info' containment reference. * @see #getContactInfo() * @generated */ void setContactInfo(ContactType value); /** * Returns the value of the 'Role' containment reference. * *

* If the meaning of the 'Role' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Role' containment reference. * @see #setRole(CodeType) * @see net.opengis.ows10.Ows10Package#getResponsiblePartyType_Role() * @model containment="true" required="true" * extendedMetaData="kind='element' name='Role' namespace='##targetNamespace'" * @generated */ CodeType getRole(); /** * Sets the value of the '{@link net.opengis.ows10.ResponsiblePartyType#getRole Role}' containment reference. * * * @param value the new value of the 'Role' containment reference. * @see #getRole() * @generated */ void setRole(CodeType value); } // ResponsiblePartyType