Kenmegne
7 days ago 23a46b4be35277e06ec89f48730eeb694e686be8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package com.megatim.fdxconsultation.service.ifaces.documents;
 
import com.megatim.fdxconsultation.model.documents.Document;
import com.mgt.rs.security.core.common.Secured;
import javax.validation.Valid;
import javax.ws.rs.Consumes;
import javax.ws.rs.DELETE;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.HttpHeaders;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
 
/**
 *
 * @author Gabuntu
 */
public interface DocumentRS {
 
    @POST
    @Consumes({MediaType.APPLICATION_JSON})
    @Produces({MediaType.APPLICATION_JSON})
    @Path("add/{categoryId}")
    @Secured(action = "ajouter")
    public Response save(@Context HttpHeaders headers, @PathParam("categoryId") Long categoryId, @Valid Document entity);
 
    @POST
    @Consumes({MediaType.APPLICATION_JSON})
    @Produces({MediaType.APPLICATION_JSON})
    @Path("update/{id}")
    @Secured(action = "modifier")
    public Response update(@Context HttpHeaders headers, @PathParam("id") Long id, @Valid Document entity);
 
    @DELETE
    @Consumes({MediaType.APPLICATION_JSON})
    @Produces({MediaType.APPLICATION_JSON})
    @Path("delete/{id}")
    @Secured(action = "supprimer")
    public void delete(@Context HttpHeaders headers, @PathParam("id") Long id);
 
}