RightServiceJdbc.java
1.11 KB
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
package fr.plil.sio.persistence.jdbc;
import fr.plil.sio.persistence.api.Right;
import fr.plil.sio.persistence.api.RightService;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class RightServiceJdbc implements RightService {
@Override
public Right create(String name) {
if(name==null){
throw new IllegalArgumentException("name cannot be null");
}
else{
return null;
}
}
@Override
public Right create(String name, Right parent) {
return null;
}
@Override
public boolean delete(Right right) {
if(right==null){
throw new IllegalArgumentException("name cannot be null");
}
else{
return true;
}
}
@Override
public List<Right> findByName(String name) {
throw new IllegalStateException("not implemented !");
}
@Override
public Right findOne(Long id) {
if(id==null){
throw new IllegalArgumentException("name cannot be null");
}
else{
return null;
}
}
}