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

quickfix.fix41.Reject Maven / Gradle / Ivy

Go to download

QuickFixJ is one of such libraries we depend on and which was modified by Exactpro.

The newest version!

package quickfix.fix41;



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 quickfix.FieldNotFound {
		getField(value);
		return value;
	}

	public quickfix.field.RefSeqNum getRefSeqNum() throws quickfix.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 quickfix.FieldNotFound {
		getField(value);
		return value;
	}

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

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy