Coverage Report - org.mule.transport.ssl.TlsConnector
 
Classes in this File Line Coverage Branch Coverage Complexity
TlsConnector
0%
0/3
N/A
1
 
 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.transport.ssl;
 8  
 
 9  
 import org.mule.api.MuleContext;
 10  
 
 11  
 /**
 12  
  * <code>TlsConnector</code> Provides TLS connections
 13  
  */
 14  
 public class TlsConnector extends SslConnector
 15  
 {
 16  
 
 17  
     public static final String TLS = "tls";
 18  
 
 19  
     public TlsConnector(MuleContext context)
 20  
     {
 21  0
         super(context);
 22  0
     }
 23  
     
 24  
     public String getProtocol()
 25  
     {
 26  0
         return TLS;
 27  
     }
 28  
 
 29  
 }