1
2
3
4
5
6
7 package org.mule.api.security.provider;
8
9
10
11
12
13
14
15 public class IBMSecurityProvider2Info extends IBMSecurityProviderInfo
16 {
17
18 private static final String PROTOCOL_HANDLER = "com.ibm.net.ssl.www2.protocol.Handler";
19 private static final String PROVIDER_CLASS = "com.ibm.jsse2.IBMJSSEProvider2";
20
21 @Override
22 public String getProtocolHandler()
23 {
24 return IBMSecurityProvider2Info.PROTOCOL_HANDLER;
25 }
26
27 @Override
28 public String getProviderClass()
29 {
30 return IBMSecurityProvider2Info.PROVIDER_CLASS;
31 }
32
33 }