RequestHeader.java
package org.apache.cxf.jaxws.schemavalidation;
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 RequestHeader complex type</p>.
*
* <p>The following schema fragment specifies the expected content contained within this class.</p>
*
* <pre>{@code
* <complexType name="RequestHeader">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="HeaderValue">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <maxLength value="10"/>
* </restriction>
* </simpleType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RequestHeader", propOrder = {
"headerValue"
})
public class RequestHeader {
@XmlElement(name = "HeaderValue", required = true)
protected String headerValue;
/**
* Gets the value of the headerValue property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHeaderValue() {
return headerValue;
}
/**
* Sets the value of the headerValue property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHeaderValue(String value) {
this.headerValue = value;
}
}