Blame view

src/main/java/fr/plil/sio/persistence/api/RightService.java 1.6 KB
a800fde0   jcartign   First version, in...
1
2
  package fr.plil.sio.persistence.api;
  
5418cb05   jcartign   Javadoc of API is...
3
4
  import java.util.List;
  
a800fde0   jcartign   First version, in...
5
6
  public interface RightService {
  
5418cb05   jcartign   Javadoc of API is...
7
8
9
10
11
12
13
      /**
       * Create a parent right with a specific name in the database.
       * It is possible that two rights has the same name.
       *
       * @param name the name of the right
       * @throws IllegalArgumentException if name is null
       */
a800fde0   jcartign   First version, in...
14
15
      Right create(String name);
  
5418cb05   jcartign   Javadoc of API is...
16
17
18
19
20
21
22
23
      /**
       * Create a sibling right attached to a parent right with a specific name in the database.
       * It is possible that two rights has the same name.
       *
       * @param name   the name of the right
       * @param parent the parent right
       * @throws IllegalArgumentException if name or parent is null, or if parent does not exist in the database.
       */
a800fde0   jcartign   First version, in...
24
25
      Right create(String name, Right parent);
  
5418cb05   jcartign   Javadoc of API is...
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
      /**
       * Delete a right in the database.
       *
       * @param right the right to delete
       * @return true if right has been deleted
       * @throws IllegalArgumentException if right is null or if right is not found in the database.
       */
      boolean delete(Right right);
  
      /**
       * Find a list of rights in the database based on their name.
       *
       * @param name the name of the rights to search for.
       * @return A list of rights, eventually empty.
       * @throws IllegalArgumentException if name is null
       */
      List<Right> findByName(String name);
a800fde0   jcartign   First version, in...
43
  
5418cb05   jcartign   Javadoc of API is...
44
45
46
47
48
49
50
51
      /**
       * Find a right in the database based on its id.
       *
       * @param id the name of the right to search for.
       * @return an instance of the right if found, else null.
       * @throws IllegalArgumentException if id is null
       */
      Right findOne(Long id);
a800fde0   jcartign   First version, in...
52
  }