/[classpath]/classpath/gnu/CORBA/Restricted_ORB.java
ViewVC logotype

Diff of /classpath/gnu/CORBA/Restricted_ORB.java

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

revision 1.1.2.1 by gnu_andrew, Fri May 20 18:20:49 2005 UTC revision 1.1.2.2 by gnu_andrew, Fri May 27 00:01:44 2005 UTC
# Line 49  import org.omg.CORBA.NO_IMPLEMENT; Line 49  import org.omg.CORBA.NO_IMPLEMENT;
49  import org.omg.CORBA.NVList;  import org.omg.CORBA.NVList;
50  import org.omg.CORBA.NamedValue;  import org.omg.CORBA.NamedValue;
51  import org.omg.CORBA.ORB;  import org.omg.CORBA.ORB;
52  import org.omg.CORBA.ORBPackage.InvalidName;  import org.omg.CORBA.Request;
53  import org.omg.CORBA.StructMember;  import org.omg.CORBA.StructMember;
54  import org.omg.CORBA.TCKind;  import org.omg.CORBA.TCKind;
55  import org.omg.CORBA.TypeCode;  import org.omg.CORBA.TypeCode;
 import org.omg.CORBA.TypeCodePackage.BadKind;  
56  import org.omg.CORBA.UnionMember;  import org.omg.CORBA.UnionMember;
57    
58    import org.omg.CORBA.ORBPackage.InvalidName;
59    import org.omg.CORBA.TypeCodePackage.BadKind;
60  import org.omg.CORBA.portable.OutputStream;  import org.omg.CORBA.portable.OutputStream;
61    
62  import java.applet.Applet;  import java.applet.Applet;
# Line 365  public class Restricted_ORB Line 367  public class Restricted_ORB
367      // malicious code is trying to do that it is not allowed.      // malicious code is trying to do that it is not allowed.
368      throw new NO_IMPLEMENT("Use init(args, props) for the functional version.");      throw new NO_IMPLEMENT("Use init(args, props) for the functional version.");
369    }    }
370  }  
371      /**
372       * This method is not allowed for a RestrictedORB.
373       *
374       * @throws NO_IMPLEMENT, always.
375       */
376      public Request get_next_response()
377                                throws org.omg.CORBA.WrongTransaction
378      {
379        no();
380        throw new InternalError();
381      }
382    
383      /**
384       * This method is not allowed for a RestrictedORB.
385       *
386       * @throws NO_IMPLEMENT, always.
387       */
388      public boolean poll_next_response()
389      {
390        no();
391        throw new InternalError();
392      }
393    
394      /**
395       * This method is not allowed for a RestrictedORB.
396       *
397       * @throws NO_IMPLEMENT, always.
398       */
399      public void send_multiple_requests_deferred(Request[] requests)
400      {
401        no();
402      }
403    
404      /**
405       * This method is not allowed for a RestrictedORB.
406       *
407       * @throws NO_IMPLEMENT, always.
408       */
409      public void send_multiple_requests_oneway(Request[] requests)
410      {
411        no();
412      }
413    }

Legend:
Removed from v.1.1.2.1  
changed lines
  Added in v.1.1.2.2

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