blob: f2783b22b49aee4c3ca99f2d94605f9850c4ec79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
package net.tuschhcm.routercontrol.router;
/**
* Interface specification for a router
*/
public interface Router {
/**
* Send the given input to the given output.
*
* @param output
* @param input
*
* @throws IllegalArgumentException if input or output are out of range.
*/
public void switchInput(int output, int input) throws IllegalArgumentException;
/**
* Power on or power off the router
*
* @param True to turn on the router
*/
public void setPower(boolean on);
/**
* Enable or disable physical controls
* @param enabled true to disable the controls.
*/
public void setLockControls(boolean enabled);
/**
* Close communications with the router.
*/
public void close();
}
|