Blame view

src/main/java/fr/plil/sio/persistence/api/RightService.java 1.87 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
      /**
       * 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.
c07d86ab   jcartign   Clarify API: remo...
19
20
       * Return only the right with the parent in the field parent.
       *
5418cb05   jcartign   Javadoc of API is...
21
22
23
24
25
       *
       * @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...
26
27
      Right create(String name, Right parent);
  
5418cb05   jcartign   Javadoc of API is...
28
      /**
f2ed17f6   jcartign   upgrading Javadoc
29
       * Delete a right in the database. Delete sibling rights if present.
5418cb05   jcartign   Javadoc of API is...
30
31
       *
       * @param right the right to delete
f2ed17f6   jcartign   upgrading Javadoc
32
33
       * @return true if right has been deleted, false else.
       * @throws IllegalArgumentException if right is null.
5418cb05   jcartign   Javadoc of API is...
34
35
36
37
38
       */
      boolean delete(Right right);
  
      /**
       * Find a list of rights in the database based on their name.
c07d86ab   jcartign   Clarify API: remo...
39
       * All dependencies at one-level are loaded, i.e for each right returned the parent and sibling are present.
5418cb05   jcartign   Javadoc of API is...
40
41
42
43
44
45
       *
       * @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...
46
  
5418cb05   jcartign   Javadoc of API is...
47
48
      /**
       * Find a right in the database based on its id.
c07d86ab   jcartign   Clarify API: remo...
49
       * All dependencies at one-level are loaded, i.e the parent and sibling are present.
5418cb05   jcartign   Javadoc of API is...
50
51
52
53
54
55
       *
       * @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...
56
  }