com.quotemedia.streamer.client.mapper.SymbolStatusMsgImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of streamerclient-java-core Show documentation
Show all versions of streamerclient-java-core Show documentation
Java streaming client that provides easy-to-use client APIs to connect and subscribe to QuoteMedia's market data streaming services. https://quotemedia.com/
The newest version!
package com.quotemedia.streamer.client.mapper;
import com.quotemedia.datacache.data.Price;
import com.quotemedia.streamer.messages.market.DataMessage;
import java.util.Date;
public class SymbolStatusMsgImpl implements DataMessage {
private String symbol;
private int locateCode;
private Byte haltStatus;
private Byte haltIndicator;
private Character regSHOStatus;
private Price closingCalculatedPrice;
private Date effectiveTime;
private Date openingTime;
private String note;
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 Byte getHaltStatus() {
return haltStatus;
}
public void setHaltStatus(Byte haltStatus) {
this.haltStatus = haltStatus;
}
public Byte getHaltIndicator() {
return haltIndicator;
}
public void setHaltIndicator(Byte haltIndicator) {
this.haltIndicator = haltIndicator;
}
public Character getRegSHOStatus() {
return regSHOStatus;
}
public void setRegSHOStatus(Character regSHOStatus) {
this.regSHOStatus = regSHOStatus;
}
public Price getClosingCalculatedPrice() {
return closingCalculatedPrice;
}
public void setClosingCalculatedPrice(Price closingCalculatedPrice) {
this.closingCalculatedPrice = closingCalculatedPrice;
}
public Date getEffectiveTime() {
return effectiveTime;
}
public void setEffectiveTime(Date effectiveTime) {
this.effectiveTime = effectiveTime;
}
public Date getOpeningTime() {
return openingTime;
}
public void setOpeningTime(Date openingTime) {
this.openingTime = openingTime;
}
public String getNote() {
return note;
}
public void setNote(String note) {
this.note = note;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy