ComplexStruct.java
package org.apache.cxf.ordered_param_holder;
import jakarta.annotation.Generated;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for ComplexStruct complex type</p>.
*
* <p>The following schema fragment specifies the expected content contained within this class.</p>
*
* <pre>{@code
* <complexType name="ComplexStruct">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="elem1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="elem2" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="elem3" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ComplexStruct", propOrder = {
"elem1",
"elem2",
"elem3"
})
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2025-07-04T06:50:39Z")
public class ComplexStruct {
@XmlElement(required = true)
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2025-07-04T06:50:39Z")
protected String elem1;
@XmlElement(required = true)
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2025-07-04T06:50:39Z")
protected String elem2;
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2025-07-04T06:50:39Z")
protected int elem3;
/**
* Gets the value of the elem1 property.
*
* @return
* possible object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2025-07-04T06:50:39Z")
public String getElem1() {
return elem1;
}
/**
* Sets the value of the elem1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2025-07-04T06:50:39Z")
public void setElem1(String value) {
this.elem1 = value;
}
/**
* Gets the value of the elem2 property.
*
* @return
* possible object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2025-07-04T06:50:39Z")
public String getElem2() {
return elem2;
}
/**
* Sets the value of the elem2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2025-07-04T06:50:39Z")
public void setElem2(String value) {
this.elem2 = value;
}
/**
* Gets the value of the elem3 property.
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2025-07-04T06:50:39Z")
public int getElem3() {
return elem3;
}
/**
* Sets the value of the elem3 property.
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2025-07-04T06:50:39Z")
public void setElem3(int value) {
this.elem3 = value;
}
}