Skip to content

Package: AbstractUpdate

AbstractUpdate

nameinstructionbranchcomplexitylinemethod
AbstractUpdate()
M: 3 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%

Coverage

1: package update.remote;
2:
3: import java.io.File;
4:
5: import update.remote.exceptions.RemoteUpdateException;
6:
7: /**
8: * Implement this class to get an Authentication Type. For example SSH or IMOND.
9: *
10: * @author Muri
11: *
12: */
13: public abstract class AbstractUpdate {
14:
15:         /**
16:          * start Update Process in given RemoteUpdate.
17:          *
18:          * @param files
19:          * files
20:          * @throws RemoteUpdateException
21:          * RemoteUpdateException
22:          */
23:         public abstract void initiateUpdate(File[] files) throws RemoteUpdateException;
24: }