com.exactpro.sf.messages.testaml.CommissionData 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 CommissionData extends BaseMessage
{
public static final String MESSAGE_NAME = "CommissionData";
public CommissionData(IMessageFactory messageFactory)
{
this(messageFactory.createMessage(MESSAGE_NAME, (messageFactory.getNamespace() == null) ? "TestAML" : messageFactory.getNamespace()));
}
/**
* @deprecated Please use {@link #CommissionData(IMessageFactory)}
*/
@Deprecated
public CommissionData()
{
this(DefaultMessageFactory.getFactory());
}
/**
* @deprecated Please use {@link #CommissionData(IMessageFactory)}
*/
@Deprecated
public CommissionData(String name, String namespace)
{
super(DefaultMessageFactory.getFactory().createMessage(name, namespace));
}
public CommissionData(IMessage msg)
{
super(msg);
}
@Override
public CommissionData clone() {
return (CommissionData)super.clone();
}
public CommissionData setCommission(BigDecimal value)
{
this.msg.addField("Commission", value);
return this;
}
public BigDecimal getCommission()
{
Object value = this.msg.getField("Commission");
return (BigDecimal)value;
}
public Object getUntypedCommission()
{
return this.msg.getField("Commission");
}
public IFilter getCommissionFilter()
{
return this.msg.getField("Commission");
}
public CommissionData setCommissionFilter(IFilter filter)
{
this.msg.addField("Commission", filter);
return this;
}
public CommissionData removeCommission()
{
this.msg.removeField("Commission");
return this;
}
public boolean isSetCommission()
{
return this.msg.getField("Commission") != null;
}
public boolean isFilterCommission()
{
return this.msg.getField("Commission") instanceof IFilter;
}
public CommissionData setCommType(char value)
{
this.msg.addField("CommType", value);
return this;
}
public char getCommType()
{
Object value = this.msg.getField("CommType");
if(value == null)
{
throw new FieldNotFoundException(" CommType ");
}
return (Character)value;
}
public Object getUntypedCommType()
{
return this.msg.getField("CommType");
}
public IFilter getCommTypeFilter()
{
return this.msg.getField("CommType");
}
public CommissionData setCommTypeFilter(IFilter filter)
{
this.msg.addField("CommType", filter);
return this;
}
public CommissionData removeCommType()
{
this.msg.removeField("CommType");
return this;
}
public boolean isSetCommType()
{
return this.msg.getField("CommType") != null;
}
public boolean isFilterCommType()
{
return this.msg.getField("CommType") instanceof IFilter;
}
public CommissionData setCommCurrency(String value)
{
this.msg.addField("CommCurrency", value);
return this;
}
public String getCommCurrency()
{
Object value = this.msg.getField("CommCurrency");
return (String)value;
}
public Object getUntypedCommCurrency()
{
return this.msg.getField("CommCurrency");
}
public IFilter getCommCurrencyFilter()
{
return this.msg.getField("CommCurrency");
}
public CommissionData setCommCurrencyFilter(IFilter filter)
{
this.msg.addField("CommCurrency", filter);
return this;
}
public CommissionData removeCommCurrency()
{
this.msg.removeField("CommCurrency");
return this;
}
public boolean isSetCommCurrency()
{
return this.msg.getField("CommCurrency") != null;
}
public boolean isFilterCommCurrency()
{
return this.msg.getField("CommCurrency") instanceof IFilter;
}
}