Revision 37809

View differences:

branches/v2_0_0_prep/libraries/libFMap_dal/resources/api/org/gvsig/fmap/dal/spi/ProviderParametersDefinition.xml
5 5
    <class namespace="dal" name="ProviderParameters">
6 6
      <description>Parameters used for open a store</description>
7 7
      <fields>
8
        <field name="ProviderName" type="string" mandatory="true" group="Other">
8
        <field name="ProviderName" type="string" mandatory="true" group="Advanced">
9 9
          <description>Name of the provider</description>
10 10
        </field>
11 11
      </fields>
branches/v2_0_0_prep/libraries/libFMap_daldb/resources/jdbc/org/gvsig/fmap/dal/store/jdbc/JDBCParameters.xml
8 8
        <class>DBResourceParameters</class>
9 9
      </extends>
10 10
      <fields>
11
        <field name="JDBCDriverClass" type="string" mandatory="true" group="Other">
11
        <field name="JDBCDriverClass" type="string" mandatory="true" group="Advanced">
12 12
          <description>JDBC Driver class</description>
13 13
        </field>
14 14
        <field name="URL" type="string" mandatory="true" group="Connection">
15 15
          <description>JDBC url connection</description>
16 16
        </field>
17
        <field name="Catalog" type="string" mandatory="false">
17
        <field name="Catalog" type="string" mandatory="false" group="Basic">
18 18
          <description>Database catalog</description>
19 19
        </field>
20
        <field name="Schema" type="string" mandatory="false">
20
        <field name="Schema" type="string" mandatory="false" group="Basic">
21 21
          <description>Database schema</description>
22 22
        </field>
23 23
      </fields>
......
49 49
        <class>DBServerExplorerParameters</class>
50 50
      </extends>
51 51
      <fields>
52
        <field name="ShowInformationDBTables" type="boolean" mandatory="false" defaultValue="false">
52
        <field name="ShowInformationDBTables" type="boolean" 
53
            mandatory="false" defaultValue="false" group="Basic">
53 54
          <description>Show information tables</description>
54 55
        </field>
55 56
      </fields>
branches/v2_0_0_prep/libraries/libFMap_daldb/resources/postgresql/org/gvsig/fmap/dal/store/postgresql/PostgreSQLParameters.xml
8 8
      </extends>
9 9
      <fields>
10 10
        <field name="JDBCDriverClass" type="string" mandatory="true"
11
          defaultValue="org.postgresql.Driver" group="Other">
11
          defaultValue="org.postgresql.Driver" group="Advanced">
12 12
          <description>JDBC Driver class</description>
13 13
        </field>
14 14
		<field name="port" type="integer" mandatory="false"
......
16 16
          <description></description>
17 17
        </field>
18 18
        <field name="UseSSL" type="boolean" mandatory="false"
19
          defaultValue="false">
19
          defaultValue="false" group="Basic">
20 20
          <description>Use SSL connetion</description>
21 21
        </field>
22 22
      </fields>
branches/v2_0_0_prep/libraries/libFMap_daldb/resources/mysql/org/gvsig/fmap/dal/store/mysql/MySQLParameters.xml
8 8
      </extends>
9 9
      <fields>
10 10
        <field name="JDBCDriverClass" type="string" mandatory="true"
11
          defaultValue="com.mysql.jdbc.Driver">
11
          defaultValue="com.mysql.jdbc.Driver" group="Advanced">
12 12
          <description>JDBC Driver class</description>
13 13
        </field>
14 14
		<field name="port" type="integer" mandatory="false"
15
          defaultValue="3306">
15
          defaultValue="3306" group="Basic">
16 16
          <description></description>
17 17
        </field>
18 18
        <field name="UseSSL" type="boolean" mandatory="false"
19
          defaultValue="false">
19
          defaultValue="false" group="Basic">
20 20
          <description>Use SSL connetion</description>
21 21
        </field>
22 22
      </fields>
branches/v2_0_0_prep/libraries/libFMap_daldb/resources/api/org/gvsig/fmap/dal/resource/db/DBParameters.xml
15 15
          <description></description>
16 16
        </field>
17 17

  
18
        <field name="dbname" type="string" mandatory="false">
18
        <field name="dbname" type="string" mandatory="false" group="Basic">
19 19
          <description></description>
20 20
        </field>
21
        <field name="dbuser" type="string" mandatory="false">
21
        <field name="dbuser" type="string" mandatory="false" group="Basic">
22 22
          <description></description>
23 23
        </field>
24
        <field name="password" type="string" mandatory="false">
24
        <field name="password" type="string" mandatory="false" group="Basic">
25 25
          <description></description>
26 26
        </field>
27 27
      </fields>
branches/v2_0_0_prep/libraries/libFMap_daldb/resources/api/org/gvsig/fmap/dal/store/db/DBParameters.xml
10 10
      </extends>
11 11
      <fields>
12 12
		<!--  Basic data -->
13
        <field name="Table" type="string" mandatory="true">
13
        <field name="Table" type="string" mandatory="true" group="Basic">
14 14
          <description>Name of the table or view to access</description>
15 15
        </field>
16
        <field name="DefaultGeometryField" type="string" mandatory="false">
16
        <field name="DefaultGeometryField" type="string" mandatory="false" 
17
            group="Basic">
17 18
          <description>Default geometry field</description>
18 19
        </field>
19 20

  
branches/v2_0_0_prep/libraries/libFMap_dalfile/resources/dxf/org/gvsig/fmap/dal/store/dxf/DXFParameters.xml
8 8
      </extends>
9 9
      <description>Store the parameters need to open a dxf file</description>
10 10
      <fields>
11
        <field name="File" type="file" mandatory="true">
11
        <field name="File" type="file" mandatory="true" group="Basic">
12 12
          <description>dxf file</description>
13 13
        </field>
14
        <field name="CRS" type="crs" mandatory="true">
14
        <field name="CRS" type="crs" mandatory="true" group="Basic">
15 15
          <description>The coordinate reference system used in this dxf file</description>
16 16
        </field>
17 17
      </fields>
branches/v2_0_0_prep/libraries/libFMap_dalfile/resources/shp/org/gvsig/fmap/dal/store/shp/SHPParameters.xml
10 10
			<description>Store the parameters need to open a shp file
11 11
			</description>
12 12
			<fields>
13
				<field name="dbfFile" type="file" mandatory="false">
13
				<field name="dbfFile" type="file" mandatory="false" group="Basic">
14 14
					<description>dbf file</description>
15 15
				</field>
16
				<field name="shxFile" type="file" mandatory="false">
16
				<field name="shxFile" type="file" mandatory="false" group="Basic">
17 17
					<description>The shx file associated to this shape file
18 18
					</description>
19 19
				</field>
20
				<field name="shpFile" type="file" mandatory="true">
20
				<field name="shpFile" type="file" mandatory="true" group="Basic">
21 21
					<description>The shp file associated to this shape file
22 22
					</description>
23 23
				</field>
24
				<field name="CRS" type="crs" mandatory="true">
24
				<field name="CRS" type="crs" mandatory="true" group="Basic">
25 25
					<description>The coordinate reference system used in this shape
26 26
						file</description>
27 27
				</field>
......
36 36
				<class>DBFNewStoreParameters</class>
37 37
			</extends>
38 38
			<fields>
39
				<field name="geometryType" type="integer" mandatory="true">
39
				<field name="geometryType" type="integer" mandatory="true" group="Basic">
40 40
					<description>Geometry type use Geometry.TYPES</description>
41 41
					<availableValues>
42 42
						<value label="POINT">1</value>
branches/v2_0_0_prep/libraries/libFMap_dalfile/resources/dbf/org/gvsig/fmap/dal/store/dbf/DBFParameters.xml
8 8
      </extends>
9 9
      <description>Store the parameters need to open a dbf file</description>
10 10
      <fields>
11
        <field name="DbfFile" type="file" mandatory="true">
11
        <field name="DbfFile" type="file" mandatory="true" group="Basic">
12 12
          <description>dbf file</description>
13 13
        </field>
14
        <field name="Encoding" type="string" mandatory="false">
14
        <field name="Encoding" type="string" mandatory="false" group="Basic">
15 15
          <description>Encoding used in this file</description>
16 16
          <availableValues>
17 17
          	<value label="(default)"></value>
......
36 36
        <class namespace="dal" name="NewProviderParameters"/>
37 37
      </extends>
38 38
      <fields>
39
        <field name="codePage" type="Integer" mandatory="false">          
39
        <field name="codePage" type="Integer" mandatory="false"  group="Basic">          
40 40
          <description>Code page used in this file</description>
41 41
          <availableValues>
42 42
            <value label="DOS USA">0x01</value>
branches/v2_0_0_prep/extensions/extGPE-gvSIG/resources/org/gvsig/fmap/dal/store/gpe/GPEParameters.xml
8 8
      </extends>
9 9
      <description>Store the parameters need to open a GPE supported file</description>
10 10
      <fields>
11
        <field name="File" type="file" mandatory="true">
11
        <field name="File" type="file" mandatory="true" group="Basic">
12 12
          <description>GPE supported file</description>
13 13
        </field>
14
        <field name="CRS" type="crs" mandatory="true">
14
        <field name="CRS" type="crs" mandatory="true" group="Basic">
15 15
          <description>The coordinate reference system used in this GPE supported file</description>
16 16
        </field>
17 17
      </fields>
branches/v2_0_0_prep/extensions/extDwg/resources/org/gvsig/dwg/fmap/dal/store/dwg/DWGParameters.xml
8 8
      </extends>
9 9
      <description>Store the parameters need to open a dwg file</description>
10 10
      <fields>
11
        <field name="file" type="file" mandatory="true">
11
        <field name="file" type="file" mandatory="true" group="Basic">
12 12
          <description>dwg file</description>
13 13
        </field>
14
        <field name="CRS" type="crs" mandatory="true">
14
        <field name="CRS" type="crs" mandatory="true" group="Basic">
15 15
          <description>The coordinate reference system used in this dwg file</description>
16 16
        </field>
17 17
      </fields>

Also available in: Unified diff