Source code: com/flexstor/ejb/bucket/persist/BucketPersistHome.java
1 /*
2 * BucketPersistHome.java
3 *
4 * Copyright $Date: 2003/08/11 02:22:43 $ FLEXSTOR.net Inc.
5 *
6 * This work is licensed for use and distribution under license terms found at
7 * http://www.flexstor.org/license.html
8 *
9 */
10
11 package com.flexstor.ejb.bucket.persist;
12
13 import java.rmi.RemoteException;
14
15 import javax.ejb.CreateException;
16
17 import com.flexstor.common.exceptions.ejb.EjbException;
18 import com.flexstor.ejb.EjbHome;
19
20 /**
21 * This is the Home Interface for acquiring a client
22 * Object.
23 *
24 * @author Daniel J. Nickel
25 * @version $Id: BucketPersistHome.java,v 1.2 2003/08/11 02:22:43 aleric Exp $
26 * @since FlexDB 3.0
27 * @see com.flexstor.ejb.bucket.persist.BucketPersist
28 */
29
30 public interface BucketPersistHome
31 extends EjbHome
32 {
33 /* MKS Identifier */
34 public final static String IDENTIFIER="$Id: BucketPersistHome.java,v 1.2 2003/08/11 02:22:43 aleric Exp $";
35
36 /**
37 * Constructor to create client Interface.
38 *
39 * @exception javax.ejb.CreateException
40 * @exception java.rmi.RemoteException
41 */
42 BucketPersist create()
43 throws EjbException, CreateException, RemoteException;
44
45 }