modified some things
This commit is contained in:
		| @@ -2,7 +2,7 @@ | ||||
| // 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  | ||||
| // Generated on: 2021.11.18 at 12:37:46 PM CET  | ||||
| // | ||||
|  | ||||
|  | ||||
| @@ -28,7 +28,7 @@ import javax.xml.bind.annotation.XmlType; | ||||
|  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | ||||
|  *       <sequence> | ||||
|  *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/> | ||||
|  *         <element name="material_number" type="{http://www.w3.org/2001/XMLSchema}int"/> | ||||
|  *         <element name="material_number" type="{http://www.w3.org/2001/XMLSchema}string"/> | ||||
|  *         <element name="material_type" type="{}material_typeType"/> | ||||
|  *         <element name="material_name" type="{http://www.w3.org/2001/XMLSchema}string"/> | ||||
|  *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/> | ||||
| @@ -55,8 +55,8 @@ import javax.xml.bind.annotation.XmlType; | ||||
| public class MaterialType { | ||||
|  | ||||
|     protected int id; | ||||
|     @XmlElement(name = "material_number") | ||||
|     protected int materialNumber; | ||||
|     @XmlElement(name = "material_number", required = true) | ||||
|     protected String materialNumber; | ||||
|     @XmlElement(name = "material_type", required = true) | ||||
|     @XmlSchemaType(name = "string") | ||||
|     protected MaterialTypeType materialType; | ||||
| @@ -71,7 +71,7 @@ public class MaterialType { | ||||
|  | ||||
|     /** | ||||
|      * Gets the value of the id property. | ||||
|      * | ||||
|      *  | ||||
|      */ | ||||
|     public int getId() { | ||||
|         return id; | ||||
| @@ -79,7 +79,7 @@ public class MaterialType { | ||||
|  | ||||
|     /** | ||||
|      * Sets the value of the id property. | ||||
|      * | ||||
|      *  | ||||
|      */ | ||||
|     public void setId(int value) { | ||||
|         this.id = value; | ||||
| @@ -87,27 +87,35 @@ public class MaterialType { | ||||
|  | ||||
|     /** | ||||
|      * Gets the value of the materialNumber property. | ||||
|      * | ||||
|      *  | ||||
|      * @return | ||||
|      *     possible object is | ||||
|      *     {@link String } | ||||
|      *      | ||||
|      */ | ||||
|     public int getMaterialNumber() { | ||||
|     public String getMaterialNumber() { | ||||
|         return materialNumber; | ||||
|     } | ||||
|  | ||||
|     /** | ||||
|      * Sets the value of the materialNumber property. | ||||
|      * | ||||
|      *  | ||||
|      * @param value | ||||
|      *     allowed object is | ||||
|      *     {@link String } | ||||
|      *      | ||||
|      */ | ||||
|     public void setMaterialNumber(int value) { | ||||
|     public void setMaterialNumber(String value) { | ||||
|         this.materialNumber = value; | ||||
|     } | ||||
|  | ||||
|     /** | ||||
|      * Gets the value of the materialType property. | ||||
|      * | ||||
|      *  | ||||
|      * @return | ||||
|      *     possible object is | ||||
|      *     {@link MaterialTypeType } | ||||
|      * | ||||
|      *      | ||||
|      */ | ||||
|     public MaterialTypeType getMaterialType() { | ||||
|         return materialType; | ||||
| @@ -115,11 +123,11 @@ public class MaterialType { | ||||
|  | ||||
|     /** | ||||
|      * Sets the value of the materialType property. | ||||
|      * | ||||
|      *  | ||||
|      * @param value | ||||
|      *     allowed object is | ||||
|      *     {@link MaterialTypeType } | ||||
|      * | ||||
|      *      | ||||
|      */ | ||||
|     public void setMaterialType(MaterialTypeType value) { | ||||
|         this.materialType = value; | ||||
| @@ -127,11 +135,11 @@ public class MaterialType { | ||||
|  | ||||
|     /** | ||||
|      * Gets the value of the materialName property. | ||||
|      * | ||||
|      *  | ||||
|      * @return | ||||
|      *     possible object is | ||||
|      *     {@link String } | ||||
|      * | ||||
|      *      | ||||
|      */ | ||||
|     public String getMaterialName() { | ||||
|         return materialName; | ||||
| @@ -139,11 +147,11 @@ public class MaterialType { | ||||
|  | ||||
|     /** | ||||
|      * Sets the value of the materialName property. | ||||
|      * | ||||
|      *  | ||||
|      * @param value | ||||
|      *     allowed object is | ||||
|      *     {@link String } | ||||
|      * | ||||
|      *      | ||||
|      */ | ||||
|     public void setMaterialName(String value) { | ||||
|         this.materialName = value; | ||||
| @@ -151,11 +159,11 @@ public class MaterialType { | ||||
|  | ||||
|     /** | ||||
|      * Gets the value of the description property. | ||||
|      * | ||||
|      *  | ||||
|      * @return | ||||
|      *     possible object is | ||||
|      *     {@link String } | ||||
|      * | ||||
|      *      | ||||
|      */ | ||||
|     public String getDescription() { | ||||
|         return description; | ||||
| @@ -163,11 +171,11 @@ public class MaterialType { | ||||
|  | ||||
|     /** | ||||
|      * Sets the value of the description property. | ||||
|      * | ||||
|      *  | ||||
|      * @param value | ||||
|      *     allowed object is | ||||
|      *     {@link String } | ||||
|      * | ||||
|      *      | ||||
|      */ | ||||
|     public void setDescription(String value) { | ||||
|         this.description = value; | ||||
| @@ -175,7 +183,7 @@ public class MaterialType { | ||||
|  | ||||
|     /** | ||||
|      * Gets the value of the isDeleted property. | ||||
|      * | ||||
|      *  | ||||
|      */ | ||||
|     public boolean isIsDeleted() { | ||||
|         return isDeleted; | ||||
| @@ -183,7 +191,7 @@ public class MaterialType { | ||||
|  | ||||
|     /** | ||||
|      * Sets the value of the isDeleted property. | ||||
|      * | ||||
|      *  | ||||
|      */ | ||||
|     public void setIsDeleted(boolean value) { | ||||
|         this.isDeleted = value; | ||||
| @@ -191,25 +199,25 @@ public class MaterialType { | ||||
|  | ||||
|     /** | ||||
|      * Gets the value of the packages property. | ||||
|      * | ||||
|      *  | ||||
|      * <p> | ||||
|      * This accessor method returns a reference to the live list, | ||||
|      * not a snapshot. Therefore any modification you make to the | ||||
|      * returned list will be present inside the JAXB object. | ||||
|      * This is why there is not a <CODE>set</CODE> method for the packages property. | ||||
|      * | ||||
|      *  | ||||
|      * <p> | ||||
|      * For example, to add a new item, do as follows: | ||||
|      * <pre> | ||||
|      *    getPackages().add(newItem); | ||||
|      * </pre> | ||||
|      * | ||||
|      * | ||||
|      *  | ||||
|      *  | ||||
|      * <p> | ||||
|      * Objects of the following type(s) are allowed in the list | ||||
|      * {@link Package } | ||||
|      * | ||||
|      * | ||||
|      *  | ||||
|      *  | ||||
|      */ | ||||
|     public List<Package> getPackages() { | ||||
|         if (packages == null) { | ||||
|   | ||||
| @@ -2,7 +2,7 @@ | ||||
| // 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  | ||||
| // Generated on: 2021.11.18 at 12:37:46 PM CET  | ||||
| // | ||||
|  | ||||
|  | ||||
|   | ||||
| @@ -2,7 +2,7 @@ | ||||
| // 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  | ||||
| // Generated on: 2021.11.18 at 12:37:46 PM CET  | ||||
| // | ||||
|  | ||||
|  | ||||
|   | ||||
| @@ -2,7 +2,7 @@ | ||||
| // 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  | ||||
| // Generated on: 2021.11.18 at 12:37:46 PM CET  | ||||
| // | ||||
|  | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user