11 lines
169 B
Java
11 lines
169 B
Java
|
/**
|
||
|
* Created by Alexis on 29-Apr-17.
|
||
|
*/
|
||
|
public class Guard implements Permission {
|
||
|
|
||
|
protected static void enter() {
|
||
|
System.out.println("You can enter");
|
||
|
}
|
||
|
|
||
|
}
|