
org.fix4j.test.integration.quickfix.QuickFixProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fix4j-assert-quickfix Show documentation
Show all versions of fix4j-assert-quickfix Show documentation
fix4j-assert is a library to assist in testing of applications using FIX protocol
package org.fix4j.test.integration.quickfix;
import org.fix4j.test.util.Keyable;
/**
* User: ben
* Date: 17/12/14
* Time: 5:02 PM
*/
public enum QuickFixProperties implements Keyable {
SOCKET_CONNECT_HOST("fix4j.quickfix.socket.connect.host"),
START_TIME("fix4j.quickfix.start.time"),
END_TIME("fix4j.quickfix.end.time"),
HEART_BEAT_INTERVAL("fix4j.quickfix.heart.beat.interval"),
RECONNECT_INTERVAL("fix4j.quickfix.reconnect.interval"),
USE_DATA_DICTIONARY("fix4j.quickfix.use.data.dictionary"),
SOCKET_CONNECT_PORT("fix4j.quickfix.socket.connect.port"),
SOCKET_ACCEPT_PORT("fix4j.quickfix.socket.accept.port"),
LOG_HEARTBEATS("fix4j.quickfix.log.heartbeats");
private final String key;
QuickFixProperties(final String key){
this.key = key;
}
public String getKey() {
return key;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy