1
2
3
4
5
6
7
8
9
10
11 package org.mule.api.security.provider;
12
13
14
15
16
17
18 public class IBMSecurityProvider2Info implements SecurityProviderInfo
19 {
20
21 private static final String KEY_MANAGER_ALGORITHM = "IbmX509";
22
23 private static final String PROTOCOL_HANDLER = "com.ibm.net.ssl.www2.protocol.Handler";
24
25 private static final String PROVIDER_CLASS = "com.ibm.jsse2.IBMJSSEProvider2";
26
27 public String getKeyManagerAlgorithm()
28 {
29 return IBMSecurityProvider2Info.KEY_MANAGER_ALGORITHM;
30 }
31
32 public String getProtocolHandler()
33 {
34 return IBMSecurityProvider2Info.PROTOCOL_HANDLER;
35 }
36
37 public String getProviderClass()
38 {
39 return IBMSecurityProvider2Info.PROVIDER_CLASS;
40 }
41
42 }