Coverage Report - org.mule.api.security.provider.IBMSecurityProvider2Info
 
Classes in this File Line Coverage Branch Coverage Complexity
IBMSecurityProvider2Info
0%
0/3
N/A
0
 
 1  
 /*
 2  
  * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
 3  
  * The software in this package is published under the terms of the CPAL v1.0
 4  
  * license, a copy of which has been included with this distribution in the
 5  
  * LICENSE.txt file.
 6  
  */
 7  
 package org.mule.api.security.provider;
 8  
 
 9  
 
 10  
 /**
 11  
  * IBM JDK 1.4.2-specific security provider information. Contains config details for
 12  
  * IBM JSSE2. Note, versions lower than 1.4.1 <strong>do not</strong> have this
 13  
  * provider bundled.
 14  
  */
 15  0
 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  0
         return IBMSecurityProvider2Info.PROTOCOL_HANDLER;
 25  
     }
 26  
 
 27  
     @Override
 28  
     public String getProviderClass()
 29  
     {
 30  0
         return IBMSecurityProvider2Info.PROVIDER_CLASS;
 31  
     }
 32  
 
 33  
 }