1 25 26 package org.objectweb.jonas_ejb.deployment.api; 27 28 import java.util.List ; 29 import org.objectweb.jonas_ejb.deployment.xml.MethodPermission; 30 31 36 public class MethodPermissionDesc extends CommonMethodDesc { 37 38 41 private List roleNameList = null; 42 43 46 private boolean unchecked = false; 47 48 49 53 public MethodPermissionDesc(MethodPermission methodPermission) { 54 super(methodPermission.getMethodList()); 55 this.unchecked = methodPermission.isUnchecked(); 56 this.roleNameList = methodPermission.getRoleNameList(); 57 } 58 59 60 64 public List getRoleNameList() { 65 return roleNameList; 66 } 67 68 69 73 public boolean isUnchecked() { 74 return unchecked; 75 } 76 77 } 78 | Popular Tags |