com.exactpro.sf.messages.testaml.GENL 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 GENL extends BaseMessage
{
public static final String MESSAGE_NAME = "GENL";
public GENL(IMessageFactory messageFactory)
{
this(messageFactory.createMessage(MESSAGE_NAME, (messageFactory.getNamespace() == null) ? "TestAML" : messageFactory.getNamespace()));
}
/**
* @deprecated Please use {@link #GENL(IMessageFactory)}
*/
@Deprecated
public GENL()
{
this(DefaultMessageFactory.getFactory());
}
/**
* @deprecated Please use {@link #GENL(IMessageFactory)}
*/
@Deprecated
public GENL(String name, String namespace)
{
super(DefaultMessageFactory.getFactory().createMessage(name, namespace));
}
public GENL(IMessage msg)
{
super(msg);
}
@Override
public GENL clone() {
return (GENL)super.clone();
}
public GENL setSendersReference(String value)
{
this.msg.addField("SendersReference", value);
return this;
}
public String getSendersReference()
{
Object value = this.msg.getField("SendersReference");
return (String)value;
}
public Object getUntypedSendersReference()
{
return this.msg.getField("SendersReference");
}
public IFilter getSendersReferenceFilter()
{
return this.msg.getField("SendersReference");
}
public GENL setSendersReferenceFilter(IFilter filter)
{
this.msg.addField("SendersReference", filter);
return this;
}
public GENL removeSendersReference()
{
this.msg.removeField("SendersReference");
return this;
}
public boolean isSetSendersReference()
{
return this.msg.getField("SendersReference") != null;
}
public boolean isFilterSendersReference()
{
return this.msg.getField("SendersReference") instanceof IFilter;
}
public GENL setPreparationDateTime(String value)
{
this.msg.addField("PreparationDateTime", value);
return this;
}
public String getPreparationDateTime()
{
Object value = this.msg.getField("PreparationDateTime");
return (String)value;
}
public Object getUntypedPreparationDateTime()
{
return this.msg.getField("PreparationDateTime");
}
public IFilter getPreparationDateTimeFilter()
{
return this.msg.getField("PreparationDateTime");
}
public GENL setPreparationDateTimeFilter(IFilter filter)
{
this.msg.addField("PreparationDateTime", filter);
return this;
}
public GENL removePreparationDateTime()
{
this.msg.removeField("PreparationDateTime");
return this;
}
public boolean isSetPreparationDateTime()
{
return this.msg.getField("PreparationDateTime") != null;
}
public boolean isFilterPreparationDateTime()
{
return this.msg.getField("PreparationDateTime") instanceof IFilter;
}
public GENL setTradeType(String value)
{
this.msg.addField("TradeType", value);
return this;
}
public String getTradeType()
{
Object value = this.msg.getField("TradeType");
return (String)value;
}
public Object getUntypedTradeType()
{
return this.msg.getField("TradeType");
}
public IFilter getTradeTypeFilter()
{
return this.msg.getField("TradeType");
}
public GENL setTradeTypeFilter(IFilter filter)
{
this.msg.addField("TradeType", filter);
return this;
}
public GENL removeTradeType()
{
this.msg.removeField("TradeType");
return this;
}
public boolean isSetTradeType()
{
return this.msg.getField("TradeType") != null;
}
public boolean isFilterTradeType()
{
return this.msg.getField("TradeType") instanceof IFilter;
}
public GENL addLINK(com.exactpro.sf.messages.testaml.LINK value)
{
List list = this.msg.>getField("LINK");
if(list == null){
list = new ArrayList();
this.msg.addField("LINK" ,list);
}
list.add(value.getMessage());
return this;
}
public List getLINK()
{
List value = this.msg.>getField("LINK");
if(value == null)
{
throw new FieldNotFoundException(" LINK ");
}
List list = new ArrayList();
for( IMessage element : value )
{
list.add(new com.exactpro.sf.messages.testaml.LINK((IMessage)element));
}
return list;
}
public IFilter getLINKFilter()
{
return this.msg.getField("LINK");
}
public GENL setLINKFilter(IFilter filter)
{
this.msg.addField("LINK", filter);
return this;
}
public GENL removeLINK()
{
this.msg.removeField("LINK");
return this;
}
public boolean isSetLINK()
{
return this.msg.getField("LINK") != null;
}
public boolean isFilterLINK()
{
return this.msg.getField("LINK") instanceof IFilter;
}
}