Anonstring.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.binding.corba.wsdl;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* Anonymous type for bounded strings.
*
* <p>Java class for anonstring complex type</p>.
*
* <p>The following schema fragment specifies the expected content contained within this class.</p>
*
* <pre>{@code
* <complexType name="anonstring">
* <complexContent>
* <extension base="{http://cxf.apache.org/bindings/corba}corbaType">
* <attribute name="bound" use="required" type="{http://cxf.apache.org/bindings/corba}ulong" />
* </extension>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "anonstring", namespace = "http://cxf.apache.org/bindings/corba")
public class Anonstring
extends CorbaType
{
@XmlAttribute(name = "bound", required = true)
protected long bound;
/**
* Gets the value of the bound property.
*
*/
public long getBound() {
return bound;
}
/**
* Sets the value of the bound property.
*
*/
public void setBound(long value) {
this.bound = value;
}
public boolean isSetBound() {
return true;
}
}