Package org.jboss.iiop.rmi.ir

Examples of org.jboss.iiop.rmi.ir.InterfaceRepository


         MetaData.getOptionalChildBooleanContent(
                         proxyFactoryConfig, "interface-repository-supported");

      if (interfaceRepositorySupported) {
         // Create a CORBA interface repository for the enterprise bean
         iri = new InterfaceRepository(orb, irPoa, jndiName);
        
         // Add bean interface info to the interface repository
         iri.mapClass(((EJBProxyFactoryContainer)container).getRemoteClass());
         iri.mapClass(((EJBProxyFactoryContainer)container).getHomeClass());
         iri.finishBuild();
View Full Code Here


      }
     
      IIOP iiop = getIIOP();
      if(iiop.interfaceRepositorySupported())
      {
         this.iri = new InterfaceRepository(orb, irPoa, getJndiName());
         iri.mapClass(remoteInterfaces[0]);
         if(homeInterface != null)
            iri.mapClass(homeInterface);
         iri.finishBuild();
      }
View Full Code Here

         MetaData.getOptionalChildBooleanContent(
                         proxyFactoryConfig, "interface-repository-supported");

      if (interfaceRepositorySupported) {
         // Create a CORBA interface repository for the enterprise bean
         iri = new InterfaceRepository(orb, irPoa, jndiName);
        
         // Add bean interface info to the interface repository
         iri.mapClass(((EJBProxyFactoryContainer)container).getRemoteClass());
         iri.mapClass(((EJBProxyFactoryContainer)container).getHomeClass());
         iri.finishBuild();
View Full Code Here

/* 279 */     Element proxyFactoryConfig = this.invokerMetaData.getProxyFactoryConfig();
/* 280 */     boolean interfaceRepositorySupported = MetaData.getOptionalChildBooleanContent(proxyFactoryConfig, "interface-repository-supported");
/*     */
/* 284 */     if (interfaceRepositorySupported)
/*     */     {
/* 286 */       this.iri = new InterfaceRepository(this.orb, this.irPoa, this.jndiName);
/*     */
/* 289 */       this.iri.mapClass(((EJBProxyFactoryContainer)this.container).getRemoteClass());
/* 290 */       this.iri.mapClass(((EJBProxyFactoryContainer)this.container).getHomeClass());
/* 291 */       this.iri.finishBuild();
/*     */
View Full Code Here

/*     */     }
/*     */
/* 275 */     IIOP iiop = getIIOP();
/* 276 */     if (iiop.interfaceRepositorySupported())
/*     */     {
/* 278 */       this.iri = new InterfaceRepository(this.orb, this.irPoa, getJndiName());
/* 279 */       this.iri.mapClass(remoteInterfaces[0]);
/* 280 */       if (homeInterface != null)
/* 281 */         this.iri.mapClass(homeInterface);
/* 282 */       this.iri.finishBuild();
/*     */     }
View Full Code Here

TOP

Related Classes of org.jboss.iiop.rmi.ir.InterfaceRepository

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.