com.exactpro.sf.messages.testaml.ReplayRequest Maven / Gradle / Ivy
/******************************************************************************
* Copyright 2009-2018 Exactpro (Exactpro Systems Limited)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
******************************************************************************/
package com.exactpro.sf.messages.testaml;
import com.exactpro.sf.common.impl.messages.DefaultMessageFactory;
import com.exactpro.sf.common.impl.messages.BaseMessage;
import com.exactpro.sf.common.messages.IMessageFactory;
import com.exactpro.sf.common.messages.IMessage;
import com.exactpro.sf.common.messages.FieldNotFoundException;
import com.exactpro.sf.aml.scriptutil.StaticUtil.IFilter;
import java.time.LocalDateTime;
import java.time.LocalDate;
import java.time.LocalTime;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
import java.lang.Deprecated;
@SuppressWarnings("unused")
public class ReplayRequest extends BaseMessage
{
public static final String MESSAGE_NAME = "ReplayRequest";
public ReplayRequest(IMessageFactory messageFactory)
{
this(messageFactory.createMessage(MESSAGE_NAME, (messageFactory.getNamespace() == null) ? "TestAML" : messageFactory.getNamespace()));
}
/**
* @deprecated Please use {@link #ReplayRequest(IMessageFactory)}
*/
@Deprecated
public ReplayRequest()
{
this(DefaultMessageFactory.getFactory());
}
/**
* @deprecated Please use {@link #ReplayRequest(IMessageFactory)}
*/
@Deprecated
public ReplayRequest(String name, String namespace)
{
super(DefaultMessageFactory.getFactory().createMessage(name, namespace));
}
public ReplayRequest(IMessage msg)
{
super(msg);
}
@Override
public ReplayRequest clone() {
return (ReplayRequest)super.clone();
}
public ReplayRequest setFirstMessage(long value)
{
this.msg.addField("FirstMessage", value);
return this;
}
public long getFirstMessage()
{
Object value = this.msg.getField("FirstMessage");
if(value == null)
{
throw new FieldNotFoundException(" FirstMessage ");
}
return (Long)value;
}
public Object getUntypedFirstMessage()
{
return this.msg.getField("FirstMessage");
}
public IFilter getFirstMessageFilter()
{
return this.msg.getField("FirstMessage");
}
public ReplayRequest setFirstMessageFilter(IFilter filter)
{
this.msg.addField("FirstMessage", filter);
return this;
}
public ReplayRequest removeFirstMessage()
{
this.msg.removeField("FirstMessage");
return this;
}
public boolean isSetFirstMessage()
{
return this.msg.getField("FirstMessage") != null;
}
public boolean isFilterFirstMessage()
{
return this.msg.getField("FirstMessage") instanceof IFilter;
}
public ReplayRequest setMarketDataGroup(short value)
{
this.msg.addField("MarketDataGroup", value);
return this;
}
public short getMarketDataGroup()
{
Object value = this.msg.getField("MarketDataGroup");
if(value == null)
{
throw new FieldNotFoundException(" MarketDataGroup ");
}
return (Short)value;
}
public Object getUntypedMarketDataGroup()
{
return this.msg.getField("MarketDataGroup");
}
public IFilter getMarketDataGroupFilter()
{
return this.msg.getField("MarketDataGroup");
}
public ReplayRequest setMarketDataGroupFilter(IFilter filter)
{
this.msg.addField("MarketDataGroup", filter);
return this;
}
public ReplayRequest removeMarketDataGroup()
{
this.msg.removeField("MarketDataGroup");
return this;
}
public boolean isSetMarketDataGroup()
{
return this.msg.getField("MarketDataGroup") != null;
}
public boolean isFilterMarketDataGroup()
{
return this.msg.getField("MarketDataGroup") instanceof IFilter;
}
public ReplayRequest setMessageType(com.exactpro.sf.messages.testaml.components.MessageType value)
{
this.msg.addField("MessageType", value.getValue());
return this;
}
public ReplayRequest setMessageType(Short value)
{
this.msg.addField("MessageType", value);
return this;
}
public Short getRawMessageType()
{
Short value = this.msg.getField("MessageType");
if(value == null)
{
throw new FieldNotFoundException(" MessageType ");
}
return value;
}
public com.exactpro.sf.messages.testaml.components.MessageType getMessageType()
{
Object value = this.msg.getField("MessageType");
return com.exactpro.sf.messages.testaml.components.MessageType.getEnumValue((Short)value);
}
public Object getUntypedMessageType()
{
return this.msg.getField("MessageType");
}
public IFilter getMessageTypeFilter()
{
return this.msg.getField("MessageType");
}
public ReplayRequest setMessageTypeFilter(IFilter filter)
{
this.msg.addField("MessageType", filter);
return this;
}
public ReplayRequest removeMessageType()
{
this.msg.removeField("MessageType");
return this;
}
public boolean isSetMessageType()
{
return this.msg.getField("MessageType") != null;
}
public boolean isFilterMessageType()
{
return this.msg.getField("MessageType") instanceof IFilter;
}
public ReplayRequest setLength(short value)
{
this.msg.addField("Length", value);
return this;
}
public short getLength()
{
Object value = this.msg.getField("Length");
if(value == null)
{
throw new FieldNotFoundException(" Length ");
}
return (Short)value;
}
public Object getUntypedLength()
{
return this.msg.getField("Length");
}
public IFilter getLengthFilter()
{
return this.msg.getField("Length");
}
public ReplayRequest setLengthFilter(IFilter filter)
{
this.msg.addField("Length", filter);
return this;
}
public ReplayRequest removeLength()
{
this.msg.removeField("Length");
return this;
}
public boolean isSetLength()
{
return this.msg.getField("Length") != null;
}
public boolean isFilterLength()
{
return this.msg.getField("Length") instanceof IFilter;
}
}