Package org.apache.geronimo.corba.dii

Examples of org.apache.geronimo.corba.dii.RequestImpl


  }

  public org.omg.CORBA.Request create_request(org.omg.CORBA.Object self,
      org.omg.CORBA.Context ctx, String operation,
      org.omg.CORBA.NVList arg_list, org.omg.CORBA.NamedValue result) {
    return new RequestImpl(orb, (org.omg.CORBA.portable.ObjectImpl) self,
        operation, ctx, (NVListImpl) arg_list, (NamedValueImpl) result);
  }
View Full Code Here


  public org.omg.CORBA.Request create_request(org.omg.CORBA.Object self,
      org.omg.CORBA.Context ctx, String operation,
      org.omg.CORBA.NVList arg_list, org.omg.CORBA.NamedValue result,
      org.omg.CORBA.ExceptionList excepts,
      org.omg.CORBA.ContextList contexts) {
    return new RequestImpl(orb, (org.omg.CORBA.portable.ObjectImpl) self,
        operation, ctx, (NVListImpl) arg_list, (NamedValueImpl) result,
        (ExceptionListImpl) excepts, contexts);
  }
View Full Code Here

        (ExceptionListImpl) excepts, contexts);
  }

  public org.omg.CORBA.Request request(org.omg.CORBA.Object self,
      String operation) {
    return new RequestImpl(orb, (org.omg.CORBA.portable.ObjectImpl) self,
        operation);
  }
View Full Code Here

TOP

Related Classes of org.apache.geronimo.corba.dii.RequestImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.