| com.atlassian.bitbucket.scm.ssh.SshScmRequestHandler | 
    
Public Methods
    
      
    
      
    
    
    
    
    
      
  
      
  This method is deprecated.
 in 5.12 for removal in 6.0. Handlers should implement create(SshScmRequestContext) instead.
  
  Returns an SshScmRequest if this handler can handle the supplied command string, or
 empty() otherwise.
      Parameters
      
        
          | command | the command from the remote client (e.g. "git-upload-pack path/to/repository") | 
        
          | stdin | the InputStreamfor reading from the remote client'sstdinstream | 
        
          | stdout | the OutputStreamfor writing to the remote client'sstdoutstream | 
        
          | stderr | the OutputStreamfor writing to the remote client'sstderrstream | 
        
          | exitCodeCallback | used to set the exit code returned to the remote client (If the callback is not invoked
                         a return code of 1 will be used) | 
      
   
  
      Returns
      - an SshScmRequestif this handler supports the specified command, orempty()to
         indicate that this factory does not support the command
 
  
     
 
    
      
    
      
    
    
    
      
  Returns an SshScmRequest if this handler can handle the supplied command string, or
 empty() otherwise.
      Parameters
      
        
          | context | context describing the request, which can be used by the handler implementation to determine
                whether it supports the request or not | 
      
   
  
      Returns
      - an SshScmRequestif this handler supports the specified command, orempty()to
         indicate that this factory does not support the command
 
  
     
 
    
      
        
        public
        
        
        
        
        boolean
      
      supports
      (String command)
    
      
    
      
    
      
  
  
      Parameters
      
        
          | command | the command String passed from the remote SSH client (e.g. "git-upload-pack path/to/repository") | 
      
   
  
      Returns
      - trueif the handler supports the supplied command,- falseotherwise