ObjectWithQualifiedElementElement.java
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.5
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package org.apache.cxf.jaxb_form;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type</p>.
*
* <p>The following schema fragment specifies the expected content contained within this class.</p>
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="string1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="string2" type="{http://www.w3.org/2001/XMLSchema}string" form="qualified"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"string1",
"string2"
})
@XmlRootElement(name = "ObjectWithQualifiedElementElement")
public class ObjectWithQualifiedElementElement {
@XmlElement(namespace = "", required = true)
protected String string1;
@XmlElement(required = true)
protected String string2;
/**
* Gets the value of the string1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getString1() {
return string1;
}
/**
* Sets the value of the string1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setString1(String value) {
this.string1 = value;
}
/**
* Gets the value of the string2 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getString2() {
return string2;
}
/**
* Sets the value of the string2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setString2(String value) {
this.string2 = value;
}
}