![JAR search and dependency download from the Maven repository](/logo.png)
quickfix.fix40.TestRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quickfixj-core Show documentation
Show all versions of quickfixj-core Show documentation
QuickFixJ is one of such libraries we depend on and which was modified by Exactpro.
The newest version!
package quickfix.fix40;
public class TestRequest extends Message {
static final long serialVersionUID = 20050617;
public static final String MSGTYPE = "1";
public TestRequest() {
super();
getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
}
public TestRequest(quickfix.field.TestReqID testReqID) {
this();
setField(testReqID);
}
public void set(quickfix.field.TestReqID value) {
setField(value);
}
public quickfix.field.TestReqID get(quickfix.field.TestReqID value) throws quickfix.FieldNotFound {
getField(value);
return value;
}
public quickfix.field.TestReqID getTestReqID() throws quickfix.FieldNotFound {
return get(new quickfix.field.TestReqID());
}
public boolean isSet(quickfix.field.TestReqID field) {
return isSetField(field);
}
public boolean isSetTestReqID() {
return isSetField(112);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy