/*
 * Created on Mar 13, 2004
 *
 * To change the template for this generated file go to
 * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
 */
package customerSession;

import java.io.Serializable;

/**
 * @author mkerr
 *
 * To change the template for this generated type comment go to
 * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
 */
public class CustomerInput implements Serializable {
	private short customerWarehouseId;
	private short customerDistrictId;
	private short customerId;
	private java.lang.String customerLastName;
	private boolean byLastName;
	private java.lang.String clientIdentifier;
	private boolean useCmp;
	private boolean distributed;
	private short entityType;
	private final static long serialVersionUID = 8306303136386303491L;
	
	/**
	 * CustomerInput constructor comment.
	 */
	public CustomerInput() {
		super();
	}

	/**
	 * @return
	 */
	public boolean isByLastName() {
		return byLastName;
	}

	/**
	 * @return
	 */
	public short getCustomerId() {
		return customerId;
	}

	/**
	 * @return
	 */
	public java.lang.String getCustomerLastName() {
		return customerLastName;
	}

	/**
	 * @param b
	 */
	public void setByLastName(boolean b) {
		byLastName = b;
	}

	/**
	 * @param s
	 */
	public void setCustomerId(short s) {
		customerId = s;
	}

	/**
	 * @param string
	 */
	public void setCustomerLastName(java.lang.String string) {
		customerLastName = string;
	}

	/**
	 * @return
	 */
	public short getCustomerDistrictId() {
		return customerDistrictId;
	}

	/**
	 * @return
	 */
	public short getCustomerWarehouseId() {
		return customerWarehouseId;
	}

	/**
	 * @param s
	 */
	public void setCustomerDistrictId(short s) {
		customerDistrictId = s;
	}

	/**
	 * @param s
	 */
	public void setCustomerWarehouseId(short s) {
		customerWarehouseId = s;
	}

	/**
	 * @return
	 */
	public boolean isUseCmp() {
		return useCmp;
	}

	/**
	 * @param b
	 */
	public void setUseCmp(boolean b) {
		useCmp = b;
	}

	/**
	 * @return
	 */
	public java.lang.String getClientIdentifier() {
		return clientIdentifier;
	}

	/**
	 * @param string
	 */
	public void setClientIdentifier(java.lang.String string) {
		clientIdentifier = string;
	}

	/**
	 * @return
	 */
	public short getEntityType() {
		return entityType;
	}

	/**
	 * @param s
	 */
	public void setEntityType(short s) {
		entityType = s;
	}

	/**
	 * @return
	 */
	public boolean isDistributed() {
		return distributed;
	}

	/**
	 * @param b
	 */
	public void setDistributed(boolean b) {
		distributed = b;
	}

}
