1 16 package org.apache.cocoon.portal.tools.helper; 17 18 import org.apache.cocoon.portal.profile.PortalUser; 19 20 25 public class SingleRoleMatcher 26 implements RoleMatcher { 27 28 31 private final String role; 32 33 36 public SingleRoleMatcher(String role) { 37 this.role = role; 38 } 39 40 45 public boolean matches(PortalUser user) { 46 return user.isUserInRole(this.role); 47 } 48 } | Popular Tags |