Class | Line # | Actions | |||||
---|---|---|---|---|---|---|---|
CipherAlgorithm | 6 | 2 | 0% | 2 | 0 |
1 | package org.europa.together.domain; | |
2 | ||
3 | /** | |
4 | * Available Cipher Algorithm. | |
5 | */ | |
6 | public enum CipherAlgorithm { | |
7 | ||
8 | RSA("RSA"); | |
9 | ||
10 | private final String value; | |
11 | ||
12 | //CONSTRUCTOR | |
13 | 1 | CipherAlgorithm(final String value) { |
14 | 1 | this.value = value; |
15 | } | |
16 | ||
17 | 17 | @Override |
18 | public String toString() { | |
19 | 17 | return this.value; |
20 | } | |
21 | } |