KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > rmi > CORBA > ClassDesc


1 /*
2  * @(#)ClassDesc.java 1.13 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7 /*
8  * Licensed Materials - Property of IBM
9  * RMI-IIOP v1.0
10  * Copyright IBM Corp. 1998 1999 All Rights Reserved
11  *
12  * US Government Users Restricted Rights - Use, duplication or
13  * disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
14  */

15
16 package javax.rmi.CORBA;
17
18 /**
19  * This class is used to marshal java.lang.Class objects over IIOP.
20  */

21 public class ClassDesc implements java.io.Serializable JavaDoc {
22
23     /**
24      * @serial The class's RepositoryId.
25      */

26     private String JavaDoc repid;
27
28     /**
29      * @serial A space-separated list of codebase URLs.
30      */

31     private String JavaDoc codebase;
32 }
33
Popular Tags