

class Vehicle {

	private String vin = null;
	private String model = null;
	private String make = null;

	public Vehicle (String vin) {
		this.vin = vin;
	}

	public Vehicle(String vin, String make, String model) {
		this.vin = vin;
		this.make = make;
		this.model = model;
	}

	// getters

	public String getVIN() { return vin; }
	public String getMake() { return make; }	
	public String getModel() { return model; }

	// setter

	public void setMake(String make) { 
		this.make = make; 
	}

	public void setModel(String model) {
		this.model = model;
	}

	


}
