Subversion Repositories SmartDukaan

Rev

Rev 32337 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 32337 Rev 32408
Line 1... Line 1...
1
package com.spice.profitmandi.service.SshServer;
1
package com.spice.profitmandi.service.SshServer;
2
 
2
 
3
public interface SSHService {
3
public interface SSHService {
4
    void RestartServer(String ipAddress, int port, String username, String password, String remoteDirectoryPath, String command,String rebootCommand );
4
    void executeCommand(String ipAddress, int port, String username, String password, String commandToExec);
5
}
5
}