quickfix.fix44.TestRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quickfixj-messages-fix44 Show documentation
Show all versions of quickfixj-messages-fix44 Show documentation
QuickFIX/J Message classes for FIX 4.4
The newest version!
package quickfix.fix44;
import quickfix.FieldNotFound;
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 FieldNotFound {
getField(value);
return value;
}
public quickfix.field.TestReqID getTestReqID() throws FieldNotFound {
return get(new quickfix.field.TestReqID());
}
public boolean isSet(quickfix.field.TestReqID field) {
return isSetField(field);
}
public boolean isSetTestReqID() {
return isSetField(112);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy