// // 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 http://java.sun.com/xml/jaxb // 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 recipe-rating complex type. *

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 137) *

*

 * <complexType name="recipe-rating">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="createdDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *       <attribute name="rating" type="{http://www.w3.org/2001/XMLSchema}short" />
 *       <attribute name="ratingId" type="{http://www.w3.org/2001/XMLSchema}long" />
 *       <attribute name="userId" type="{http://www.w3.org/2001/XMLSchema}int" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* */ public interface RecipeRating { /** * Gets the value of the ratingId property. * * @return * possible object is * {@link java.lang.Long} */ java.lang.Long getRatingId(); /** * Sets the value of the ratingId property. * * @param value * allowed object is * {@link java.lang.Long} */ void setRatingId(java.lang.Long 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 rating property. * */ short getRating(); /** * Sets the value of the rating property. * */ void setRating(short 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); }