Package org.apache.hadoop.mapreduce.v2.app.launcher

Examples of org.apache.hadoop.mapreduce.v2.app.launcher.ContainerLauncherImpl$Container


/* 106 */     if (ret != null)
/*     */     {
/* 108 */       return ret;
/*     */     }
/*     */
/* 111 */     Container container = Ejb3Registry.findContainer(this.containerGuid);
/* 112 */     if ((this.isClustered) && (container == null) && (Ejb3Registry.hasClusterContainer(this.containerClusterUid))) {
/* 113 */       container = Ejb3Registry.getClusterContainer(this.containerClusterUid);
/*     */     }
/* 115 */     if (container == null) {
/* 116 */       throw new EJBException("Invalid (i.e. remote) invocation of local interface (null container) for " + this.containerGuid);
View Full Code Here


/*    */   implements AspectFactory
/*    */ {
/*    */   public Object createPerClass(Advisor advisor)
/*    */   {
/* 50 */     Object domain = null;
/* 51 */     Container container = (Container)advisor;
/*    */     try
/*    */     {
/* 54 */       InitialContext ctx = container.getInitialContext();
/* 55 */       SecurityDomain securityAnnotation = (SecurityDomain)advisor.resolveAnnotation(SecurityDomain.class);
/*    */
/* 58 */       if (securityAnnotation == null) {
/* 59 */         return new NullInterceptor();
/*    */       }
View Full Code Here

/*    */ {
/* 38 */   private static final Logger log = Logger.getLogger(AuthenticationInterceptorFactory.class);
/*    */
/*    */   public Object createPerClass(Advisor advisor)
/*    */   {
/* 42 */     Container container = (Container)advisor;
/* 43 */     AuthenticationManager manager = (AuthenticationManager)container.getSecurityManager(AuthenticationManager.class);
/* 44 */     log.debug("Creating interceptor with authentication manager '" + manager + "'" + (manager != null ? " (security domain '" + manager.getSecurityDomain() + "')" : ""));
/*    */
/* 47 */     return new Ejb3AuthenticationInterceptorv2(container);
/*    */   }
View Full Code Here

/* 57 */     throw new RuntimeException(e);
/*    */   }
/*    */
/*    */   protected RealmMapping getSecurityManager(Advisor advisor)
/*    */   {
/* 63 */     Container container = (Container)advisor;
/* 64 */     return (RealmMapping)container.getSecurityManager(RealmMapping.class);
/*    */   }
View Full Code Here

/*     */   public static final String PARTITION_NAME = "PARTITION_NAME";
/*     */
/*     */   public Object invoke(Invocation invocation)
/*     */     throws Throwable
/*     */   {
/*  50 */     Container localContainer = findLocalContainer(invocation);
/*  51 */     if (localContainer != null)
/*     */     {
/*  53 */       return invokeLocal(invocation, localContainer);
/*     */     }
/*  55 */     return invocation.invokeNext();
View Full Code Here

/*     */   private Container findLocalContainer(Invocation invocation)
/*     */   {
/*  60 */     String guid = (String)invocation.getMetaData("IS_LOCAL", "GUID");
/*  61 */     String partitionName = (String)invocation.getMetaData("PARTITION_NAME", "PARTITION_NAME");
/*     */
/*  63 */     Container container = null;
/*     */     try
/*     */     {
/*  66 */       container = Ejb3Registry.findContainer(guid);
/*  67 */       if (container == null)
/*     */       {
View Full Code Here

/*     */   public Object invoke(Invocation invocation) throws Throwable
/*     */   {
/*  67 */     if (isLocal())
/*     */     {
/*  69 */       String guid = (String)invocation.getMetaData("IS_LOCAL", "GUID");
/*  70 */       Container container = Ejb3Registry.getContainer(guid);
/*     */
/*  72 */       return invokeLocal(invocation, container);
/*     */     }
/*  74 */     return invocation.invokeNext();
/*     */   }
View Full Code Here

/*     */     }
/*     */
/* 152 */     Iterator containers = Ejb3Registry.getContainers().iterator();
/* 153 */     while (containers.hasNext())
/*     */     {
/* 155 */       Container container = (Container)containers.next();
/* 156 */       EJBContainer ejbContainer = (EJBContainer)container;
/* 157 */       if (ejbContainer != rtnContainer)
/* 158 */         if (ProxyFactoryHelper.publishesInterface(container, businessIntf))
/*     */         {
/* 160 */           if (rtnContainer != null)
View Full Code Here

   }
  
   public void test1()
   {
      ThreadlocalPool pool = new ThreadlocalPool();
      Container container = new MockContainer();
      int maxSize = -1;
      int timeout = -1;
      pool.initialize(container, maxSize, timeout);
      BeanContext ctx = pool.get();
      pool.release(ctx);
View Full Code Here

   }
  
   public void testWithThreads() throws Exception
   {
      final ThreadlocalPool pool = new ThreadlocalPool();
      Container container = new MockContainer();
      int maxSize = -1;
      int timeout = -1;
      pool.initialize(container, maxSize, timeout);
     
      Runnable r = new Runnable()
View Full Code Here

TOP

Related Classes of org.apache.hadoop.mapreduce.v2.app.launcher.ContainerLauncherImpl$Container

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.