1 /* 2 * JBoss, the OpenSource EJB server 3 * 4 * Distributable under LGPL license. 5 * See terms of license at gnu.org. 6 */ 7 package org.jboss.security; 8 9 10 /** An interface describing an AppPolicy security store. It is used by 11 the SecurityPolicy class to isolate the source of security information 12 from the SecurityPolicy. 13 14 @author Scott.Stark@jboss.org 15 @version $Revision: 1.3 $ 16 */ 17 public interface IAppPolicyStore 18 { 19 public AppPolicy getAppPolicy(String appName); 20 public void refresh(); 21 22 /** @link aggregation 23 * @supplierCardinality 1..* 24 * @clientCardinality 1*/ 25 /*#AppPolicy lnkAppPolicy;*/ 26 } 27