All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.smooks.edifact.binding.d98a.ALCAllowanceOrCharge Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
/*-
 * ========================LICENSE_START=================================
 * d98a-edifact-binding
 * %%
 * Copyright (C) 2020 - 2025 Smooks
 * %%
 * Licensed under the terms of the Apache License Version 2.0, or
 * the GNU Lesser General Public License version 3.0 or later.
 * 
 * SPDX-License-Identifier: Apache-2.0 OR LGPL-3.0-or-later
 * 
 * ======================================================================
 * 
 * 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.
 * 
 * ======================================================================
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 * =========================LICENSE_END==================================
 */
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2025.01.04 at 11:59:25 AM UTC 
//


package org.smooks.edifact.binding.d98a;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for ALC-AllowanceOrCharge complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ALC-AllowanceOrCharge">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="E5463" type="{http://www.ibm.com/dfdl/edi/un/edifact/D98A}E5463-AllowanceOrChargeQualifier"/>
 *         <element name="C552" type="{http://www.ibm.com/dfdl/edi/un/edifact/D98A}C552-AllowanceChargeInformation" minOccurs="0"/>
 *         <element name="E4471" type="{http://www.ibm.com/dfdl/edi/un/edifact/D98A}E4471-SettlementCoded" minOccurs="0"/>
 *         <element name="E1227" type="{http://www.ibm.com/dfdl/edi/un/edifact/D98A}E1227-CalculationSequenceIndicatorCoded" minOccurs="0"/>
 *         <element name="C214" type="{http://www.ibm.com/dfdl/edi/un/edifact/D98A}C214-SpecialServicesIdentification" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ALC-AllowanceOrCharge", propOrder = { "e5463", "c552", "e4471", "e1227", "c214" }) public class ALCAllowanceOrCharge { @XmlElement(name = "E5463", required = true) @XmlSchemaType(name = "string") protected E5463AllowanceOrChargeQualifier e5463; @XmlElement(name = "C552") protected C552AllowanceChargeInformation c552; @XmlElement(name = "E4471") protected String e4471; @XmlElement(name = "E1227") protected String e1227; @XmlElement(name = "C214") protected C214SpecialServicesIdentification c214; /** * Gets the value of the e5463 property. * * @return * possible object is * {@link E5463AllowanceOrChargeQualifier } * */ public E5463AllowanceOrChargeQualifier getE5463() { return e5463; } /** * Sets the value of the e5463 property. * * @param value * allowed object is * {@link E5463AllowanceOrChargeQualifier } * */ public void setE5463(E5463AllowanceOrChargeQualifier value) { this.e5463 = value; } /** * Gets the value of the c552 property. * * @return * possible object is * {@link C552AllowanceChargeInformation } * */ public C552AllowanceChargeInformation getC552() { return c552; } /** * Sets the value of the c552 property. * * @param value * allowed object is * {@link C552AllowanceChargeInformation } * */ public void setC552(C552AllowanceChargeInformation value) { this.c552 = value; } /** * Gets the value of the e4471 property. * * @return * possible object is * {@link String } * */ public String getE4471() { return e4471; } /** * Sets the value of the e4471 property. * * @param value * allowed object is * {@link String } * */ public void setE4471(String value) { this.e4471 = value; } /** * Gets the value of the e1227 property. * * @return * possible object is * {@link String } * */ public String getE1227() { return e1227; } /** * Sets the value of the e1227 property. * * @param value * allowed object is * {@link String } * */ public void setE1227(String value) { this.e1227 = value; } /** * Gets the value of the c214 property. * * @return * possible object is * {@link C214SpecialServicesIdentification } * */ public C214SpecialServicesIdentification getC214() { return c214; } /** * Sets the value of the c214 property. * * @param value * allowed object is * {@link C214SpecialServicesIdentification } * */ public void setC214(C214SpecialServicesIdentification value) { this.c214 = value; } public ALCAllowanceOrCharge withE5463(E5463AllowanceOrChargeQualifier value) { setE5463(value); return this; } public ALCAllowanceOrCharge withC552(C552AllowanceChargeInformation value) { setC552(value); return this; } public ALCAllowanceOrCharge withE4471(String value) { setE4471(value); return this; } public ALCAllowanceOrCharge withE1227(String value) { setE1227(value); return this; } public ALCAllowanceOrCharge withC214(C214SpecialServicesIdentification value) { setC214(value); return this; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy