Class TileWmsLayerDataSource
- java.lang.Object
-
- de.terrestris.shoguncore.model.PersistentObject
-
- de.terrestris.shoguncore.model.layer.source.LayerDataSource
-
- de.terrestris.shoguncore.model.layer.source.ImageWmsLayerDataSource
-
- de.terrestris.shoguncore.model.layer.source.TileWmsLayerDataSource
-
- All Implemented Interfaces:
java.io.Serializable
@Entity public class TileWmsLayerDataSource extends ImageWmsLayerDataSource
Data source of layers for tile data from WMS servers.- Author:
- Andre Henn, terrestris GmbH & Co. KG
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TileWmsLayerDataSource()default constructorTileWmsLayerDataSource(java.lang.String name, java.lang.String type, java.lang.String url, int width, int height, java.lang.String version, java.lang.String layerNames, java.lang.String layerStyles, TileGrid tileGrid)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.BooleangetRequestWithTiled()TileGridgetTileGrid()inthashCode()voidsetRequestWithTiled(java.lang.Boolean requestWithTiled)voidsetTileGrid(TileGrid tileGrid)-
Methods inherited from class de.terrestris.shoguncore.model.layer.source.ImageWmsLayerDataSource
getCustomRequestPath, getHeight, getLayerNames, getLayerStyles, getRequestableByPath, getVersion, getWidth, setCustomRequestPath, setHeight, setLayerNames, setLayerStyles, setRequestableByPath, setVersion, setWidth
-
Methods inherited from class de.terrestris.shoguncore.model.layer.source.LayerDataSource
getName, getType, getUrl, setName, setType, setUrl
-
Methods inherited from class de.terrestris.shoguncore.model.PersistentObject
getCreated, getGroupPermissions, getId, getModified, getUserPermissions, setGroupPermissions, setModified, setUserPermissions, toString
-
-
-
-
Constructor Detail
-
TileWmsLayerDataSource
public TileWmsLayerDataSource()
default constructor
-
TileWmsLayerDataSource
public TileWmsLayerDataSource(java.lang.String name, java.lang.String type, java.lang.String url, int width, int height, java.lang.String version, java.lang.String layerNames, java.lang.String layerStyles, TileGrid tileGrid)- Parameters:
name-type-url-width-height-version-layerNames-layerStyles-tileGrid-
-
-
Method Detail
-
getTileGrid
public TileGrid getTileGrid()
- Returns:
- the tileGrid
-
setTileGrid
public void setTileGrid(TileGrid tileGrid)
- Parameters:
tileGrid- the tileGrid to set
-
getRequestWithTiled
public java.lang.Boolean getRequestWithTiled()
- Returns:
- the requestWithTiled
-
setRequestWithTiled
public void setRequestWithTiled(java.lang.Boolean requestWithTiled)
- Parameters:
requestWithTiled- the requestWithTiled to set
-
hashCode
public int hashCode()
- Overrides:
hashCodein classImageWmsLayerDataSource- See Also:
According to http://stackoverflow.com/questions/27581/overriding-equals -and-hashcode-in-java it is recommended only to use getter-methods when using ORM like Hibernate
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classImageWmsLayerDataSource- See Also:
According to http://stackoverflow.com/questions/27581/overriding-equals -and-hashcode-in-java it is recommended only to use getter-methods when using ORM like Hibernate
-
-