com.supermap.services.providers
Class AggregationDataProviderSetting
- java.lang.Object
-
- com.supermap.services.components.spi.DataProviderSetting
-
- com.supermap.services.providers.AggregationDataProviderSetting
-
- All Implemented Interfaces:
- java.io.Serializable
public class AggregationDataProviderSetting extends DataProviderSetting
The data aggregation service provider set class.
Provides the setting for information aggregation service provider information.
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.supermap.services.components.spi.DataProviderSetting
maxFeatures
-
-
Constructor Summary
Constructors Constructor and Description AggregationDataProviderSetting()Default constructor.AggregationDataProviderSetting(AggregationDataProviderSetting dataSetting)Copy constructor.
-
Method Summary
Methods Modifier and Type Method and Description java.lang.StringgetDescription()Obtain the aggregated data source description information after the aggregationjava.lang.StringgetName()Gets the name of the data source after the aggregationvoidsetDescription(java.lang.String description)Set the aggregated data source description informationvoidsetName(java.lang.String name)Sets the name of the aggregated data source-
Methods inherited from class com.supermap.services.components.spi.DataProviderSetting
equals, getMaxFeatures, hashCode, setMaxFeatures
-
-
-
-
Constructor Detail
-
AggregationDataProviderSetting
public AggregationDataProviderSetting()
Default constructor.
-
AggregationDataProviderSetting
public AggregationDataProviderSetting(AggregationDataProviderSetting dataSetting)
Copy constructor.
- Parameters:
dataSetting- The AggregationDataProviderSetting object to be copied
-
-
Method Detail
-
getName
public java.lang.String getName()
Gets the name of the data source after the aggregation
- Returns:
- Gets the name of the data source after the aggregation.
-
setName
public void setName(java.lang.String name)
Sets the name of the aggregated data source
- Parameters:
name- the name of the data source after the aggregation
-
getDescription
public java.lang.String getDescription()
Obtain the aggregated data source description information after the aggregation
- Returns:
- the data source description information after the aggregation
-
setDescription
public void setDescription(java.lang.String description)
Set the aggregated data source description information
- Parameters:
description- Data source description information after aggregation
-
-