Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
IBMSecurityProvider2Info |
|
| 0.0;0 |
1 | /* | |
2 | * $Id: IBMSecurityProvider2Info.java 19191 2010-08-25 21:05:23Z tcarlson $ | |
3 | * -------------------------------------------------------------------------------------- | |
4 | * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com | |
5 | * | |
6 | * The software in this package is published under the terms of the CPAL v1.0 | |
7 | * license, a copy of which has been included with this distribution in the | |
8 | * LICENSE.txt file. | |
9 | */ | |
10 | ||
11 | package org.mule.api.security.provider; | |
12 | ||
13 | ||
14 | /** | |
15 | * IBM JDK 1.4.2-specific security provider information. Contains config details for | |
16 | * IBM JSSE2. Note, versions lower than 1.4.1 <strong>do not</strong> have this | |
17 | * provider bundled. | |
18 | */ | |
19 | 0 | public class IBMSecurityProvider2Info extends IBMSecurityProviderInfo |
20 | { | |
21 | ||
22 | private static final String PROTOCOL_HANDLER = "com.ibm.net.ssl.www2.protocol.Handler"; | |
23 | private static final String PROVIDER_CLASS = "com.ibm.jsse2.IBMJSSEProvider2"; | |
24 | ||
25 | @Override | |
26 | public String getProtocolHandler() | |
27 | { | |
28 | 0 | return IBMSecurityProvider2Info.PROTOCOL_HANDLER; |
29 | } | |
30 | ||
31 | @Override | |
32 | public String getProviderClass() | |
33 | { | |
34 | 0 | return IBMSecurityProvider2Info.PROVIDER_CLASS; |
35 | } | |
36 | ||
37 | } |