Examples of JNDIBindingPolicyProcessor


Examples of org.jboss.metadata.process.processor.ejb.jboss.JNDIBindingPolicyProcessor

    *
    * @see org.jboss.ejb3.deployers.metadata.processor.JBossMetaDataProcessorFactory#create(org.jboss.deployers.structure.spi.DeploymentUnit)
    */
   public JBossMetaDataProcessor<JBossMetaData> create(DeploymentUnit deploymentUnit)
   {
      return new JNDIBindingPolicyProcessor();
   }
View Full Code Here

Examples of org.jboss.metadata.process.processor.ejb.jboss.JNDIBindingPolicyProcessor

      assertNotNull("Metadata created out of jboss.xml was null", jbossMetadata);
     
      // run the metadata through a processor which is responsible for setting the
      // correct jndi-binding-policy on each bean
      JBossMetaData processedMetadata = new JNDIBindingPolicyProcessor().process(jbossMetadata);
     
      // make sure that the jndi-binding-policy at top level jboss.xml is set
      String jndiBindingPolicy = processedMetadata.getJndiBindingPolicy();
      assertNotNull("jndi-binding-policy not set in metadata created out of jboss.xml", jndiBindingPolicy);
      // This is what is set in the jboss.xml
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.