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

quickfix.fix41.Reject Maven / Gradle / Ivy


package quickfix.fix41;

import quickfix.FieldNotFound;


public class Reject extends Message {

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

	public Reject() {
		super();
		getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
	}
	
	public Reject(quickfix.field.RefSeqNum refSeqNum) {
		this();
		setField(refSeqNum);
	}
	
	public void set(quickfix.field.RefSeqNum value) {
		setField(value);
	}

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

	public quickfix.field.RefSeqNum getRefSeqNum() throws FieldNotFound {
		return get(new quickfix.field.RefSeqNum());
	}

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

	public boolean isSetRefSeqNum() {
		return isSetField(45);
	}

	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