Class VectorLayerDataSource
- java.lang.Object
-
- de.terrestris.shoguncore.model.PersistentObject
-
- de.terrestris.shoguncore.model.layer.source.LayerDataSource
-
- de.terrestris.shoguncore.model.layer.source.VectorLayerDataSource
-
- All Implemented Interfaces:
java.io.Serializable
@Entity public class VectorLayerDataSource extends LayerDataSource
Data source of OpenLayers 3 vector layer- Author:
- Andre Henn, terrestris GmbH & Co. KG
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description VectorLayerDataSource()VectorLayerDataSource(java.lang.String name, java.lang.String type, java.lang.String url, java.lang.String format)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetFormat()inthashCode()voidsetFormat(java.lang.String format)-
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
-
-
-
-
Method Detail
-
getFormat
public java.lang.String getFormat()
- Returns:
- the format
-
setFormat
public void setFormat(java.lang.String format)
- Parameters:
format- the format to set
-
hashCode
public int hashCode()
- Overrides:
hashCodein classLayerDataSource- 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 classLayerDataSource- 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
-
-