1. Project Clover database Wed Jan 17 2024 23:40:18 CST
  2. Package org.europa.together.domain

File CipherAlgorithm.java

 

Coverage histogram

../../../../img/srcFileCovDistChart10.png
0% of files have more coverage

Code metrics

0
2
2
1
21
12
2
1
1
2
1

Classes

Class Line # Actions
CipherAlgorithm 6 2 0% 2 0
1.0100%
 

Contributing tests

This file is covered by 7 tests. .

Source view

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 toggle CipherAlgorithm(final String value) {
14  1 this.value = value;
15    }
16   
 
17  17 toggle @Override
18    public String toString() {
19  17 return this.value;
20    }
21    }