[jboss-cvs] JBossAS SVN: r98358 - projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jad-api/src/main/javax/enterprise/deploy/spi.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Dec 22 12:04:10 EST 2009


Author: jaikiran
Date: 2009-12-22 12:04:10 -0500 (Tue, 22 Dec 2009)
New Revision: 98358

Removed:
   projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jad-api/src/main/javax/enterprise/deploy/spi/DConfigBean.java
Log:
Autoversioning commit:  a non-deltaV client made a change to
/projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jad-api/src/main/javax/enterprise/deploy/spi/DConfigBean.java

Deleted: projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jad-api/src/main/javax/enterprise/deploy/spi/DConfigBean.java
===================================================================
--- projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jad-api/src/main/javax/enterprise/deploy/spi/DConfigBean.java	2009-12-22 17:03:56 UTC (rev 98357)
+++ projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jad-api/src/main/javax/enterprise/deploy/spi/DConfigBean.java	2009-12-22 17:04:10 UTC (rev 98358)
@@ -1,95 +0,0 @@
-/*
-* JBoss, Home of Professional Open Source
-* Copyright 2005, 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 javax.enterprise.deploy.spi;
-
-import java.beans.PropertyChangeListener;
-
-import javax.enterprise.deploy.model.DDBean;
-import javax.enterprise.deploy.model.XpathEvent;
-import javax.enterprise.deploy.spi.exceptions.BeanNotFoundException;
-import javax.enterprise.deploy.spi.exceptions.ConfigurationException;
-
-/**
- * A configuration associated with one or more deployment descriptors.
- *
- * @author <a href="mailto:adrian at jboss.org">Adrian Brock</a>
- * @version $Revision$
- */
-public interface DConfigBean
-{
-   // Constants -----------------------------------------------------
-   
-   // Public --------------------------------------------------------
-   
-   /**
-    * Get the XML text for this configuration
-    *
-    * @return the xml text
-    */
-   DDBean getDDBean();
-   
-   /**
-    * Get the xpaths this deployment descriptor requires
-    *
-    * @return the xpaths
-    */
-   String[] getXpaths();
-   
-   /**
-    * Return the JavaBean containing server specific deployment information
-    *
-    * @param bean the xml data to be evaluated
-    * @return the server specific configuration 
-    * @throws ConfigurationException for errors generating the configuring bean
-    */
-   DConfigBean getDConfigBean(DDBean bean) throws ConfigurationException;
-   
-   /**
-    * Remove a child
-    *
-    * @param bean the child
-    * @throws BeanNotFoundException when the bean is not found
-    */
-   void removeDConfigBean(DConfigBean bean) throws BeanNotFoundException;
-   
-   /**
-    * A notification that the DDBean provided has changed and that this bean or
-    * child needs re-evaluating
-    *
-    * @param event the event
-    */
-   void notifyDDChange(XpathEvent event);
-   
-   /**
-    * Add a property change listener
-    *
-    * @param listener the listener
-    */
-   void addPropertyChangeListener(PropertyChangeListener listener);
-   
-   /**
-    * Remove a property change listener
-    *
-    * @param listener the listener
-    */
-   void removePropertyChangeListener(PropertyChangeListener listener);
-}




More information about the jboss-cvs-commits mailing list