[jboss-cvs] JBossAS SVN: r75384 - projects/microcontainer/trunk/aop-mc-int/src/tests/org/jboss/test/aop/junit.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Jul 4 06:00:38 EDT 2008


Author: kabir.khan at jboss.com
Date: 2008-07-04 06:00:38 -0400 (Fri, 04 Jul 2008)
New Revision: 75384

Removed:
   projects/microcontainer/trunk/aop-mc-int/src/tests/org/jboss/test/aop/junit/JBossXBTestDelegate.java
   projects/microcontainer/trunk/aop-mc-int/src/tests/org/jboss/test/aop/junit/tempforjbossxb/
Log:
The forcejaxb stuff is retired, now it always uses jaxb

Deleted: projects/microcontainer/trunk/aop-mc-int/src/tests/org/jboss/test/aop/junit/JBossXBTestDelegate.java
===================================================================
--- projects/microcontainer/trunk/aop-mc-int/src/tests/org/jboss/test/aop/junit/JBossXBTestDelegate.java	2008-07-04 09:58:33 UTC (rev 75383)
+++ projects/microcontainer/trunk/aop-mc-int/src/tests/org/jboss/test/aop/junit/JBossXBTestDelegate.java	2008-07-04 10:00:38 UTC (rev 75384)
@@ -1,171 +0,0 @@
-/*
-* JBoss, Home of Professional Open Source
-* Copyright 2006, JBoss Inc., and individual contributors as indicated
-* by the @authors tag. See the copyright.txt in the distribution for a
-* full listing of individual contributors.
-*
-* This is free software; you can redistribute it and/or modify it
-* under the terms of the GNU Lesser General Public License as
-* published by the Free Software Foundation; either version 2.1 of
-* the License, or (at your option) any later version.
-*
-* This software is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-* Lesser General Public License for more details.
-*
-* You should have received a copy of the GNU Lesser General Public
-* License along with this software; if not, write to the Free
-* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-*/
-package org.jboss.test.aop.junit;
-
-import java.lang.reflect.Method;
-import java.net.URL;
-
-import org.jboss.net.protocol.URLStreamHandlerFactory;
-import org.jboss.test.AbstractTestDelegate;
-import org.jboss.xb.binding.Unmarshaller;
-import org.jboss.xb.binding.UnmarshallerFactory;
-import org.jboss.xb.binding.sunday.unmarshalling.DefaultSchemaResolver;
-import org.jboss.xb.binding.sunday.unmarshalling.SchemaBinding;
-import org.jboss.xb.binding.sunday.unmarshalling.SchemaBindingResolver;
-import org.jboss.xb.binding.sunday.unmarshalling.XsdBinder;
-
-/**
- * JBossXBTestDelegate.
- *
- * @author <a href="ales.justin at jboss.com">Ales Justin</a>
- * @author <a href="adrian at jboss.com">Adrian Brock</a>
- * @version $Revision: 40492 $
- */
-public class JBossXBTestDelegate extends AbstractTestDelegate
-{
-   /** Whether initialization has been done */
-   private static boolean done = false;
-
-   /** The unmarshaller factory */
-   protected UnmarshallerFactory unmarshallerFactory;
-
-   /** The resolver */
-   protected SchemaBindingResolver defaultResolver;
-
-   /**
-    * Initialize
-    */
-   public synchronized static void init()
-   {
-      if (done)
-         return;
-      done = true;
-      URL.setURLStreamHandlerFactory(new URLStreamHandlerFactory());
-      URLStreamHandlerFactory.preload();
-      String handlerPkgs = System.getProperty("java.protocol.handler.pkgs");
-      if (handlerPkgs != null)
-         handlerPkgs += "|org.jboss.net.protocol";
-      else
-         handlerPkgs = "org.jboss.net.protocol";
-      System.setProperty("java.protocol.handler.pkgs", handlerPkgs);
-   }
-
-   /**
-    * Create a new JBossXBTestDelegate.
-    *
-    * @param clazz the test class
-    */
-   public JBossXBTestDelegate(Class<?> clazz)
-   {
-      super(clazz);
-   }
-
-   @Override
-   public void setUp() throws Exception
-   {
-      super.setUp();
-      init();
-      unmarshallerFactory = UnmarshallerFactory.newInstance();
-      initResolver();
-   }
-
-   protected void initResolver() throws Exception
-   {
-      try
-      {
-         Method method = clazz.getMethod("initResolver");
-         defaultResolver = (SchemaBindingResolver) method.invoke(null);
-      }
-      catch (NoSuchMethodException ignored)
-      {
-         defaultResolver = new DefaultSchemaResolver();
-      }
-   }
-
-   /**
-    * Unmarshal an object
-    *
-    * @param url the url
-    * @param resolver the resolver
-    * @return the object
-    * @throws Exception for any error
-    */
-   public Object unmarshal(String url, SchemaBindingResolver resolver) throws Exception
-   {
-      if (resolver == null)
-         resolver = defaultResolver;
-
-      long start = System.currentTimeMillis();
-      Unmarshaller unmarshaller = unmarshallerFactory.newUnmarshaller();
-      log.debug("Initialized parsing in " + (System.currentTimeMillis() - start) + "ms");
-      try
-      {
-         Object result = unmarshaller.unmarshal(url, resolver);
-         log.debug("Total parse for " + url + " took " + (System.currentTimeMillis() - start) + "ms");
-         return result;
-      }
-      catch (Exception e)
-      {
-         log.debug("Error during parsing: " + url, e);
-         throw e;
-      }
-   }
-
-   /**
-    * Unmarshal an object
-    *
-    * @param url the url
-    * @param schema the schema
-    * @return the object
-    * @throws Exception for any error
-    */
-   public Object unmarshal(String url, SchemaBinding schema) throws Exception
-   {
-      long start = System.currentTimeMillis();
-      Unmarshaller unmarshaller = unmarshallerFactory.newUnmarshaller();
-      log.debug("Initialized parsing in " + (System.currentTimeMillis() - start) + "ms");
-      try
-      {
-         Object result = unmarshaller.unmarshal(url, schema);
-         log.debug("Total parse for " + url + " took " + (System.currentTimeMillis() - start) + "ms");
-         return result;
-      }
-      catch (Exception e)
-      {
-         log.debug("Error during parsing: " + url, e);
-         throw e;
-      }
-   }
-
-   /**
-    * Bind a schema
-    *
-    * @param url the url
-    * @param resolver the resolver
-    * @return the object
-    * @throws Exception for any error
-    */
-   public SchemaBinding bind(String url, SchemaBindingResolver resolver) throws Exception
-   {
-      return XsdBinder.bind(url, resolver);
-   }
-}




More information about the jboss-cvs-commits mailing list