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; /** *

Java class for cancelInfoboardInfo complex type. * *

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

 * <complexType name="cancelInfoboardInfo">
 *   <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>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "cancelInfoboardInfo", propOrder = { "si" }) public class CancelInfoboardInfo { @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; } }