com.quotemedia.streamer.client.mapper.QuoteMsgImpl Maven / Gradle / Ivy
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 QuoteMsgImpl implements DataMessage {
private String symbol;
private String excode;
private int locateCode;
private Date timestamp;
private Character askCondition;
private String askExcode;
private Price askPrice;
private QMDecimal askSize;
private Character bidCondition;
private String bidExcode;
private Price bidPrice;
private QMDecimal bidSize;
private Character indicator;
private Integer sharesPerSizeUnit;
public String getSymbol() {
return symbol;
}
public void setSymbol(String symbol) {
this.symbol = symbol;
}
public String getExcode() {
return excode;
}
public void setExcode(String excode) {
this.excode = excode;
}
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 Character getAskCondition() {
return askCondition;
}
public void setAskCondition(Character askCondition) {
this.askCondition = askCondition;
}
public String getAskExcode() {
return askExcode;
}
public void setAskExcode(String askExcode) {
this.askExcode = askExcode;
}
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 Character getBidCondition() {
return bidCondition;
}
public void setBidCondition(Character bidCondition) {
this.bidCondition = bidCondition;
}
public String getBidExcode() {
return bidExcode;
}
public void setBidExcode(String bidExcode) {
this.bidExcode = bidExcode;
}
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 Integer getSharesPerSizeUnit() {
return sharesPerSizeUnit;
}
public void setSharesPerSizeUnit(Integer sharesPerSizeUnit) {
this.sharesPerSizeUnit = sharesPerSizeUnit;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy