| 1 9 package org.jboss.portal.test.core.security; 10 11 import java.util.Set ; 12 13 import org.jboss.portal.core.security.AuthorizationRealm; 14 15 22 public class AccessControllerAuthorizationRealm implements AuthorizationRealm 23 { 24 25 56 57 public boolean hasPermission(String domain, String role, String permission) 58 { 59 throw new UnsupportedOperationException (); 60 } 61 62 public boolean hasPermission(String domain, Set roles, String permission) 63 { 64 throw new UnsupportedOperationException (); 65 } 66 67 public boolean hasPermission(String domain, String role, String [] path, String permission) 68 { 69 throw new UnsupportedOperationException (); 70 } 71 72 public boolean hasPermission(String domain, Set roles, String [] path, String permission) 73 { 74 throw new UnsupportedOperationException (); 75 } 76 77 public boolean hasPermission(String role, String permission) 78 { 79 throw new UnsupportedOperationException (); 80 } 81 82 public boolean hasPermission(Set roles, String permission) 83 { 84 throw new UnsupportedOperationException (); 85 } 86 87 public boolean hasPermission(String role, String [] path, String permission) 88 { 89 throw new UnsupportedOperationException (); 90 } 91 92 public boolean hasPermission(Set roles, String [] path, String permission) 93 { 94 throw new UnsupportedOperationException (); 95 } 96 } 97 | Popular Tags |