com.quotemedia.streamer.client.mapper.LimitUpLimitDownMsgImpl 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 com.quotemedia.streamer.messages.market.LimitUpLimitDown;
import java.util.Date;
public class LimitUpLimitDownMsgImpl implements DataMessage {
private String symbol;
private int locateCode;
private Date effectiveTime;
private Price lowerLimit;
private Price upperLimit;
private Boolean isBidNotExecutable;
private Boolean isAskNotExecutable;
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 getEffectiveTime() {
return effectiveTime;
}
public void setEffectiveTime(Date effectiveTime) {
this.effectiveTime = effectiveTime;
}
public Price getLowerLimit() {
return lowerLimit;
}
public void setLowerLimit(Price lowerLimit) {
this.lowerLimit = lowerLimit;
}
public Price getUpperLimit() {
return upperLimit;
}
public void setUpperLimit(Price upperLimit) {
this.upperLimit = upperLimit;
}
public Boolean getBidNotExecutable() {
return isBidNotExecutable;
}
public void setBidNotExecutable(Boolean bidNotExecutable) {
isBidNotExecutable = bidNotExecutable;
}
public Boolean getAskNotExecutable() {
return isAskNotExecutable;
}
public void setAskNotExecutable(Boolean askNotExecutable) {
isAskNotExecutable = askNotExecutable;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy