ParticipeController.java 865 Bytes

package etunicorn.generated;

import javax.validation.Valid;
import etunicorn.generated.model.UpdateParticipeRequest;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;


/**
 * No description
 * (Generated with springmvc-raml-parser v.0.8.9)
 * 
 */
@RestController
@RequestMapping("/v1/participe")
public interface ParticipeController {


    /**
     * Permet d'ajouter une personne a un evenement
     * 
     */
    @RequestMapping(value = "", method = RequestMethod.POST)
    public ResponseEntity<?> updateParticipe(
        @Valid
        @RequestBody
        UpdateParticipeRequest updateParticipeRequest);

}