protected JaasGroupAcl loadAcl(String fileName) throws Exception {
return (JaasGroupAcl)
IO.read(new File(fileName), new GroupAclSerializer());
}
protected void writeAcl(JaasGroupAcl acl, String fileName) throws Exception {
IO.write(acl, new GroupAclSerializer(), new File(fileName));
}