/[classpath]/classpath/gnu/CORBA/GIOP/v1_2/RequestHeader.java
ViewVC logotype

Diff of /classpath/gnu/CORBA/GIOP/v1_2/RequestHeader.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by mark, Sat Jul 2 20:32:09 2005 UTC revision 1.4 by audriusa, Tue Oct 4 17:58:15 2005 UTC
# Line 38  exception statement from your version. * Line 38  exception statement from your version. *
38    
39  package gnu.CORBA.GIOP.v1_2;  package gnu.CORBA.GIOP.v1_2;
40    
41    import gnu.CORBA.Minor;
42  import gnu.CORBA.CDR.cdrInput;  import gnu.CORBA.CDR.cdrInput;
43  import gnu.CORBA.CDR.cdrOutput;  import gnu.CORBA.CDR.cdrOutput;
44  import gnu.CORBA.GIOP.ServiceContext;  import gnu.CORBA.GIOP.ServiceContext;
# Line 58  import org.omg.CORBA.NO_IMPLEMENT; Line 59  import org.omg.CORBA.NO_IMPLEMENT;
59  public class RequestHeader  public class RequestHeader
60    extends gnu.CORBA.GIOP.v1_0.RequestHeader    extends gnu.CORBA.GIOP.v1_0.RequestHeader
61  {  {
62      /**
63       * Use serialVersionUID for interoperability.
64       */
65      private static final long serialVersionUID = 1;
66      
67    /**    /**
68     * Indicates that the object is addressed by the object key.     * Indicates that the object is addressed by the object key.
69     */     */
# Line 150  public class RequestHeader Line 156  public class RequestHeader
156                throw new NO_IMPLEMENT("Object addressing by by IOR addressing info");                throw new NO_IMPLEMENT("Object addressing by by IOR addressing info");
157    
158              default :              default :
159                throw new MARSHAL("Unknow addressing method in request, " +                MARSHAL m = new MARSHAL("Unknow addressing method in request, " +
160                                  AddressingDisposition                                  AddressingDisposition
161                                 );                                 );
162                  m.minor = Minor.UnsupportedAddressing;
163                  throw m;
164            }            }
165    
166          operation = in.read_string();          operation = in.read_string();
# Line 164  public class RequestHeader Line 172  public class RequestHeader
172      catch (IOException ex)      catch (IOException ex)
173        {        {
174          MARSHAL t = new MARSHAL();          MARSHAL t = new MARSHAL();
175            t.minor = Minor.Header;
176          t.initCause(ex);          t.initCause(ex);
177          throw t;          throw t;
178        }        }

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26