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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Dec 22 12:01:07 EST 2009


Author: jaikiran
Date: 2009-12-22 12:01:06 -0500 (Tue, 22 Dec 2009)
New Revision: 98336

Removed:
   projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jad-api/src/main/javax/enterprise/deploy/model/J2eeApplicationObject.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/model/J2eeApplicationObject.java

Deleted: projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jad-api/src/main/javax/enterprise/deploy/model/J2eeApplicationObject.java
===================================================================
--- projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jad-api/src/main/javax/enterprise/deploy/model/J2eeApplicationObject.java	2009-12-22 17:00:23 UTC (rev 98335)
+++ projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jad-api/src/main/javax/enterprise/deploy/model/J2eeApplicationObject.java	2009-12-22 17:01:06 UTC (rev 98336)
@@ -1,107 +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.model;
-
-import javax.enterprise.deploy.shared.ModuleType;
-
-/**
- * A deployable object for an ear
- * 
- * @author <a href="mailto:adrian at jboss.org">Adrian Brock</a>
- * @version $Revision$
- */
-public interface J2eeApplicationObject extends DeployableObject
-{
-   // Constants -----------------------------------------------------
-   
-   // Public --------------------------------------------------------
-
-   /**
-    * Retrieve a deployable object
-    *
-    * @param uri describes where to get the deployable object
-    * @return the deployable object or null if there is no such object
-    */
-   DeployableObject getDeployableObject(String uri);
-
-   /**
-    * Get all deployable objects in this application of the given module type
-    *
-    * @param type the module type
-    * @return the deployable objects or null if there are no such objects
-    */
-   DeployableObject[] getDeployableObjects(ModuleType type);
-   
-   /**
-    * Get all deployable objects in this application
-    *
-    * @return the deployable objects or null are no such objects
-    */
-   DeployableObject[] getDeployableObjects();
-   
-   /**
-    * Return the list of module uris for a give module type
-    *
-    * @param type the module type
-    * @return the uris or null if there are none
-    */
-   String[] getModuleUris(ModuleType type);
-   
-   /**
-    * Return the list of module uris
-    *
-    * @return the uris or null if there are none
-    */
-   String[] getModuleUris();
-   
-   /**
-    * Get the child elements with the specified xpath
-    *
-    * @param xpath the xpath of the children
-    * @return an array of children or null if there are none
-    */
-   DDBean[] getChildBean(ModuleType type, String xpath);
-   
-   /**
-    * Get the text for the given xpath
-    *
-    * @param xpath the xpath
-    * @return an array of Strings for the xpath or null if there are none
-    */
-   String[] getText(ModuleType type, String xpath);
-   
-   /**
-    * Register a listener for a given xpath
-    *
-    * @param xpath the xpath
-    * @param xpl the listener
-    */
-   void addXpathListener(ModuleType type, String xpath, XpathListener xpl);
-   
-   /**
-    * Unregister a listener for a given xpath
-    *
-    * @param xpath the xpath
-    * @param xpl the listener
-    */
-   void removeXpathListener(ModuleType type, String xpath, XpathListener xpl);
-}
\ No newline at end of file




More information about the jboss-cvs-commits mailing list