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

org.fix4j.test.integration.quickfix.QuickFixProperties Maven / Gradle / Ivy

There is a newer version: 1.6
Show newest version
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