
ru.asubezdna.edata.v1_10.Message Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of abyss-enterprice-data Show documentation
Show all versions of abyss-enterprice-data Show documentation
JAXB classes for 1C EnterpriseData format
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2020.07.09 at 04:20:05 PM MSK
//
/*
* Copyright Бездна (c) 2020.
*/
package ru.asubezdna.edata.v1_10;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Собирательный компонент для всего, что может быть упомянуто в процессе
* обмена. Корневой элемент. Содержит Заголовок и Тело.
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "Message")
@XmlType(name = "Message", propOrder = { "header", "body" })
public class Message {
/** Заголовок */
@XmlElement(name = "Header", namespace = "http://www.1c.ru/SSL/Exchange/Message")
protected Header header;
/** Тело */
@XmlElement(name = "Body")
protected Body body;
/**
* Заголовок
*/
public Header getHeader() {
return header;
}
/**
* Заголовок
*
* @param header
*/
public void setHeader(Header header) {
this.header = header;
}
/**
* Тело
*/
public Body getBody() {
return body;
}
/**
* Тело
*
* @param body
*/
public void setBody(Body body) {
this.body = body;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy