org.smooks.edifact.binding.d02a.TDTDetailsOfTransport Maven / Gradle / Ivy
The newest version!
/*-
* ========================LICENSE_START=================================
* d02a-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:50:23 AM UTC
//
package org.smooks.edifact.binding.d02a;
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 TDT-DetailsOfTransport complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TDT-DetailsOfTransport">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="E8051" type="{http://www.ibm.com/dfdl/edi/un/edifact/D02A}E8051-TransportStageCodeQualifier"/>
* <element name="E8028" type="{http://www.ibm.com/dfdl/edi/un/edifact/D02A}E8028-MeansOfTransportJourneyIdentifier" minOccurs="0"/>
* <element name="C220" type="{http://www.ibm.com/dfdl/edi/un/edifact/D02A}C220-ModeOfTransport" minOccurs="0"/>
* <element name="C228" type="{http://www.ibm.com/dfdl/edi/un/edifact/D02A}C228-TransportMeans" minOccurs="0"/>
* <element name="C040" type="{http://www.ibm.com/dfdl/edi/un/edifact/D02A}C040-Carrier" minOccurs="0"/>
* <element name="E8101" type="{http://www.ibm.com/dfdl/edi/un/edifact/D02A}E8101-TransitDirectionIndicatorCode" minOccurs="0"/>
* <element name="C401" type="{http://www.ibm.com/dfdl/edi/un/edifact/D02A}C401-ExcessTransportationInformation" minOccurs="0"/>
* <element name="C222" type="{http://www.ibm.com/dfdl/edi/un/edifact/D02A}C222-TransportIdentification" minOccurs="0"/>
* <element name="E8281" type="{http://www.ibm.com/dfdl/edi/un/edifact/D02A}E8281-TransportMeansOwnershipIndicatorCode" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TDT-DetailsOfTransport", propOrder = {
"e8051",
"e8028",
"c220",
"c228",
"c040",
"e8101",
"c401",
"c222",
"e8281"
})
public class TDTDetailsOfTransport {
@XmlElement(name = "E8051", required = true)
protected String e8051;
@XmlElement(name = "E8028")
protected String e8028;
@XmlElement(name = "C220")
protected C220ModeOfTransport c220;
@XmlElement(name = "C228")
protected C228TransportMeans c228;
@XmlElement(name = "C040")
protected C040Carrier c040;
@XmlElement(name = "E8101")
@XmlSchemaType(name = "string")
protected E8101TransitDirectionIndicatorCode e8101;
@XmlElement(name = "C401")
protected C401ExcessTransportationInformation c401;
@XmlElement(name = "C222")
protected C222TransportIdentification c222;
@XmlElement(name = "E8281")
protected String e8281;
/**
* Gets the value of the e8051 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getE8051() {
return e8051;
}
/**
* Sets the value of the e8051 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setE8051(String value) {
this.e8051 = value;
}
/**
* Gets the value of the e8028 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getE8028() {
return e8028;
}
/**
* Sets the value of the e8028 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setE8028(String value) {
this.e8028 = value;
}
/**
* Gets the value of the c220 property.
*
* @return
* possible object is
* {@link C220ModeOfTransport }
*
*/
public C220ModeOfTransport getC220() {
return c220;
}
/**
* Sets the value of the c220 property.
*
* @param value
* allowed object is
* {@link C220ModeOfTransport }
*
*/
public void setC220(C220ModeOfTransport value) {
this.c220 = value;
}
/**
* Gets the value of the c228 property.
*
* @return
* possible object is
* {@link C228TransportMeans }
*
*/
public C228TransportMeans getC228() {
return c228;
}
/**
* Sets the value of the c228 property.
*
* @param value
* allowed object is
* {@link C228TransportMeans }
*
*/
public void setC228(C228TransportMeans value) {
this.c228 = value;
}
/**
* Gets the value of the c040 property.
*
* @return
* possible object is
* {@link C040Carrier }
*
*/
public C040Carrier getC040() {
return c040;
}
/**
* Sets the value of the c040 property.
*
* @param value
* allowed object is
* {@link C040Carrier }
*
*/
public void setC040(C040Carrier value) {
this.c040 = value;
}
/**
* Gets the value of the e8101 property.
*
* @return
* possible object is
* {@link E8101TransitDirectionIndicatorCode }
*
*/
public E8101TransitDirectionIndicatorCode getE8101() {
return e8101;
}
/**
* Sets the value of the e8101 property.
*
* @param value
* allowed object is
* {@link E8101TransitDirectionIndicatorCode }
*
*/
public void setE8101(E8101TransitDirectionIndicatorCode value) {
this.e8101 = value;
}
/**
* Gets the value of the c401 property.
*
* @return
* possible object is
* {@link C401ExcessTransportationInformation }
*
*/
public C401ExcessTransportationInformation getC401() {
return c401;
}
/**
* Sets the value of the c401 property.
*
* @param value
* allowed object is
* {@link C401ExcessTransportationInformation }
*
*/
public void setC401(C401ExcessTransportationInformation value) {
this.c401 = value;
}
/**
* Gets the value of the c222 property.
*
* @return
* possible object is
* {@link C222TransportIdentification }
*
*/
public C222TransportIdentification getC222() {
return c222;
}
/**
* Sets the value of the c222 property.
*
* @param value
* allowed object is
* {@link C222TransportIdentification }
*
*/
public void setC222(C222TransportIdentification value) {
this.c222 = value;
}
/**
* Gets the value of the e8281 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getE8281() {
return e8281;
}
/**
* Sets the value of the e8281 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setE8281(String value) {
this.e8281 = value;
}
public TDTDetailsOfTransport withE8051(String value) {
setE8051(value);
return this;
}
public TDTDetailsOfTransport withE8028(String value) {
setE8028(value);
return this;
}
public TDTDetailsOfTransport withC220(C220ModeOfTransport value) {
setC220(value);
return this;
}
public TDTDetailsOfTransport withC228(C228TransportMeans value) {
setC228(value);
return this;
}
public TDTDetailsOfTransport withC040(C040Carrier value) {
setC040(value);
return this;
}
public TDTDetailsOfTransport withE8101(E8101TransitDirectionIndicatorCode value) {
setE8101(value);
return this;
}
public TDTDetailsOfTransport withC401(C401ExcessTransportationInformation value) {
setC401(value);
return this;
}
public TDTDetailsOfTransport withC222(C222TransportIdentification value) {
setC222(value);
return this;
}
public TDTDetailsOfTransport withE8281(String value) {
setE8281(value);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy