package grader.Main; import java.util.Collection; /** * * This describes the file permissions to the current user, rwx * * @author * @version * **/ public class Permit { /** Default Constructor **/ public Permit() { } protected boolean is_readable; protected boolean is_writeable; protected boolean is_executable; }