blob: 97c6f42d9a0a089365cbb06b3091cc9aa18f3d6d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package models.metadata;
public class TwoDVarTimeSeries {
private String dataSource = "";
private String variableName = "";
private String startYearMonth = "";
private String endYearMonth = "";
private String startLat = "";
private String endLat = "";
private String startLon = "";
private String endLon = "";
private String variableScale = "";
private String executionPurpose = "";
private String image = "";
private String dataURL = "";
private String serviceResponseText = "";
public String getStartLon() {
return startLon;
}
public void setStartLon(String startLon) {
this.startLon = startLon;
}
public String getEndLon() {
return endLon;
}
public void setEndLon(String endLon) {
this.endLon = endLon;
}
public String getDataSource() {
return dataSource;
}
public void setDataSource(String dataSource) {
this.dataSource = dataSource;
}
public String getVariableName() {
return variableName;
}
public void setVariableName(String variableName) {
this.variableName = variableName;
}
public String getStartYearMonth() {
return startYearMonth;
}
public void setStartYearMonth(String startYearMonth) {
this.startYearMonth = startYearMonth;
}
public String getEndYearMonth() {
return endYearMonth;
}
public void setEndYearMonth(String endYearMonth) {
this.endYearMonth = endYearMonth;
}
public String getStartLat() {
return startLat;
}
public void setStartLat(String startLat) {
this.startLat = startLat;
}
public String getEndLat() {
return endLat;
}
public void setEndLat(String endLat) {
this.endLat = endLat;
}
public String getVariableScale() {
return variableScale;
}
public void setVariableScale(String variableScale) {
this.variableScale = variableScale;
}
public String getExecutionPurpose() {
return executionPurpose;
}
public void setExecutionPurpose(String executionPurpose) {
this.executionPurpose = executionPurpose;
}
public String getImage() {
return image;
}
public void setImage(String image) {
this.image = image;
}
public String getDataURL() {
return dataURL;
}
public void setDataURL(String dataURL) {
this.dataURL = dataURL;
}
public String getServiceResponseText() {
return serviceResponseText;
}
public void setServiceResponseText(String serviceResponseText) {
this.serviceResponseText = serviceResponseText;
}
}