70ad20c04d0dde76abf89db8bffcd40753d35aa5.svn-base 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package com.sinosoft.lz.esb.ib;
  2. import javax.xml.bind.annotation.XmlAccessType;
  3. import javax.xml.bind.annotation.XmlAccessorType;
  4. import javax.xml.bind.annotation.XmlElement;
  5. import javax.xml.bind.annotation.XmlType;
  6. /**
  7. * <p>Java class for cancelInfoboardInfo complex type.
  8. *
  9. * <p>The following schema fragment specifies the expected content contained within this class.
  10. *
  11. * <pre>
  12. * &lt;complexType name="cancelInfoboardInfo">
  13. * &lt;complexContent>
  14. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  15. * &lt;sequence>
  16. * &lt;element name="si" type="{http://service.ib.lz.sinosoft.com/}socketPublishInfoboard" minOccurs="0" form="qualified"/>
  17. * &lt;/sequence>
  18. * &lt;/restriction>
  19. * &lt;/complexContent>
  20. * &lt;/complexType>
  21. * </pre>
  22. *
  23. *
  24. */
  25. @XmlAccessorType(XmlAccessType.FIELD)
  26. @XmlType(name = "cancelInfoboardInfo", propOrder = {
  27. "si"
  28. })
  29. public class CancelInfoboardInfo {
  30. @XmlElement(namespace = "http://service.ib.lz.sinosoft.com/")
  31. protected SocketPublishInfoboard si;
  32. /**
  33. * Gets the value of the si property.
  34. *
  35. * @return
  36. * possible object is
  37. * {@link SocketPublishInfoboard }
  38. *
  39. */
  40. public SocketPublishInfoboard getSi() {
  41. return si;
  42. }
  43. /**
  44. * Sets the value of the si property.
  45. *
  46. * @param value
  47. * allowed object is
  48. * {@link SocketPublishInfoboard }
  49. *
  50. */
  51. public void setSi(SocketPublishInfoboard value) {
  52. this.si = value;
  53. }
  54. }