1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package com.sinosoft.lz.esb.ib;
- import javax.xml.bind.annotation.XmlAccessType;
- import javax.xml.bind.annotation.XmlAccessorType;
- import javax.xml.bind.annotation.XmlElement;
- import javax.xml.bind.annotation.XmlType;
- /**
- * <p>Java class for getFault complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * <complexType name="getFault">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="si" type="{http://service.ib.lz.sinosoft.com/}socketPublishInfoboard" minOccurs="0" form="qualified"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </pre>
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "getFault", propOrder = {
- "si"
- })
- public class GetFault {
- @XmlElement(namespace = "http://service.ib.lz.sinosoft.com/")
- protected SocketPublishInfoboard si;
- /**
- * Gets the value of the si property.
- *
- * @return
- * possible object is
- * {@link SocketPublishInfoboard }
- *
- */
- public SocketPublishInfoboard getSi() {
- return si;
- }
- /**
- * Sets the value of the si property.
- *
- * @param value
- * allowed object is
- * {@link SocketPublishInfoboard }
- *
- */
- public void setSi(SocketPublishInfoboard value) {
- this.si = value;
- }
- }
|