1 package org.apache.beehive.wsm.axis.security; 2 3 18 19 import java.util.Collection ; 20 import org.apache.axis.MessageContext; 21 22 public interface SecurityModel 23 { 24 25 public static final String BEEHIVE_AUTHUSER= "BEEHIVE_AUTHUSER"; 26 27 public void init ( MessageContext msgContext ); 28 29 public boolean isUserInRole ( MessageContext msgContext, Collection <String > rolesAllowed ); 30 31 } 32 33 34 35 36 | Popular Tags |