类org.omg.CORBA.Context源码实例Demo

下面列出了怎么用org.omg.CORBA.Context的API类实例代码及写法,或者点击链接到github查看源代码。

源代码1 项目: cxf   文件: CorbaConduit.java
public Request getRequest(CorbaMessage message,
                             String opName,
                             org.omg.CORBA.NVList nvlist,
                             org.omg.CORBA.NamedValue ret,
                             org.omg.CORBA.ExceptionList exList)
    throws Exception {
    Request request = null;
    if (orb == null) {
        prepareOrb();
    }
    ContextList ctxList = orb.create_context_list();
    Context ctx = null;
    try {
        ctx = orb.get_default_context();
    } catch (Exception ex) {
        //ignore?
    }

    org.omg.CORBA.Object targetObj =
        (org.omg.CORBA.Object)message.get(CorbaConstants.CORBA_ENDPOINT_OBJECT);
    if (targetObj != null) {
        request = targetObj._create_request(ctx, opName, nvlist, ret, exList, ctxList);
    }
    return request;
}
 
源代码2 项目: hottub   文件: CorbaClientDelegateImpl.java
public Request create_request(org.omg.CORBA.Object obj,
                              Context ctx,
                              String operation,
                              NVList arg_list,
                              NamedValue result,
                              ExceptionList exclist,
                              ContextList ctxlist)
{
    return new RequestImpl(orb, obj, ctx, operation, arg_list, result,
                           exclist, ctxlist);
}
 
源代码3 项目: openjdk-jdk9   文件: CorbaClientDelegateImpl.java
public Request create_request(org.omg.CORBA.Object obj,
                              Context ctx,
                              String operation,
                              NVList arg_list,
                              NamedValue result,
                              ExceptionList exclist,
                              ContextList ctxlist)
{
    return new RequestImpl(orb, obj, ctx, operation, arg_list, result,
                           exclist, ctxlist);
}
 
public Context ctx()
{
    if ( !_paramsCalled || _resultSet || _exceptionSet )
        throw _wrapper.contextCalledOutOfOrder() ;

    throw _wrapper.contextNotImplemented() ;
}
 
public Request create_request(org.omg.CORBA.Object obj,
                              Context ctx,
                              String operation,
                              NVList arg_list,
                              NamedValue result)
{
    return new RequestImpl(orb, obj, ctx, operation, arg_list,
                           result, null, null);
}
 
public Request create_request(org.omg.CORBA.Object obj,
                              Context ctx,
                              String operation,
                              NVList arg_list,
                              NamedValue result,
                              ExceptionList exclist,
                              ContextList ctxlist)
{
    return new RequestImpl(orb, obj, ctx, operation, arg_list, result,
                           exclist, ctxlist);
}
 
源代码7 项目: TencentKona-8   文件: CorbaClientDelegateImpl.java
public Request create_request(org.omg.CORBA.Object obj,
                              Context ctx,
                              String operation,
                              NVList arg_list,
                              NamedValue result,
                              ExceptionList exclist,
                              ContextList ctxlist)
{
    return new RequestImpl(orb, obj, ctx, operation, arg_list, result,
                           exclist, ctxlist);
}
 
源代码8 项目: hottub   文件: ServerRequestImpl.java
public Context ctx()
{
    if ( !_paramsCalled || _resultSet || _exceptionSet )
        throw _wrapper.contextCalledOutOfOrder() ;

    throw _wrapper.contextNotImplemented() ;
}
 
源代码9 项目: cxf   文件: CorbaDSIServantTest.java
@Test
public void testInvoke() throws Exception {

    CorbaDestination dest = new TestUtils().getComplexTypesTestDestination();


    CorbaDSIServant dsiServant = new CorbaDSIServant();
    dsiServant.init(orb, null, dest, null);
    ServerRequest request = new ServerRequest() {
        public String operation() {
            return "greetMe";
        }
        public Context ctx() {
            return null;
        }

    };

    MessageObserver incomingObserver = new TestObserver();
    dsiServant.setObserver(incomingObserver);

    Map<String, QName> map = new HashMap<>(2);

    map.put("greetMe", new QName("greetMe"));
    dsiServant.setOperationMapping(map);

    dsiServant.invoke(request);
}
 
源代码10 项目: jdk8u60   文件: CorbaClientDelegateImpl.java
public Request create_request(org.omg.CORBA.Object obj,
                              Context ctx,
                              String operation,
                              NVList arg_list,
                              NamedValue result)
{
    return new RequestImpl(orb, obj, ctx, operation, arg_list,
                           result, null, null);
}
 
源代码11 项目: openjdk-8   文件: ServerRequestImpl.java
public Context ctx()
{
    if ( !_paramsCalled || _resultSet || _exceptionSet )
        throw _wrapper.contextCalledOutOfOrder() ;

    throw _wrapper.contextNotImplemented() ;
}
 
源代码12 项目: JDKSourceCode1.8   文件: ServerRequestImpl.java
public Context ctx()
{
    if ( !_paramsCalled || _resultSet || _exceptionSet )
        throw _wrapper.contextCalledOutOfOrder() ;

    throw _wrapper.contextNotImplemented() ;
}
 
源代码13 项目: JDKSourceCode1.8   文件: CorbaClientDelegateImpl.java
public Request create_request(org.omg.CORBA.Object obj,
                              Context ctx,
                              String operation,
                              NVList arg_list,
                              NamedValue result)
{
    return new RequestImpl(orb, obj, ctx, operation, arg_list,
                           result, null, null);
}
 
源代码14 项目: JDKSourceCode1.8   文件: CorbaClientDelegateImpl.java
public Request create_request(org.omg.CORBA.Object obj,
                              Context ctx,
                              String operation,
                              NVList arg_list,
                              NamedValue result,
                              ExceptionList exclist,
                              ContextList ctxlist)
{
    return new RequestImpl(orb, obj, ctx, operation, arg_list, result,
                           exclist, ctxlist);
}
 
public Request create_request(org.omg.CORBA.Object obj,
                              Context ctx,
                              String operation,
                              NVList arg_list,
                              NamedValue result,
                              ExceptionList exclist,
                              ContextList ctxlist)
{
    return new RequestImpl(orb, obj, ctx, operation, arg_list, result,
                           exclist, ctxlist);
}
 
源代码16 项目: openjdk-jdk8u-backup   文件: ContextImpl.java
public ContextImpl(Context parent)
{
    throw wrapper.contextNotImplemented() ;
}
 
源代码17 项目: jdk1.8-source-analysis   文件: StubWrapper.java
public Request _create_request( Context ctx, String operation, NVList arg_list,
    NamedValue result)
{
    return object._create_request( ctx, operation, arg_list, result ) ;
}
 
/**
 * See RequestInfoImpl for javadoc.
 */
public String[] operation_context (){
    checkAccess( MID_OPERATION_CONTEXT );

    if( cachedOperationContext == null ) {
        if( request == null ) {
            throw stdWrapper.piOperationNotSupported4() ;
        }

        // Get the list of contexts from DII request data, If there are
        // no contexts then this method will return null.
        Context ctx = request.ctx( );
        // _REVISIT_ The API for get_values is not compliant with the spec,
        // Revisit this code once it's fixed.
        // _REVISIT_ Our ORB doesn't support Operation Context, This code
        // will not be excerscised until it's supported.
        // The first parameter in get_values is the start_scope which
        // if blank makes it as a global scope.
        // The second parameter is op_flags which is set to RESTRICT_SCOPE
        // As there is only one defined in the spec.
        // The Third param is the pattern which is '*' requiring it to
        // get all the contexts.
        NVList nvList = ctx.get_values( "", CTX_RESTRICT_SCOPE.value,"*" );
        String[] context = new String[(nvList.count() * 2) ];
        if( ( nvList != null ) &&( nvList.count() != 0 ) ) {
            // The String[] array will contain Name and Value for each
            // context and hence double the size in the array.
            int index = 0;
            for( int i = 0; i < nvList.count(); i++ ) {
                NamedValue nv;
                try {
                    nv = nvList.item( i );
                }
                catch (Exception e ) {
                    return (String[]) null;
                }
                context[index] = nv.name();
                index++;
                context[index] = nv.value().extract_string();
                index++;
            }
        }

        cachedOperationContext = context;
    }

    // Good citizen: In the interest of efficiency, we assume
    // interceptors will be "good citizens" in that they will not
    // modify the contents of the String[] array.

    return cachedOperationContext;
}
 
源代码19 项目: jdk1.8-source-analysis   文件: RequestImpl.java
public synchronized Context ctx()
{
    if (_ctx == null)
        _ctx = new ContextImpl(_orb);
    return _ctx;
}
 
源代码20 项目: openjdk-jdk9   文件: StubWrapper.java
public Request _create_request( Context ctx, String operation, NVList arg_list,
    NamedValue result, ExceptionList exclist, ContextList ctxlist)
{
    return object._create_request( ctx, operation, arg_list, result,
        exclist, ctxlist ) ;
}
 
源代码21 项目: jdk1.8-source-analysis   文件: ContextImpl.java
public ContextImpl(Context parent)
{
    throw wrapper.contextNotImplemented() ;
}
 
源代码22 项目: jdk1.8-source-analysis   文件: ContextImpl.java
public Context create_child(String name)
{
    throw wrapper.contextNotImplemented() ;
}
 
源代码23 项目: openjdk-8   文件: ORBImpl.java
/**
 * Get the default Context object
 *
 * @result          the default Context object
 */
public synchronized org.omg.CORBA.Context get_default_context()
{
    checkShutdownState();
    throw wrapper.genericNoImpl() ;
}
 
源代码24 项目: jdk1.8-source-analysis   文件: ORBImpl.java
/**
 * Get the default Context object
 *
 * @result          the default Context object
 */
public synchronized org.omg.CORBA.Context get_default_context()
{
    checkShutdownState();
    throw wrapper.genericNoImpl() ;
}
 
源代码25 项目: openjdk-8-source   文件: RequestImpl.java
public RequestImpl (ORB orb,
                    org.omg.CORBA.Object targetObject,
                    Context ctx,
                    String operationName,
                    NVList argumentList,
                    NamedValue resultContainer,
                    ExceptionList exceptionList,
                    ContextList ctxList)
{

    // initialize the orb
    _orb    = orb;
    _wrapper = ORBUtilSystemException.get( orb,
        CORBALogDomains.OA_INVOCATION ) ;

    // initialize target, context and operation name
    _target     = targetObject;
    _ctx    = ctx;
    _opName = operationName;

    // initialize argument list if not passed in
    if (argumentList == null)
        _arguments = new NVListImpl(_orb);
    else
        _arguments = argumentList;

    // set result container.
    _result = resultContainer;

    // initialize exception list if not passed in
    if (exceptionList == null)
        _exceptions = new ExceptionListImpl();
    else
        _exceptions = exceptionList;

    // initialize context list if not passed in
    if (ctxList == null)
        _ctxList = new ContextListImpl(_orb);
    else
        _ctxList = ctxList;

    // initialize environment
    _env    = new EnvironmentImpl();

}
 
源代码26 项目: openjdk-8-source   文件: ProxyInputStream.java
@Override
public Context read_Context() {
    return in.read_Context();
}
 
源代码27 项目: openjdk-jdk9   文件: TestSingletonOrbImpl.java
@Override
public Context get_default_context() {
    return null;
}
 
源代码28 项目: openjdk-jdk8u-backup   文件: ContextImpl.java
public Context create_child(String name)
{
    throw wrapper.contextNotImplemented() ;
}
 
源代码29 项目: TencentKona-8   文件: StubWrapper.java
public Request _create_request( Context ctx, String operation, NVList arg_list,
    NamedValue result, ExceptionList exclist, ContextList ctxlist)
{
    return object._create_request( ctx, operation, arg_list, result,
        exclist, ctxlist ) ;
}
 
源代码30 项目: openjdk-jdk9   文件: ORBSingleton.java
public org.omg.CORBA.Context get_default_context()
{
    throw wrapper.genericNoImpl() ;
}
 
 类所在包
 类方法
 同包方法