| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221 |
- //
- // 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
- // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
- // Any modifications to this file will be lost upon recompilation of the source schema.
- // Generated on: 2018.09.10 at 08:01:16 AM PDT
- //
- package magoffin.matt.ieat.domain;
- /**
- * Java content class for user complex type.
- * <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/core.xsd line 187)
- * <p>
- * <pre>
- * <complexType name="user">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * </sequence>
- * <attribute name="accessLevel" type="{http://www.w3.org/2001/XMLSchema}int" />
- * <attribute name="country" type="{http://www.w3.org/2001/XMLSchema}string" />
- * <attribute name="createdDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
- * <attribute name="language" type="{http://www.w3.org/2001/XMLSchema}string" />
- * <attribute name="lastLoginDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
- * <attribute name="login" type="{http://www.w3.org/2001/XMLSchema}string" />
- * <attribute name="userId" type="{http://www.w3.org/2001/XMLSchema}int" />
- * </restriction>
- * </complexContent>
- * </complexType>
- * </pre>
- *
- */
- public interface User {
- /**
- * Gets the value of the email property.
- *
- * @return
- * possible object is
- * {@link java.lang.String}
- */
- java.lang.String getEmail();
- /**
- * Sets the value of the email property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.String}
- */
- void setEmail(java.lang.String value);
- /**
- * Gets the value of the language property.
- *
- * @return
- * possible object is
- * {@link java.lang.String}
- */
- java.lang.String getLanguage();
- /**
- * Sets the value of the language property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.String}
- */
- void setLanguage(java.lang.String value);
- /**
- * Gets the value of the userId property.
- *
- * @return
- * possible object is
- * {@link java.lang.Integer}
- */
- java.lang.Integer getUserId();
- /**
- * Sets the value of the userId property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.Integer}
- */
- void setUserId(java.lang.Integer value);
- /**
- * Gets the value of the createdDate property.
- *
- * @return
- * possible object is
- * {@link java.util.Calendar}
- */
- java.util.Calendar getCreatedDate();
- /**
- * Sets the value of the createdDate property.
- *
- * @param value
- * allowed object is
- * {@link java.util.Calendar}
- */
- void setCreatedDate(java.util.Calendar value);
- /**
- * Gets the value of the lastLoginDate property.
- *
- * @return
- * possible object is
- * {@link java.util.Calendar}
- */
- java.util.Calendar getLastLoginDate();
- /**
- * Sets the value of the lastLoginDate property.
- *
- * @param value
- * allowed object is
- * {@link java.util.Calendar}
- */
- void setLastLoginDate(java.util.Calendar value);
- /**
- * Gets the value of the country property.
- *
- * @return
- * possible object is
- * {@link java.lang.String}
- */
- java.lang.String getCountry();
- /**
- * Sets the value of the country property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.String}
- */
- void setCountry(java.lang.String value);
- /**
- * Gets the value of the login property.
- *
- * @return
- * possible object is
- * {@link java.lang.String}
- */
- java.lang.String getLogin();
- /**
- * Sets the value of the login property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.String}
- */
- void setLogin(java.lang.String value);
- /**
- * Gets the value of the accessLevel property.
- *
- * @return
- * possible object is
- * {@link java.lang.Integer}
- */
- java.lang.Integer getAccessLevel();
- /**
- * Sets the value of the accessLevel property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.Integer}
- */
- void setAccessLevel(java.lang.Integer value);
- /**
- * Gets the value of the name property.
- *
- * @return
- * possible object is
- * {@link java.lang.String}
- */
- java.lang.String getName();
- /**
- * Sets the value of the name property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.String}
- */
- void setName(java.lang.String value);
- /**
- * Gets the value of the password property.
- *
- * @return
- * possible object is
- * {@link java.lang.String}
- */
- java.lang.String getPassword();
- /**
- * Sets the value of the password property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.String}
- */
- void setPassword(java.lang.String value);
- }
|