1 7 package org.jboss.security.auth.login; 8 9 import javax.management.ObjectName ; 10 11 import org.jboss.system.ServiceMBean; 12 13 18 public interface DynamicLoginConfigMBean 19 extends ServiceMBean 20 { 21 23 public String getAuthConfig(); 24 27 public void setAuthConfig(String authConf); 28 29 32 public ObjectName getLoginConfigService(); 33 38 public void setLoginConfigService(ObjectName serviceName); 39 40 44 public void flushAuthenticationCaches() throws Exception ; 45 46 50 public ObjectName getSecurityManagerService(); 51 52 59 public void setSecurityManagerService(ObjectName serviceName); 60 61 } 62 | Popular Tags |