KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > carol > jndi > wrapping > JNDIResourceWrapper


1 /**
2  * Copyright (C) 2002,2005 - INRIA (www.inria.fr)
3  *
4  * CAROL: Common Architecture for RMI ObjectWeb Layer
5  *
6  * This library is developed inside the ObjectWeb Consortium,
7  * http://www.objectweb.org
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22  * USA
23  *
24  * --------------------------------------------------------------------------
25  * $Id: JNDIResourceWrapper.java,v 1.3 2005/02/08 09:43:11 benoitf Exp $
26  * --------------------------------------------------------------------------
27  */

28 package org.objectweb.carol.jndi.wrapping;
29
30 import java.io.Serializable JavaDoc;
31 import java.rmi.RemoteException JavaDoc;
32
33 /**
34  * Class <code> JNDIResourceWrapper </code> is the CAROL Remote Resource
35  * implementation. This implementation make the serializable resource wrapping
36  * to/from a remote object
37  * @author Guillaume Riviere (Guillaume.Riviere@inrialpes.fr)
38  */

39 public class JNDIResourceWrapper implements JNDIRemoteResource {
40
41     /**
42      * <code>Serializable</code> resource to wrap
43      */

44     private Serializable JavaDoc resource;
45
46     /**
47      * constructor, export this object
48      * @param resource the <code>Serializable</code> resource to wrap
49      */

50     public JNDIResourceWrapper(Serializable JavaDoc resource) {
51         super();
52         this.resource = resource;
53     }
54
55     /**
56      * Get the <code>Serializable</code> resource
57      * @return the <code>Serializable</code> resource
58      * @throws RemoteException if the resource cannot be returned
59      */

60     public Serializable JavaDoc getResource() throws RemoteException JavaDoc {
61         return resource;
62     }
63 }
Popular Tags