1 package com.sri.emo.controller; 2 3 4 /*** 5 * Permission 'Structure' in the classic C++ sense. 6 * 7 * @author Larry Hamel 8 */ 9 class Privs { 10 boolean isRead = false; 11 boolean isWrite = false; 12 boolean isAdmin = false; 13 }