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

quickfix.fix44.SequenceReset 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.fix44;



public class SequenceReset extends Message {

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

	public SequenceReset() {
		super();
		getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
	}
	
	public SequenceReset(quickfix.field.NewSeqNo newSeqNo) {
		this();
		setField(newSeqNo);
	}
	
	public void set(quickfix.field.GapFillFlag value) {
		setField(value);
	}

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

	public quickfix.field.GapFillFlag getGapFillFlag() throws quickfix.FieldNotFound {
		return get(new quickfix.field.GapFillFlag());
	}

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

	public boolean isSetGapFillFlag() {
		return isSetField(123);
	}

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

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

	public quickfix.field.NewSeqNo getNewSeqNo() throws quickfix.FieldNotFound {
		return get(new quickfix.field.NewSeqNo());
	}

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

	public boolean isSetNewSeqNo() {
		return isSetField(36);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy