[jbossws-commits] JBossWS SVN: r14540 - in spi/trunk/src/main/java/org/jboss/wsf/spi/metadata: jms and 1 other directories.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Tue Jun 14 06:33:18 EDT 2011


Author: alessio.soldano at jboss.com
Date: 2011-06-14 06:33:18 -0400 (Tue, 14 Jun 2011)
New Revision: 14540

Removed:
   spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/DescriptorProcessor.java
   spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/jms/JMSDescriptorParser.java
   spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/jms/JMSDescriptorProcessor.java
   spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/webservices/WebservicesDescriptorProcessor.java
Log:
[JBWS-3312][JBWS-3307] Cleanup of old "JMS descriptor" parser and descriptor processor abstraction (which was deprecated in the past)


Deleted: spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/DescriptorProcessor.java
===================================================================
--- spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/DescriptorProcessor.java	2011-06-13 20:27:38 UTC (rev 14539)
+++ spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/DescriptorProcessor.java	2011-06-14 10:33:18 UTC (rev 14540)
@@ -1,49 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2010, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file 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.wsf.spi.metadata;
-
-
-/**
- * Descriptor processor is abstraction over configuration procesing.
- * @deprecated This will be replaced by {@link org.jboss.wsf.spi.metadata.DescriptorParser} interface.
- *
- * @author <a href="mailto:ropalka at redhat.com">Richard Opalka</a>
- */
- at Deprecated
-public interface DescriptorProcessor<T>
-{
-   /**
-    * Indicates whether validation is turned on or off.
-    * @return true if validation is on, false otherwise
-    */
-   boolean isValidating();
-   /**
-    * Descriptor name to parse and process.
-    * @return descriptor name to consume.
-    */
-   String getDescriptorName();   
-//   /**
-//    * OM factory building object tree from the configuration file.
-//    * @return OM factory
-//    */
-//   ObjectModelFactory getFactory(final URL url);
-}

Deleted: spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/jms/JMSDescriptorParser.java
===================================================================
--- spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/jms/JMSDescriptorParser.java	2011-06-13 20:27:38 UTC (rev 14539)
+++ spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/jms/JMSDescriptorParser.java	2011-06-14 10:33:18 UTC (rev 14540)
@@ -1,34 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2010, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file 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.wsf.spi.metadata.jms;
-
-import org.jboss.wsf.spi.metadata.DescriptorParser;
-
-/**
- * Parser for JMS UMDM.
- * 
- * @author <a href="mailto:ropalka at redhat.com">Richard Opalka</a>
- * @author <a href="mailto:alessio.soldano at jboss.com">Alessio Soldano</a>
- */
-public interface JMSDescriptorParser extends DescriptorParser<JMSEndpointsMetaData>
-{
-}

Deleted: spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/jms/JMSDescriptorProcessor.java
===================================================================
--- spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/jms/JMSDescriptorProcessor.java	2011-06-13 20:27:38 UTC (rev 14539)
+++ spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/jms/JMSDescriptorProcessor.java	2011-06-14 10:33:18 UTC (rev 14540)
@@ -1,35 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2010, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file 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.wsf.spi.metadata.jms;
-
-import org.jboss.wsf.spi.metadata.DescriptorProcessor;
-
-/**
- * Processor for JMS UMDM.
- * @deprecated To be replaced by {@link org.jboss.wsf.spi.metadata.jms.JMSDescriptorParser}
- * 
- * @author <a href="mailto:ropalka at redhat.com">Richard Opalka</a>
- */
- at Deprecated
-public interface JMSDescriptorProcessor extends DescriptorProcessor<JMSEndpointsMetaData>
-{
-}

Deleted: spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/webservices/WebservicesDescriptorProcessor.java
===================================================================
--- spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/webservices/WebservicesDescriptorProcessor.java	2011-06-13 20:27:38 UTC (rev 14539)
+++ spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/webservices/WebservicesDescriptorProcessor.java	2011-06-14 10:33:18 UTC (rev 14540)
@@ -1,35 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2010, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file 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.wsf.spi.metadata.webservices;
-
-import org.jboss.wsf.spi.metadata.DescriptorProcessor;
-
-/**
- * Processor for WS UMDM.
- * 
- * @author <a href="mailto:ropalka at redhat.com">Richard Opalka</a>
- * @deprecated To be replaced by {@link org.jboss.wsf.spi.metadata.webservices.DescriptorParser}
- */
- at Deprecated
-public interface WebservicesDescriptorProcessor extends DescriptorProcessor<WebservicesMetaData>
-{
-}



More information about the jbossws-commits mailing list