org.smooks.edifact.binding.service.UNGGroupHeader Maven / Gradle / Ivy
/*-
* ========================LICENSE_START=================================
* service-edifact-binding
* %%
* Copyright (C) 2020 - 2024 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: 2024.11.12 at 08:58:01 AM UTC
//
package org.smooks.edifact.binding.service;
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 UNG-GroupHeader complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="UNG-GroupHeader">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="E0038" type="{http://www.ibm.com/dfdl/edi/un/service/4.1}E0038-MessageGroupIdentification" minOccurs="0"/>
* <element name="S006" type="{http://www.ibm.com/dfdl/edi/un/service/4.1}S006-ApplicationSenderIdentification" minOccurs="0"/>
* <element name="S007" type="{http://www.ibm.com/dfdl/edi/un/service/4.1}S007-ApplicationRecipientIdentification" minOccurs="0"/>
* <element name="S004" type="{http://www.ibm.com/dfdl/edi/un/service/4.1}S004-DateAndTimeOfPreparation" minOccurs="0"/>
* <element name="E0048" type="{http://www.ibm.com/dfdl/edi/un/service/4.1}E0048-GroupReferenceNumber"/>
* <element name="E0051" type="{http://www.ibm.com/dfdl/edi/un/service/4.1}E0051-ControllingAgencyCoded" minOccurs="0"/>
* <element name="S008" type="{http://www.ibm.com/dfdl/edi/un/service/4.1}S008-MessageVersion" minOccurs="0"/>
* <element name="E0058" type="{http://www.ibm.com/dfdl/edi/un/service/4.1}E0058-ApplicationPassword" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UNG-GroupHeader", propOrder = {
"e0038",
"s006",
"s007",
"s004",
"e0048",
"e0051",
"s008",
"e0058"
})
public class UNGGroupHeader {
@XmlElement(name = "E0038")
protected String e0038;
@XmlElement(name = "S006")
protected S006ApplicationSenderIdentification s006;
@XmlElement(name = "S007")
protected S007ApplicationRecipientIdentification s007;
@XmlElement(name = "S004")
protected S004DateAndTimeOfPreparation s004;
@XmlElement(name = "E0048", required = true)
protected String e0048;
@XmlElement(name = "E0051")
@XmlSchemaType(name = "string")
protected E0051ControllingAgencyCoded e0051;
@XmlElement(name = "S008")
protected S008MessageVersion s008;
@XmlElement(name = "E0058")
protected String e0058;
/**
* Gets the value of the e0038 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getE0038() {
return e0038;
}
/**
* Sets the value of the e0038 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setE0038(String value) {
this.e0038 = value;
}
/**
* Gets the value of the s006 property.
*
* @return
* possible object is
* {@link S006ApplicationSenderIdentification }
*
*/
public S006ApplicationSenderIdentification getS006() {
return s006;
}
/**
* Sets the value of the s006 property.
*
* @param value
* allowed object is
* {@link S006ApplicationSenderIdentification }
*
*/
public void setS006(S006ApplicationSenderIdentification value) {
this.s006 = value;
}
/**
* Gets the value of the s007 property.
*
* @return
* possible object is
* {@link S007ApplicationRecipientIdentification }
*
*/
public S007ApplicationRecipientIdentification getS007() {
return s007;
}
/**
* Sets the value of the s007 property.
*
* @param value
* allowed object is
* {@link S007ApplicationRecipientIdentification }
*
*/
public void setS007(S007ApplicationRecipientIdentification value) {
this.s007 = value;
}
/**
* Gets the value of the s004 property.
*
* @return
* possible object is
* {@link S004DateAndTimeOfPreparation }
*
*/
public S004DateAndTimeOfPreparation getS004() {
return s004;
}
/**
* Sets the value of the s004 property.
*
* @param value
* allowed object is
* {@link S004DateAndTimeOfPreparation }
*
*/
public void setS004(S004DateAndTimeOfPreparation value) {
this.s004 = value;
}
/**
* Gets the value of the e0048 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getE0048() {
return e0048;
}
/**
* Sets the value of the e0048 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setE0048(String value) {
this.e0048 = value;
}
/**
* Gets the value of the e0051 property.
*
* @return
* possible object is
* {@link E0051ControllingAgencyCoded }
*
*/
public E0051ControllingAgencyCoded getE0051() {
return e0051;
}
/**
* Sets the value of the e0051 property.
*
* @param value
* allowed object is
* {@link E0051ControllingAgencyCoded }
*
*/
public void setE0051(E0051ControllingAgencyCoded value) {
this.e0051 = value;
}
/**
* Gets the value of the s008 property.
*
* @return
* possible object is
* {@link S008MessageVersion }
*
*/
public S008MessageVersion getS008() {
return s008;
}
/**
* Sets the value of the s008 property.
*
* @param value
* allowed object is
* {@link S008MessageVersion }
*
*/
public void setS008(S008MessageVersion value) {
this.s008 = value;
}
/**
* Gets the value of the e0058 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getE0058() {
return e0058;
}
/**
* Sets the value of the e0058 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setE0058(String value) {
this.e0058 = value;
}
public UNGGroupHeader withE0038(String value) {
setE0038(value);
return this;
}
public UNGGroupHeader withS006(S006ApplicationSenderIdentification value) {
setS006(value);
return this;
}
public UNGGroupHeader withS007(S007ApplicationRecipientIdentification value) {
setS007(value);
return this;
}
public UNGGroupHeader withS004(S004DateAndTimeOfPreparation value) {
setS004(value);
return this;
}
public UNGGroupHeader withE0048(String value) {
setE0048(value);
return this;
}
public UNGGroupHeader withE0051(E0051ControllingAgencyCoded value) {
setE0051(value);
return this;
}
public UNGGroupHeader withS008(S008MessageVersion value) {
setS008(value);
return this;
}
public UNGGroupHeader withE0058(String value) {
setE0058(value);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy