7 lines
121 B
Java
7 lines
121 B
Java
|
/**
|
||
|
* Interface without any methods
|
||
|
* Marker interface is based on that assumption
|
||
|
*/
|
||
|
public interface Permission {
|
||
|
}
|