-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #844 from AtlasOfLivingAustralia/spatial-object-query
Spatial object query
- Loading branch information
Showing
8 changed files
with
195 additions
and
838 deletions.
There are no files selected for viewing
85 changes: 85 additions & 0 deletions
85
src/main/java/au/org/ala/biocache/dto/SpatialObjectDTO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
package au.org.ala.biocache.dto; | ||
|
||
public class SpatialObjectDTO { | ||
Double area_km; | ||
String bbox; | ||
String name; | ||
String description; | ||
String fieldname; | ||
String pid; | ||
String id; | ||
String fid; | ||
String wmsurl; | ||
|
||
public Double getArea_km() { | ||
return area_km; | ||
} | ||
|
||
public void setArea_km(Double area_km) { | ||
this.area_km = area_km; | ||
} | ||
|
||
public String getBbox() { | ||
return bbox; | ||
} | ||
|
||
public void setBbox(String bbox) { | ||
this.bbox = bbox; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
|
||
public String getDescription() { | ||
return description; | ||
} | ||
|
||
public void setDescription(String description) { | ||
this.description = description; | ||
} | ||
|
||
public String getFieldname() { | ||
return fieldname; | ||
} | ||
|
||
public void setFieldname(String fieldname) { | ||
this.fieldname = fieldname; | ||
} | ||
|
||
public String getPid() { | ||
return pid; | ||
} | ||
|
||
public void setPid(String pid) { | ||
this.pid = pid; | ||
} | ||
|
||
public String getId() { | ||
return id; | ||
} | ||
|
||
public void setId(String id) { | ||
this.id = id; | ||
} | ||
|
||
public String getFid() { | ||
return fid; | ||
} | ||
|
||
public void setFid(String fid) { | ||
this.fid = fid; | ||
} | ||
|
||
public String getWmsurl() { | ||
return wmsurl; | ||
} | ||
|
||
public void setWmsurl(String wmsurl) { | ||
this.wmsurl = wmsurl; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.