All Downloads are FREE. Search and download functionalities are using the official Maven repository.

quickfix.fix40.AllocationACK Maven / Gradle / Ivy

There is a newer version: 2.3.1
Show newest version

package quickfix.fix40;

import quickfix.FieldNotFound;


public class AllocationACK extends Message {

	static final long serialVersionUID = 20050617;
	public static final String MSGTYPE = "P";
	

	public AllocationACK() {
		super();
		getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
	}
	
	public AllocationACK(quickfix.field.AllocID allocID, quickfix.field.TradeDate tradeDate, quickfix.field.AllocStatus allocStatus) {
		this();
		setField(allocID);
		setField(tradeDate);
		setField(allocStatus);
	}
	
	public void set(quickfix.field.ClientID value) {
		setField(value);
	}

	public quickfix.field.ClientID get(quickfix.field.ClientID value) throws FieldNotFound {
		getField(value);
		return value;
	}

	public quickfix.field.ClientID getClientID() throws FieldNotFound {
		return get(new quickfix.field.ClientID());
	}

	public boolean isSet(quickfix.field.ClientID field) {
		return isSetField(field);
	}

	public boolean isSetClientID() {
		return isSetField(109);
	}

	public void set(quickfix.field.ExecBroker value) {
		setField(value);
	}

	public quickfix.field.ExecBroker get(quickfix.field.ExecBroker value) throws FieldNotFound {
		getField(value);
		return value;
	}

	public quickfix.field.ExecBroker getExecBroker() throws FieldNotFound {
		return get(new quickfix.field.ExecBroker());
	}

	public boolean isSet(quickfix.field.ExecBroker field) {
		return isSetField(field);
	}

	public boolean isSetExecBroker() {
		return isSetField(76);
	}

	public void set(quickfix.field.AllocID value) {
		setField(value);
	}

	public quickfix.field.AllocID get(quickfix.field.AllocID value) throws FieldNotFound {
		getField(value);
		return value;
	}

	public quickfix.field.AllocID getAllocID() throws FieldNotFound {
		return get(new quickfix.field.AllocID());
	}

	public boolean isSet(quickfix.field.AllocID field) {
		return isSetField(field);
	}

	public boolean isSetAllocID() {
		return isSetField(70);
	}

	public void set(quickfix.field.TradeDate value) {
		setField(value);
	}

	public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
		getField(value);
		return value;
	}

	public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
		return get(new quickfix.field.TradeDate());
	}

	public boolean isSet(quickfix.field.TradeDate field) {
		return isSetField(field);
	}

	public boolean isSetTradeDate() {
		return isSetField(75);
	}

	public void set(quickfix.field.TransactTime value) {
		setField(value);
	}

	public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
		getField(value);
		return value;
	}

	public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
		return get(new quickfix.field.TransactTime());
	}

	public boolean isSet(quickfix.field.TransactTime field) {
		return isSetField(field);
	}

	public boolean isSetTransactTime() {
		return isSetField(60);
	}

	public void set(quickfix.field.AllocStatus value) {
		setField(value);
	}

	public quickfix.field.AllocStatus get(quickfix.field.AllocStatus value) throws FieldNotFound {
		getField(value);
		return value;
	}

	public quickfix.field.AllocStatus getAllocStatus() throws FieldNotFound {
		return get(new quickfix.field.AllocStatus());
	}

	public boolean isSet(quickfix.field.AllocStatus field) {
		return isSetField(field);
	}

	public boolean isSetAllocStatus() {
		return isSetField(87);
	}

	public void set(quickfix.field.AllocRejCode value) {
		setField(value);
	}

	public quickfix.field.AllocRejCode get(quickfix.field.AllocRejCode value) throws FieldNotFound {
		getField(value);
		return value;
	}

	public quickfix.field.AllocRejCode getAllocRejCode() throws FieldNotFound {
		return get(new quickfix.field.AllocRejCode());
	}

	public boolean isSet(quickfix.field.AllocRejCode field) {
		return isSetField(field);
	}

	public boolean isSetAllocRejCode() {
		return isSetField(88);
	}

	public void set(quickfix.field.Text value) {
		setField(value);
	}

	public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
		getField(value);
		return value;
	}

	public quickfix.field.Text getText() throws FieldNotFound {
		return get(new quickfix.field.Text());
	}

	public boolean isSet(quickfix.field.Text field) {
		return isSetField(field);
	}

	public boolean isSetText() {
		return isSetField(58);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy