Coverage Report - org.apache.maven.wagon.providers.ssh.knownhost.KnownHostsProvider
 
Classes in this File Line Coverage Branch Coverage Complexity
KnownHostsProvider
0% 
N/A 
1
 
 1  
 package org.apache.maven.wagon.providers.ssh.knownhost;
 2  
 
 3  
 /*
 4  
  * Copyright 2001-2005 The Apache Software Foundation.
 5  
  *
 6  
  * Licensed under the Apache License, Version 2.0 (the "License");
 7  
  * you may not use this file except in compliance with the License.
 8  
  * You may obtain a copy of the License at
 9  
  *
 10  
  *      http://www.apache.org/licenses/LICENSE-2.0
 11  
  *
 12  
  * Unless required by applicable law or agreed to in writing, software
 13  
  * distributed under the License is distributed on an "AS IS" BASIS,
 14  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 15  
  * See the License for the specific language governing permissions and
 16  
  * limitations under the License.
 17  
  */
 18  
 
 19  
 import com.jcraft.jsch.JSch;
 20  
 import com.jcraft.jsch.JSchException;
 21  
 import com.jcraft.jsch.UserInfo;
 22  
 
 23  
 import java.util.Properties;
 24  
 
 25  
 /**
 26  
  * Provides a way to add Known Hosts fingerprints to the JSch transport
 27  
  *
 28  
  * @author Juan F. Codagnone
 29  
  * @since Sep 12, 2005
 30  
  */
 31  
 public interface KnownHostsProvider
 32  
 {
 33  0
     String ROLE = KnownHostsProvider.class.getName();
 34  
 
 35  
     String HOST_KEY_CHECKING = "StrictHostKeyChecking";
 36  
 
 37  
     /**
 38  
      * Adds to the session all the known hosts
 39  
      * 
 40  
      * @param sch JSch transport
 41  
      */
 42  
     void addKnownHosts( JSch sch, UserInfo userInfo )
 43  
         throws JSchException;
 44  
 
 45  
     void addConfiguration( Properties config );
 46  
 
 47  
     void storeKnownHosts( JSch sch );
 48  
 
 49  
     void setHostKeyChecking( String hostKeyChecking );
 50  
 
 51  
     String getHostKeyChecking();
 52  
 }