// // 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; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import com.sun.xml.bind.AnyTypeAdapter; /** * <p>Java class for personne complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="personne"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="nom" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="prenom" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ //@XmlJavaTypeAdapter(AnyTypeAdapter.class) //@XmlSeeAlso({PersonneImpl.class}) //@XmlJavaTypeAdapter(PersonneAdapter.class) public interface Personne { /** * Gets the value of the nom property. * * @return * possible object is * {@link String } * */ @GET @Path("nom") public String getNom(); /** * Sets the value of the nom property. * * @param value * allowed object is * {@link String } * */ @PUT @Path("nom") public void setNom(String value); /** * Gets the value of the prenom property. * * @return * possible object is * {@link String } * */ @GET @Path("prenom") public String getPrenom(); /** * Sets the value of the prenom property. * * @param value * allowed object is * {@link String } * */ @PUT @Path("prenom") public void setPrenom(String value); @GET @Path("") @Produces(MediaType.APPLICATION_XML) public Personne getRepresentation(); }