/* * Copyright 2002 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package com.sun.s1peqe.security.authoriz.methodperms; import java.io.Serializable; import java.rmi.Remote; import java.rmi.RemoteException; import javax.ejb.EJBHome; import javax.ejb.CreateException; public interface MethodPermRemoteHome extends EJBHome { public MethodPermRemote create (String str) throws RemoteException, CreateException; }