UiSessionData.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. //
  2. // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.6-01/24/2006 06:08 PM(kohsuke)-fcs
  3. // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
  4. // Any modifications to this file will be lost upon recompilation of the source schema.
  5. // Generated on: 2018.09.10 at 08:01:16 AM PDT
  6. //
  7. package magoffin.matt.ieat.domain;
  8. /**
  9. * Java content class for ui-session-data complex type.
  10. * <p>The following schema fragment specifies the expected content contained within this java content object. (defined at file:/home/tom/workspace/iEat/hyperjaxb2-build/src/main/resources/ui.xsd line 153)
  11. * <p>
  12. * <pre>
  13. * &lt;complexType name="ui-session-data">
  14. * &lt;complexContent>
  15. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  16. * &lt;sequence>
  17. * &lt;element name="acting-user" type="{http://msqr.us/xsd/ieat}user" minOccurs="0"/>
  18. * &lt;/sequence>
  19. * &lt;attribute name="admin" type="{http://www.w3.org/2001/XMLSchema}boolean" />
  20. * &lt;/restriction>
  21. * &lt;/complexContent>
  22. * &lt;/complexType>
  23. * </pre>
  24. *
  25. */
  26. public interface UiSessionData {
  27. /**
  28. * Gets the value of the actingUser property.
  29. *
  30. * @return
  31. * possible object is
  32. * {@link magoffin.matt.ieat.domain.User}
  33. */
  34. magoffin.matt.ieat.domain.User getActingUser();
  35. /**
  36. * Sets the value of the actingUser property.
  37. *
  38. * @param value
  39. * allowed object is
  40. * {@link magoffin.matt.ieat.domain.User}
  41. */
  42. void setActingUser(magoffin.matt.ieat.domain.User value);
  43. /**
  44. * Gets the value of the admin property.
  45. *
  46. */
  47. boolean isAdmin();
  48. /**
  49. * Sets the value of the admin property.
  50. *
  51. */
  52. void setAdmin(boolean value);
  53. }