StockTypeMapping.java

package org.oxerr.stubhub.client.model;

public class StockTypeMapping {

	private Integer priority;

	private String stockType;

	public Integer getPriority() {
		return priority;
	}

	public void setPriority(Integer priority) {
		this.priority = priority;
	}

	public String getStockType() {
		return stockType;
	}

	public void setStockType(String stockType) {
		this.stockType = stockType;
	}

}