Skip to content
Snippets Groups Projects
Commit 635de77e authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

Add site class

parent 42c22a7c
No related branches found
No related tags found
2 merge requests!109Production Release,!107AASHTO Updates
...@@ -198,12 +198,15 @@ public abstract class NetcdfService<T extends Query> { ...@@ -198,12 +198,15 @@ public abstract class NetcdfService<T extends Query> {
} }
static class ResponseMetadata { static class ResponseMetadata {
public NehrpSiteClass siteClass;
public String xLabel; public String xLabel;
public String yLabel; public String yLabel;
ResponseMetadata( ResponseMetadata(
NehrpSiteClass siteClass,
String xLabel, String xLabel,
String yLabel) { String yLabel) {
this.siteClass = siteClass;
this.xLabel = xLabel; this.xLabel = xLabel;
this.yLabel = yLabel; this.yLabel = yLabel;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment