1 /* 2 * JBoss, the OpenSource J2EE webOS 3 * 4 * Distributable under LGPL license. 5 * See terms of license at gnu.org. 6 */ 7 package org.jboss.security; 8 9 /** An interface for factories of SecurityProxy objects. It is used 10 to create a SecurityProxy from a security delegate object that is 11 not a SecurityProxy instance. 12 13 @author Scott.Stark@jboss.org 14 @version $Revision: 1.4 $ 15 */ 16 public interface SecurityProxyFactory 17 { 18 public SecurityProxy create(Object proxyDelegate); 19 } 20