Revocable | Line # 9 | 0 | 1 | - |
-1.0
|
No Tests | |||
1 | package issrg.pba.rbac; | |
2 | /** | |
3 | * This interface exists so that the URL to repositories holding | |
4 | * the revoked certificate can be retrieved. | |
5 | * | |
6 | * @author Rune Bjerk | |
7 | * | |
8 | */ | |
9 | public interface Revocable { | |
10 | /** | |
11 | * | |
12 | * @return a location(host,port,path) to the revoked certificate | |
13 | */ | |
14 | public String getRevocationURL(); | |
15 | ||
16 | /** | |
17 | * | |
18 | * @return a location(host,port,path) to a copy of the original certificate | |
19 | */ | |
20 | public String getValidationURL(); | |
21 | ||
22 | /** | |
23 | * | |
24 | * @return the array of bytes making the original, unparsed, attribute certificate | |
25 | */ | |
26 | public byte[] getOriginalAC(); | |
27 | ||
28 | } |
|