// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // 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: 2013.11.27 at 03:57:10 PM CET // package model; import javax.ws.rs.GET; import javax.ws.rs.PUT; import javax.ws.rs.Path; import javax.ws.rs.Produces; import javax.ws.rs.core.MediaType; /** * <p>Java class for etudiant complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="etudiant"> * <complexContent> * <extension base="{}personne"> * <sequence> * <element name="promo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ public interface Student extends Person { /** * Gets the value of the promo property. * * @return * possible object is * {@link String } * */ @GET @Path("major") public String getMajor(); /** * Sets the value of the promo property. * * @param value * allowed object is * {@link String } * */ @PUT @Path("major") public void setMajor(String value); @GET @Path("") @Produces(MediaType.APPLICATION_XML) public Student getRepresentation(); }