package carrentaldatabase.db;

import hu.elte.inf.pszt.prt.javalib.db.jpa.EntityWithID;
import java.io.Serializable;
import javax.persistence.*;

/**
 * @author Daniel "3ICE" Berezvai
 */
@Entity
public class Vehicle implements Serializable, EntityWithID {

private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Integer id;

public Integer getId() {
  return id;
}

public void setId(Integer id) {
  this.id = id;
}

@Override
public int hashCode() {
  int hash = 0;
  hash += (id != null ? id.hashCode() : 0);
  return hash;
}

@Override
public boolean equals(Object object) {
  // TODO: Warning - this method won't work in the case the id fields are not set
  if (!(object instanceof Vehicle)) {
    return false;
  }
  Vehicle other = (Vehicle) object;
  if ((this.id == null && other.id != null) || (this.id != null && !this.id.
                                                equals(other.id))) {
    return false;
  }
  return true;
}

@Override
public String toString() {
  return "carrentaldatabase.Vehicle[ id=" + id + " ]";
}
private String plate;

public String getPlate() {
  return plate;
}

public void setPlate(String plate) {
  this.plate = plate;
}
private String manufacturer;

public String getManufacturer() {
  return manufacturer;
}

public void setManufacturer(String manufacturer) {
  this.manufacturer = manufacturer;
}
private String type;

public String getType() {
  return type;
}

public void setType(String type) {
  this.type = type;
}
private int yearOfProduction;

public int getYear() {
  return yearOfProduction;
}

public void setYear(int year) {
  this.yearOfProduction = year;
}
private int pricePerDay;

public int getPricePerDay() {
  return pricePerDay;
}

public void setPricePerDay(int pricePerDay) {
  this.pricePerDay = pricePerDay;
}
}
