org.deegree.services.jaxb.wpvs
Class AbstractDataType

java.lang.Object
  extended by org.deegree.services.jaxb.wpvs.AbstractDataType
Direct Known Subclasses:
ColormapDatasetConfig, DEMDatasetConfig, DEMTextureDatasetConfig, RenderableDatasetConfig

public abstract class AbstractDataType
extends Object

Base definition for all data sets. Defines metadata properties like name, title and descriptions.

Java class for AbstractDataType complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="AbstractDataType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="Title" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="MetadataURL" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
         <element name="Abstract" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  String _abstract
           
protected  List<String> metadataURL
           
protected  String name
           
protected  String title
           
 
Constructor Summary
AbstractDataType()
           
 
Method Summary
 String getAbstract()
          Gets the value of the abstract property.
 List<String> getMetadataURL()
          Gets the value of the metadataURL property.
 String getName()
          Gets the value of the name property.
 String getTitle()
          Gets the value of the title property.
 void setAbstract(String value)
          Sets the value of the abstract property.
 void setName(String value)
          Sets the value of the name property.
 void setTitle(String value)
          Sets the value of the title property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

title

protected String title

name

protected String name

metadataURL

protected List<String> metadataURL

_abstract

protected String _abstract
Constructor Detail

AbstractDataType

public AbstractDataType()
Method Detail

getTitle

public String getTitle()
Gets the value of the title property.

Returns:
possible object is String

setTitle

public void setTitle(String value)
Sets the value of the title property.

Parameters:
value - allowed object is String

getName

public String getName()
Gets the value of the name property.

Returns:
possible object is String

setName

public void setName(String value)
Sets the value of the name property.

Parameters:
value - allowed object is String

getMetadataURL

public List<String> getMetadataURL()
Gets the value of the metadataURL property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the metadataURL property.

For example, to add a new item, do as follows:

    getMetadataURL().add(newItem);
 

Objects of the following type(s) are allowed in the list String


getAbstract

public String getAbstract()
Gets the value of the abstract property.

Returns:
possible object is String

setAbstract

public void setAbstract(String value)
Sets the value of the abstract property.

Parameters:
value - allowed object is String


Copyright © 2011. All Rights Reserved.