1 23 package com.sun.enterprise.deployment.interfaces; 24 25 29 public interface SecurityRoleMapperFactory { 30 31 35 public SecurityRoleMapper getRoleMapper(String appName); 36 37 41 public void removeRoleMapper(String appName); 42 43 48 public void setRoleMapper(String appName, SecurityRoleMapper rmap); 49 50 54 public String getAppNameForContext(String contextId); 55 59 public void setAppNameForContext(String appName, String contextId); 60 61 64 public void removeAppNameForContext(String contextId); 65 } 66 | Popular Tags |