File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
modules/edition-specific/src-ejb/org/ejbca/core/ejb Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments