Package org.jboss.verifier.strategy

Examples of org.jboss.verifier.strategy.EJBVerifier21


      {
         verifier = new EJBVerifier20(this);
      }
      else if (VERSION_2_1.equals(version))
      {
         verifier=new EJBVerifier21(this);
      }
      else
      {
         throw new IllegalArgumentException( UNRECOGNIZED_VERSION +
            ": " + version);
View Full Code Here


/*     */     {
/* 274 */       this.verifier = new EJBVerifier20(this);
/*     */     }
/* 276 */     else if ("Enterprise JavaBeans V2.1, Final Release".equals(version))
/*     */     {
/* 278 */       this.verifier = new EJBVerifier21(this);
/*     */     }
/*     */     else
/*     */     {
/* 282 */       throw new IllegalArgumentException("Unknown version string: " + version);
/*     */     }
View Full Code Here

TOP

Related Classes of org.jboss.verifier.strategy.EJBVerifier21

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.