com.supermap.services.providers
Class WFSDataProviderSetting
- java.lang.Object
-
- com.supermap.services.components.spi.DataProviderSetting
-
- com.supermap.services.providers.WFSDataProviderSetting
-
- All Implemented Interfaces:
- OGCProviderSetting, java.io.Serializable
public class WFSDataProviderSetting extends DataProviderSetting implements OGCProviderSetting
WFS data service provider setting class.
Used to set up WFS data 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 WFSDataProviderSetting()
-
Method Summary
Methods Modifier and Type Method and Description booleanequals(java.lang.Object obj)Compare whether the specified object is equal to the current object.java.lang.StringgetIdMappingClassName()Gets the FeatureID converter class name.java.lang.StringgetPassword()Gets access password.java.lang.StringgetServiceRootURL()Gets the root directory of the WFS service.java.lang.StringgetUserName()Gets the username.inthashCode()Gets the hash value of the object instancevoidsetIdMappingClassName(java.lang.String idMappingClassName)Sets the FeatureID converter class name.voidsetPassword(java.lang.String password)Sets access password.voidsetServiceRootURL(java.lang.String serviceRootURL)Sets the root directory of the WFS service.voidsetUserName(java.lang.String userName)Sets the user name.-
Methods inherited from class com.supermap.services.components.spi.DataProviderSetting
getMaxFeatures, setMaxFeatures
-
-
-
-
Method Detail
-
getServiceRootURL
public java.lang.String getServiceRootURL()
Gets the root directory of the WFS service.
- Specified by:
getServiceRootURLin interfaceOGCProviderSetting- Returns:
- WFS the root directory of the WFS service.
-
setServiceRootURL
public void setServiceRootURL(java.lang.String serviceRootURL)
Sets the root directory of the WFS service.
- Parameters:
serviceRootURL- A URI string that identifies the WFS service root.
-
getUserName
public java.lang.String getUserName()
Gets the username.
- Returns:
- username.
-
setUserName
public void setUserName(java.lang.String userName)
Sets the user name.
- Parameters:
userName- username.
-
getPassword
public java.lang.String getPassword()
Gets access password.
- Returns:
- access password.
-
setPassword
public void setPassword(java.lang.String password)
Sets access password.
- Parameters:
password- password string.
-
getIdMappingClassName
public java.lang.String getIdMappingClassName()
Gets the FeatureID converter class name.
- Returns:
- idMappingClassName Converter class name.
-
setIdMappingClassName
public void setIdMappingClassName(java.lang.String idMappingClassName)
Sets the FeatureID converter class name.
- Parameters:
idMappingClassName- FeatureID Full name of the converter class, which requires theFeatureIDMappinginterface.
-
equals
public boolean equals(java.lang.Object obj)
Compare whether the specified object is equal to the current object.
- Overrides:
equalsin classDataProviderSetting- Parameters:
obj- the object that is compared with the current object.- Returns:
- Returns true if both objects are equal; false otherwise.
-
hashCode
public int hashCode()
Gets the hash value of the object instance- Overrides:
hashCodein classDataProviderSetting- Returns:
- hash value
-
-