/* * Copyright 2002 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package beans; import java.rmi.RemoteException; import javax.ejb.EJBHome; import javax.ejb.CreateException; public interface VersionCheckerHome extends EJBHome { VersionChecker create() throws RemoteException, CreateException; }