Const.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 javax.xml.namespace.QName;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for const complex type</p>.
*
* <p>The following schema fragment specifies the expected content contained within this class.</p>
*
* <pre>{@code
* <complexType name="const">
* <complexContent>
* <extension base="{http://cxf.apache.org/bindings/corba}corbaType">
* <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="idltype" use="required" type="{http://www.w3.org/2001/XMLSchema}QName" />
* </extension>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "const", namespace = "http://cxf.apache.org/bindings/corba")
public class Const
extends CorbaType
{
@XmlAttribute(name = "value", required = true)
protected String value;
@XmlAttribute(name = "idltype", required = true)
protected QName idltype;
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
public boolean isSetValue() {
return (this.value!= null);
}
/**
* Gets the value of the idltype property.
*
* @return
* possible object is
* {@link QName }
*
*/
public QName getIdltype() {
return idltype;
}
/**
* Sets the value of the idltype property.
*
* @param value
* allowed object is
* {@link QName }
*
*/
public void setIdltype(QName value) {
this.idltype = value;
}
public boolean isSetIdltype() {
return (this.idltype!= null);
}
}