Package org.apache.geronimo.naming.reference

Examples of org.apache.geronimo.naming.reference.HandleDelegateReference


    public void addORB(Artifact configId, AbstractNameQuery corbaGBeanObjectName) {
        context.put("ORB", new ORBReference(configId, corbaGBeanObjectName));
    }

    public void addHandleDelegateReference(Artifact configId, AbstractNameQuery corbaGBeanNameQuery) {
        context.put("HandleDelegate", new HandleDelegateReference(configId, corbaGBeanNameQuery));
    }
View Full Code Here


                AbstractNameQuery corbaName = corbaGBeanNameSource.getCorbaGBeanName();
                if (corbaName != null) {
                    Artifact[] moduleId = module.getConfigId();
                    Map context = getJndiContextMap(componentContext);
                    context.put("ORB", new ORBReference(moduleId, corbaName));
                    context.put("HandleDelegate", new HandleDelegateReference(moduleId, corbaName));
                }
            }
        }
    }
View Full Code Here

            if (corbaGBeanNameSource != null) {
                AbstractNameQuery corbaName = corbaGBeanNameSource.getCorbaGBeanName();
                if (corbaName != null) {
                    Artifact[] moduleId = module.getConfigId();
                    put("java:comp/ORB", new ORBReference(moduleId, corbaName), ReferenceType.ORB, module.getJndiContext(), Collections.<InjectionTarget>emptySet(), sharedContext);
                    put("java:comp/HandleDelegate", new HandleDelegateReference(moduleId, corbaName), ReferenceType.HANDLEDELEGATE, module.getJndiContext(), Collections.<InjectionTarget>emptySet(), sharedContext);
                }
            }
        }
    }
View Full Code Here

    public void addORB(Artifact configId, AbstractNameQuery corbaGBeanObjectName) {
        context.put("ORB", new ORBReference(configId, corbaGBeanObjectName));
    }

    public void addHandleDelegateReference(Artifact configId, AbstractNameQuery corbaGBeanNameQuery) {
        context.put("HandleDelegate", new HandleDelegateReference(configId, corbaGBeanNameQuery));
    }
View Full Code Here

            if (corbaGBeanNameSource != null) {
                AbstractNameQuery corbaName = corbaGBeanNameSource.getCorbaGBeanName();
                if (corbaName != null) {
                    Artifact[] moduleId = module.getConfigId();
                    put("env/ORB", new ORBReference(moduleId, corbaName), JNDI_KEY.get(sharedContext));
                    put("env/HandleDelegate", new HandleDelegateReference(moduleId, corbaName), JNDI_KEY.get(sharedContext));
                }
            }
        }
    }
View Full Code Here

                AbstractNameQuery corbaName = corbaGBeanNameSource.getCorbaGBeanName();
                if (corbaName != null) {
                    Artifact moduleId = localConfiguration.getId();
                    Map context = getJndiContextMap(componentContext);
                    context.put("ORB", new ORBReference(moduleId, corbaName));
                    context.put("HandleDelegate", new HandleDelegateReference(moduleId, corbaName));
                }
            }
        }
    }
View Full Code Here

                AbstractNameQuery corbaName = corbaGBeanNameSource.getCorbaGBeanName();
                if (corbaName != null) {
                    Artifact[] moduleId = module.getConfigId();
                    Map context = getJndiContextMap(componentContext);
                    context.put("ORB", new ORBReference(moduleId, corbaName));
                    context.put("HandleDelegate", new HandleDelegateReference(moduleId, corbaName));
                }
            }
        }
    }
View Full Code Here

                AbstractNameQuery corbaName = corbaGBeanNameSource.getCorbaGBeanName();
                if (corbaName != null) {
                    Artifact[] moduleId = module.getConfigId();
                    Map context = getJndiContextMap(componentContext);
                    context.put("ORB", new ORBReference(moduleId, corbaName));
                    context.put("HandleDelegate", new HandleDelegateReference(moduleId, corbaName));
                }
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.geronimo.naming.reference.HandleDelegateReference

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.