blob: d9ada61e447fc13b8c693d7432c5e368465b8e40 [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;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
@Entity
public class Parameter {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private long id;
@ManyToOne(optional = false)
@JoinColumn(name = "serviceId", referencedColumnName = "id")
private ClimateService climateService;
private long indexInService;
private String name;
private String dataRange;
private String rule;
private String purpose;
public Parameter() {
}
public Parameter(ClimateService climateService, long indexInService,
String name, String dataRange,
String rule, String purpose) {
super();
this.climateService = climateService;
this.indexInService = indexInService;
this.name = name;
this.dataRange = dataRange;
this.rule = rule;
this.purpose = purpose;
}
public long getId() {
return id;
}
public ClimateService getClimateService() {
return climateService;
}
public void setClimateService(ClimateService climateService) {
this.climateService = climateService;
}
public long getIndexInService() {
return indexInService;
}
public void setIndexInService(long indexInService) {
this.indexInService = indexInService;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDataRange() {
return dataRange;
}
public void setDataRange(String dataRange) {
this.dataRange = dataRange;
}
public String getRule() {
return rule;
}
public void setRule(String rule) {
this.rule = rule;
}
public String getPurpose() {
return purpose;
}
public void setPurpose(String purpose) {
this.purpose = purpose;
}
@Override
public String toString() {
return "Parameter [id=" + id + ", climateService=" + climateService
+ ", indexInService=" + indexInService + ", name=" + name
+ ", dataRange=" + dataRange
+ ", rule=" + rule + ", purpose=" + purpose + "]";
}
}