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

com.quotemedia.streamer.client.mapper.AlertMsgImpl Maven / Gradle / Ivy

package com.quotemedia.streamer.client.mapper;

import com.quotemedia.streamer.messages.market.DataMessage;
import com.quotemedia.streamer.messages.market.InstrumentType;

import java.util.Date;

public class AlertMsgImpl implements DataMessage {
    private String symbol;
    private int locateCode;
    private Date timestamp;
    private InstrumentType instrumentType;
    private Long alertId;
    private Double triggerValue;

    public String getSymbol() {
        return symbol;
    }

    public void setSymbol(String symbol) {
        this.symbol = symbol;
    }

    public int getLocateCode() {
        return locateCode;
    }

    public void setLocateCode(int locateCode) {
        this.locateCode = locateCode;
    }

    public Date getTimestamp() {
        return timestamp;
    }

    public void setTimestamp(Date timestamp) {
        this.timestamp = timestamp;
    }

    public InstrumentType getInstrumentType() {
        return instrumentType;
    }

    public void setInstrumentType(InstrumentType instrumentType) {
        this.instrumentType = instrumentType;
    }

    public Long getAlertId() {
        return alertId;
    }

    public void setAlertId(Long alertId) {
        this.alertId = alertId;
    }

    public Double getTriggerValue() {
        return triggerValue;
    }

    public void setTriggerValue(Double triggerValue) {
        this.triggerValue = triggerValue;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy