Blame view

src/main/java/etunicorn/generated/TransactionController.java 2.3 KB
d167a387   Geoffrey PREUD'HOMME   On génère mieux
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
  
  package etunicorn.generated;
  
  import org.springframework.http.ResponseEntity;
  import org.springframework.web.bind.annotation.*;
  
  import java.math.BigDecimal;
  
  
  /**
   * No description
   * (Generated with springmvc-raml-parser v.0.8.9)
   */
  @RestController
  @RequestMapping("/v1/transaction")
  public interface TransactionController {
  
  
      /**
       * Permet de recuperer la liste des transaction
       */
      @RequestMapping(value = "", method = RequestMethod.GET)
      public ResponseEntity<?> getTransaction();
  
      /**
       * Permet de faire payer ou de crediter un Compte. >0 la personne a crediter de l'argent. <0 la personne a été débité.
       */
      @RequestMapping(value = "/consomation", method = RequestMethod.POST)
      public ResponseEntity<?> updateConsomation(
              @RequestParam
                      Long participant,
              @RequestParam
                      Long id);
  
      /**
       *
       *
       */
      @RequestMapping(value = "/evenement", method = RequestMethod.POST)
      public ResponseEntity<?> updateEvenement(
              @RequestParam
                      Long participant,
              @RequestParam
                      Long id);
  
      /**
       * Permet de recharger un compte
       */
      @RequestMapping(value = "/evenement/credit", method = RequestMethod.POST)
      public ResponseEntity<?> updateEvenementCredit(
              @RequestParam
                      Long participant,
              @RequestParam
                      BigDecimal prix);
  
      /**
       * Permet de debiter la carte
       */
      @RequestMapping(value = "/evenement/debit", method = RequestMethod.POST)
      public ResponseEntity<?> updateEvenementDebit(
              @RequestParam
                      Long participant,
              @RequestParam
                      BigDecimal prix);
  
      /**
       * Permet de recuperer la liste des transaction d'une personne
       */
      @RequestMapping(value = "/participant/{idPersonne}", method = RequestMethod.GET)
      public ResponseEntity<?> getParticipantByIdPersonne(
              @PathVariable
                      String idPersonne);
  
      /**
       * Permet de recuperer la liste des transaction d'une personne
       */
      @RequestMapping(value = "/acteur/{idPersonne}", method = RequestMethod.GET)
      public ResponseEntity<?> getActeurByIdPersonne(
              @PathVariable
                      String idPersonne);
  
  }