Changes between Version 28 and Version 29 of FDORfc6


Ignore:
Timestamp:
Jul 31, 2007, 1:45:43 AM (17 years ago)
Author:
yangm
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FDORfc6

    v28 v29  
    88||RFC Template Version||1.0||
    99||Submission Date||Jul 20, 2007 ||
    10 ||Last Modified||Greg Boone [[Timestamp]]||
     10||Last Modified||Maggie Yang [[Timestamp]]||
    1111||Author||Maggie Yang||
    1212||RFC Status||Draft||
     
    3131
    3232The following section defines the WMS command enumerations.
     33
    3334Unmanaged API:
    3435{{{
     
    6566
    6667    WmsCommandType_GetImagefromats =  NAMESPACE_OSGEO_FDO_COMMANDS::CommandType::CommandType_FirstProviderCommand +  WMS_FIRST_PROVIDER_COMMAND,
    67           WmsCommandType_GetFeatureClassStyles,
     68    WmsCommandType_GetFeatureClassStyles,
    6869    WmsCommandType_GetFeatureClassCRSNames
    6970};
     
    7273}}}
    7374
    74 3 new commands will be added to the FDO WMS Provider specification, allowing an application to request image fromat, style and CRS name infromation. These commands willonly be able to be invoked once a connection has successfully been made to the WMS provider and in turn to the specified WMS service.
     753 new commands will be added to the FDO WMS Provider specification, allowing an application to request image fromat, style and CRS name infromation. These commands will only be able to be invoked once a connection has successfully been made to the WMS provider and in turn to the specified WMS service.
    7576
    7677=== Get Image fromats Command ===
     
    105106    /// Executes the command.
    106107    ///</summary>
    107     /// <returns>Returns a list of image fromats supportted by WMS service.</returns>
     108    /// <returns>Returns image fromats collection supportted by WMS service.</returns>
    108109    NAMESPACE_OSGEO_COMMON::StringCollection* Execute();
    109110};
     
    115116
    116117''NOTE: A !FeatureClass is an FDO concept. One feature class corresponds to one layer name in the originating WMS service. We use feature class, instead of layer here, in order to remain consistant with the feature concepts defined in the FDO API.''
     118
    117119Unmanaged API
    118120{{{
     
    160162
    161163///<summary>
    162 /// This command get the styles list supportted by specified FeatureClass
     164/// This command get the styles collection supportted by specific FeatureClass
    163165/// from WMS service.
    164166///</summary>
     
    174176    __property System::Void set_FeatureClassName(System::String* name);
    175177
    176     /// <summary>Gets the name of FeatureClass to get the supportted styles.
     178    /// <summary>Gets the name of FeatureClass to retrieve all supported styles.
    177179    /// </summary>
    178180    /// <returns>Returns the name of the FeatureClass name.</returns>
     
    183185    /// </summary>
    184186    /// <returns>
    185     /// Return a StringCollection
    186     /// which contains all styles supported by specified feature class
     187    /// Return a StringCollection which contains all styles supported by specific feature class
    187188    /// and all styles supported by its ancestors. WMS services support Style
    188189    /// declarations inherited by child Layers.
     
    197198
    198199''NOTE: A !FeatureClass is an FDO concept. One feature class corresponds to one layer name in the originating WMS service. We use feature class, instead of layer here, in order to remain consistant with the feature concepts defined in the FDO API.''
     200
    199201Unmanaged API
    200202{{{
     
    203205public:
    204206    /// \brief
    205     /// Gets the name of the FeatureClass to get all supported CRS names.
     207    /// Gets the name of the FeatureClass to retrieve all supported CRS names.
    206208    ///
    207209    /// \return
     
    242244
    243245///<summary>
    244 /// This command get the CRS names list supportted by specified FeatureClass
     246/// This command get the CRS names collection supported by specified FeatureClass
    245247/// from WMS service.
    246248///</summary>
     
    256258    __property System::Void set_FeatureClassName(System::String* name);
    257259
    258     /// <summary>Gets the name of FeatureClass to get the supportted CRS names.
     260    /// <summary>Gets the name of FeatureClass to retrieve all supported CRS names.
    259261    /// </summary>
    260262    /// <returns>Returns the name of the FeatureClass name.</returns>
     
    265267    /// </summary>
    266268    /// <returns>
    267     /// Returns an StringCollection
    268     /// which contains all the CRS names supported by specified feature class.
     269    /// Returns an StringCollection which contains all the CRS names supported by specific feature class.
    269270    /// and all CRS names supported by its ancestors. WMS services supports CRS
    270271    /// declarations inherited by child Layers.