Skip to content

Package: AbstractSshAuthentication

AbstractSshAuthentication

Coverage

1: /**
2: *
3: */
4: package update.remote.ssh.authentication;
5:
6: import java.io.File;
7:
8: import update.remote.exceptions.RemoteUpdateException;
9:
10: /**
11: * @author Muri
12: *
13: */
14: public interface AbstractSshAuthentication {
15:
16:         /**
17:          *
18:          * @param files
19:          * files
20:          * @throws RemoteUpdateException
21:          * RemoteUpdateException
22:          */
23:         void startSshRemoteUpdate(File[] files) throws RemoteUpdateException;
24: }