-
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 remote-tracking branch 'origin/develop'
# Conflicts: # build.gradle
- Loading branch information
Showing
14 changed files
with
292 additions
and
867 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,7 @@ repositories { | |
} | ||
|
||
group = 'au.org.ala' | ||
version = '3.2.1' | ||
version = '3.2.2' | ||
|
||
|
||
boolean inplace = false | ||
|
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
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
Oops, something went wrong.