com.quotemedia.streamer.client.mapper.MMQuoteMsgImpl 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.datacache.data.QMDecimal;
import com.quotemedia.streamer.messages.market.DataMessage;
import java.util.Date;
public class MMQuoteMsgImpl implements DataMessage {
private String symbol;
private int locateCode;
private Date timestamp;
private Price askChange;
private Price askPrice;
private QMDecimal askSize;
private Price bidChange;
private Price bidPrice;
private QMDecimal bidSize;
private Character indicator;
private String marketMakerID;
private Integer sharesPerSizeUnit;
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 Price getAskChange() {
return askChange;
}
public void setAskChange(Price askChange) {
this.askChange = askChange;
}
public Price getAskPrice() {
return askPrice;
}
public void setAskPrice(Price askPrice) {
this.askPrice = askPrice;
}
public QMDecimal getAskSize() {
return askSize;
}
public void setAskSize(QMDecimal askSize) {
this.askSize = askSize;
}
public Price getBidChange() {
return bidChange;
}
public void setBidChange(Price bidChange) {
this.bidChange = bidChange;
}
public Price getBidPrice() {
return bidPrice;
}
public void setBidPrice(Price bidPrice) {
this.bidPrice = bidPrice;
}
public QMDecimal getBidSize() {
return bidSize;
}
public void setBidSize(QMDecimal bidSize) {
this.bidSize = bidSize;
}
public Character getIndicator() {
return indicator;
}
public void setIndicator(Character indicator) {
this.indicator = indicator;
}
public String getMarketMakerID() {
return marketMakerID;
}
public void setMarketMakerID(String marketMakerID) {
this.marketMakerID = marketMakerID;
}
public Integer getSharesPerSizeUnit() {
return sharesPerSizeUnit;
}
public void setSharesPerSizeUnit(Integer sharesPerSizeUnit) {
this.sharesPerSizeUnit = sharesPerSizeUnit;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy