modified pom
This commit is contained in:
211
target/generated-sources/jaxb/generated/Package.java
Normal file
211
target/generated-sources/jaxb/generated/Package.java
Normal file
@@ -0,0 +1,211 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2
|
||||
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2021.11.17 at 01:26:11 PM CET
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for package complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="package">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="material_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="package_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="ean" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="unit_of_measure" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="dimension" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "package", propOrder = {
|
||||
"id",
|
||||
"materialId",
|
||||
"packageNumber",
|
||||
"ean",
|
||||
"unitOfMeasure",
|
||||
"dimension",
|
||||
"description"
|
||||
})
|
||||
public class Package {
|
||||
|
||||
protected int id;
|
||||
@XmlElement(name = "material_id")
|
||||
protected int materialId;
|
||||
@XmlElement(name = "package_number")
|
||||
protected int packageNumber;
|
||||
@XmlElement(required = true)
|
||||
protected String ean;
|
||||
@XmlElement(name = "unit_of_measure", required = true)
|
||||
protected String unitOfMeasure;
|
||||
@XmlElement(required = true)
|
||||
protected String dimension;
|
||||
protected String description;
|
||||
|
||||
/**
|
||||
* Gets the value of the id property.
|
||||
*
|
||||
*/
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the id property.
|
||||
*
|
||||
*/
|
||||
public void setId(int value) {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the materialId property.
|
||||
*
|
||||
*/
|
||||
public int getMaterialId() {
|
||||
return materialId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the materialId property.
|
||||
*
|
||||
*/
|
||||
public void setMaterialId(int value) {
|
||||
this.materialId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the packageNumber property.
|
||||
*
|
||||
*/
|
||||
public int getPackageNumber() {
|
||||
return packageNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the packageNumber property.
|
||||
*
|
||||
*/
|
||||
public void setPackageNumber(int value) {
|
||||
this.packageNumber = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the ean property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getEan() {
|
||||
return ean;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the ean property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setEan(String value) {
|
||||
this.ean = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the unitOfMeasure property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getUnitOfMeasure() {
|
||||
return unitOfMeasure;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the unitOfMeasure property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setUnitOfMeasure(String value) {
|
||||
this.unitOfMeasure = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the dimension property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDimension() {
|
||||
return dimension;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the dimension property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDimension(String value) {
|
||||
this.dimension = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the description property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the description property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDescription(String value) {
|
||||
this.description = value;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user