Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.api / src / main / resources / org / gvsig / fmap / dal / MetadataDefinitions.xml @ 40435

History | View | Annotate | Download (1.58 KB)

1
<?xml version="1.0"?>
2
<definitions>
3
  <version>1.0.0</version>
4
  <classes>
5
    <class name="DataProvider" namespace="metadata">
6
      <description>Metadata of a feature store</description>
7
      <fields>
8
        <field name="ProviderName" type="string" mandatory="true">
9
          <description>The name of the provider of data</description>
10
        </field>
11
        <field name="ContainerName" type="string" mandatory="false">
12
          <description>Name of the container of the data, by example, in a dbf, the file name of the dbf</description>
13
        </field>
14
      </fields>
15
    </class>
16

    
17
    <class name="FeatureProvider" namespace="metadata">
18
      <extends>
19
              <class namespace="metadata" name="DataProvider"/>
20
      </extends>
21
      <description>Metadata of a feature store</description>
22
      <fields>
23
        <field name="FeatureType" type="dynobject" subType="org.gvsig.fmap.dal.feature.FeatureType" mandatory="false">
24
          <description>The definition of the structure of the store</description>
25
        </field>    
26
      </fields>
27
    </class>
28

    
29
    <class name="SpatialProvider" namespace="metadata">
30
      <extends>
31
              <class namespace="metadata" name="FeatureProvider"/>
32
      </extends>
33
      <description>Metadata of a feature store with spatial support</description>
34
      <fields>
35
        <field name="CRS" type="crs" mandatory="false">
36
          <description></description>
37
        </field>    
38
        <field name="Envelope" type="envelope" mandatory="false">
39
          <description></description>
40
        </field>    
41
      </fields>
42
    </class>
43

    
44
  </classes>
45
</definitions>