All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.cxf.binding.corba.wsdl.RaisesType Maven / Gradle / Ivy

There is a newer version: 3.0.0-milestone2
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2012.01.20 at 11:40:24 AM EST 
//


package org.apache.cxf.binding.corba.wsdl;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;


/**
 * CORBA Raises Declaration
 * 
 * 

Java class for raisesType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="raisesType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="exception" use="required" type="{http://www.w3.org/2001/XMLSchema}QName" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "raisesType") public class RaisesType { @XmlAttribute(name = "exception", required = true) protected QName exception; /** * Gets the value of the exception property. * * @return * possible object is * {@link QName } * */ public QName getException() { return exception; } /** * Sets the value of the exception property. * * @param value * allowed object is * {@link QName } * */ public void setException(QName value) { this.exception = value; } public boolean isSetException() { return (this.exception!= null); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy