Class LayerDataSource
- java.lang.Object
-
- de.terrestris.shoguncore.model.PersistentObject
-
- de.terrestris.shoguncore.model.layer.source.LayerDataSource
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ImageWmsLayerDataSource,WfsLayerDataSource,WmtsLayerDataSource,XyzLayerDataSource
@Entity public abstract class LayerDataSource extends PersistentObject
Base class for all layer datasources- Author:
- Andre Henn, terrestris GmbH & Co. KG
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LayerDataSource()default constructorLayerDataSource(String name, String type, String url, String format)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)StringgetFormat()StringgetName()StringgetType()StringgetUrl()inthashCode()voidsetFormat(String format)voidsetName(String name)voidsetType(String type)voidsetUrl(String url)-
Methods inherited from class de.terrestris.shoguncore.model.PersistentObject
getCreated, getGroupPermissions, getId, getModified, getUserPermissions, setGroupPermissions, setModified, setUserPermissions, toString
-
-
-
-
Method Detail
-
getName
public String getName()
- Returns:
- the name
-
setName
public void setName(String name)
- Parameters:
name- the name to set
-
getType
public String getType()
- Returns:
- the type
-
setType
public void setType(String type)
- Parameters:
type- the type to set
-
getUrl
public String getUrl()
- Returns:
- the url
-
setUrl
public void setUrl(String url)
- Parameters:
url- the url to set
-
getFormat
public String getFormat()
- Returns:
- the format
-
setFormat
public void setFormat(String format)
- Parameters:
format- the format to set
-
hashCode
public int hashCode()
-
equals
public boolean equals(Object obj)
-
-