Skip to content

Commit d9aff13

Browse files
Amin Khorsandimans-andersson
authored andcommitted
ECA-11991: Add missing interface impl for CE.
1 parent b07e2eb commit d9aff13

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/*************************************************************************
2+
* *
3+
* EJBCA Community: The OpenSource Certificate Authority *
4+
* *
5+
* This software is free software; you can redistribute it and/or *
6+
* modify it under the terms of the GNU Lesser General Public *
7+
* License as published by the Free Software Foundation; either *
8+
* version 2.1 of the License, or any later version. *
9+
* *
10+
* See terms of license at gnu.org. *
11+
* *
12+
*************************************************************************/
13+
package org.ejbca.core.ejb;
14+
15+
import javax.ejb.ConcurrencyManagement;
16+
import javax.ejb.ConcurrencyManagementType;
17+
import javax.ejb.DependsOn;
18+
import javax.ejb.Singleton;
19+
20+
import org.ejbca.core.protocol.msae.KecCache;
21+
22+
/**
23+
* Cache holding CA id and associated kec (key exchange certificate)
24+
*/
25+
@Singleton
26+
@ConcurrencyManagement(ConcurrencyManagementType.CONTAINER)
27+
@DependsOn({ "StartupSingletonBean" })
28+
public class KecCacheBean implements KecCache {
29+
// Only available in enterprise EJBCA!
30+
}

0 commit comments

Comments
 (0)