001    /***** Copyright (c) 1999-2000 Object Management Group. Unlimited rights to 
002           duplicate and use this code are hereby granted provided that this 
003           copyright notice is included.
004    *****/
005    
006    /***** This class is ORB-vendor specific. 
007           A "dummy" implementation is provided so that the "official" org.omg.*
008           packages may be compiled.  In order to actually use a Java ORB,
009           the ORB vendor's implementation will provide a "real"
010           implementation of the class.
011    
012           In order to be conformant the class shall support the signatures
013           specified here, but will have an orb-specific implementation.
014    
015           The class may support additional vendor specific functionality.
016           It shall have at least the inheritance relationships specified
017           here. Any additional (vendor specific) inheritance relationships may 
018           only be with other classes and interfaces that are guaranteed to be 
019           present in the JDK core.
020    *****/
021    
022    package org.omg.PortableServer.ServantLocatorPackage;
023    
024    public class CookieHolder implements org.omg.CORBA.portable.Streamable {
025    
026        public java.lang.Object value;
027    
028        public CookieHolder() {
029        }
030    
031        public CookieHolder(java.lang.Object intial) {
032            this.value = intial;
033        }
034    
035        public void _read(org.omg.CORBA.portable.InputStream input) {
036            throw new org.omg.CORBA.NO_IMPLEMENT();
037        }
038    
039        public void _write(org.omg.CORBA.portable.OutputStream output) {
040            throw new org.omg.CORBA.NO_IMPLEMENT();
041        }
042    
043        public org.omg.CORBA.TypeCode _type() {
044            throw new org.omg.CORBA.NO_IMPLEMENT();
045        }
046    
047    }