Subversion Repositories SmartDukaan

Rev

Rev 32408 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.service.SshServer;


import org.springframework.stereotype.Service;

import java.util.List;
import java.util.Map;

@Service
public interface SSHService {
    void executeCommand(String ipAddress, int port, String username, String password, String commandToExec);
    Map<String, List<String>> readDirectory(String path);
}