| |
|
| java.lang.Object org.vfny.geoserver.config.CoverageStoreConfig
CoverageStoreConfig | public class CoverageStoreConfig (Code) | | DataFormatInfo purpose.
Used to describe a coverage format, typically one specified in the
catalog.xml config file.
author: dzwiers, Refractions Research, Inc. author: $Author: Alessio Fabiani (alessio.fabiani@gmail.com) $ (last author: modification) author: $Author: Simone Giannecchini (simboss1@gmail.com) $ (last author: modification) |
Constructor Summary | |
public | CoverageStoreConfig(String dataFormatId, String factoryDescription) Create a new CoverageStoreConfig from a dataFormatId and factoryDescription
Creates a DataFormatInfo to represent an instance with default data. | public | CoverageStoreConfig(String dataFormatId, Format factory) Creates a new CoverageStoreConfig for the provided factory (Format). | public | CoverageStoreConfig(CoverageStoreInfoDTO dto) DataFormatInfo constructor.
Creates a copy of the DataFormatInfoDTO provided. |
CoverageStoreConfig | public CoverageStoreConfig(String dataFormatId, String factoryDescription)(Code) | | Create a new CoverageStoreConfig from a dataFormatId and factoryDescription
Creates a DataFormatInfo to represent an instance with default data.
Parameters: dataFormatId - Description of Format (see CoverageStoreUtils) Parameters: factoryDescription - DOCUMENT ME! See Also: defaultSettings() |
CoverageStoreConfig | public CoverageStoreConfig(String dataFormatId, Format factory)(Code) | | Creates a new CoverageStoreConfig for the provided factory (Format).
|
CoverageStoreConfig | public CoverageStoreConfig(CoverageStoreInfoDTO dto)(Code) | | DataFormatInfo constructor.
Creates a copy of the DataFormatInfoDTO provided. All the datastructures
are cloned.
Parameters: dto - The format to copy. |
findDataFormat | public Format findDataFormat(ServletContext sc) throws IOException(Code) | | It would be nice if we did not throw this away - but life is too short
Real Format generated by this CoverageStoreConfig throws: IOException - If Format could not be aquired |
getAbstract | public String getAbstract()(Code) | | getAbstract purpose.
Description ...
|
getFactory | public Format getFactory()(Code) | | Returns the factory. |
getTitle | public String getTitle()(Code) | | getTitle purpose.
Description ...
|
isEnabled | public boolean isEnabled()(Code) | | isEnabled purpose.
Description ...
|
setAbstract | public void setAbstract(String string)(Code) | | setAbstract purpose.
Description ...
Parameters: string - |
setEnabled | public void setEnabled(boolean b)(Code) | | setEnabled purpose.
Description ...
Parameters: b - |
setFactory | public void setFactory(Format factory)(Code) | | Parameters: factory - The factory to set. |
setNameSpaceId | public void setNameSpaceId(String nameSpaceId)(Code) | | |
setTitle | public void setTitle(String string)(Code) | | setTitle purpose.
Description ...
Parameters: string - |
setType | public void setType(String type)(Code) | | Parameters: type - The type to set. |
setUrl | public void setUrl(String url)(Code) | | Parameters: url - The url to set. |
toDTO | public CoverageStoreInfoDTO toDTO()(Code) | | Implement toDTO.
Create a DataFormatInfoDTO from the current config object.
The data represented as a DataFormatInfoDTO See Also: org.vfny.geoserver.config.DataStructure.toDTO |
update | public void update(CoverageStoreInfoDTO df)(Code) | | Implement loadDTO.
Populates the data fields with the DataFormatInfoDTO provided.
Parameters: df - the DataFormatInfoDTO to use. throws: NullPointerException - DOCUMENT ME! See Also: org.vfny.geoserver.config.DataStructure.loadDTO(java.lang.Object) |
|
|
|