jboynes 2003/08/15 18:32:55
Modified: specs/jsr88/src/java/javax/enterprise/deploy/model
DDBean.java DDBeanRoot.java DeployableObject.java
J2eeApplicationObject.java XpathEvent.java
XpathListener.java
specs/jsr88/src/java/javax/enterprise/deploy/shared
ActionType.java CommandType.java
DConfigBeanVersionType.java ModuleType.java
StateType.java
specs/jsr88/src/java/javax/enterprise/deploy/shared/factories
DeploymentFactoryManager.java
specs/jsr88/src/java/javax/enterprise/deploy/spi
DConfigBean.java DConfigBeanRoot.java
DeploymentConfiguration.java DeploymentManager.java
Target.java TargetModuleID.java
specs/jsr88/src/java/javax/enterprise/deploy/spi/exceptions
BeanNotFoundException.java
ClientExecuteException.java
ConfigurationException.java
DConfigBeanVersionUnsupportedException.java
DeploymentManagerCreationException.java
InvalidModuleException.java
OperationUnsupportedException.java
TargetException.java
specs/jsr88/src/java/javax/enterprise/deploy/spi/factories
DeploymentFactory.java
specs/jsr88/src/java/javax/enterprise/deploy/spi/status
ClientConfiguration.java DeploymentStatus.java
ProgressEvent.java ProgressListener.java
ProgressObject.java
Added: specs/jsr88/src/java/javax/enterprise/deploy/model/exceptions
DDBeanCreateException.java
Log:
Patch from Maas van den Berg [EMAIL PROTECTED] for changes in maintenance
release of spec
Tidied imports and added class level javadoc
Revision Changes Path
1.2 +8 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/model/DDBean.java
Index: DDBean.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/model/DDBean.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- DDBean.java 14 Aug 2003 16:12:51 -0000 1.1
+++ DDBean.java 16 Aug 2003 01:32:54 -0000 1.2
@@ -59,6 +59,10 @@
*/
package javax.enterprise.deploy.model;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public interface DDBean {
public String getXpath();
@@ -75,4 +79,8 @@
public void addXpathListener(String xpath, XpathListener xpl);
public void removeXpathListener(String xpath, XpathListener xpl);
+
+ public String[] getAttributeNames();
+
+ public String getAttributeValue(String attrName);
}
1.2 +11 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/model/DDBeanRoot.java
Index: DDBeanRoot.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/model/DDBeanRoot.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- DDBeanRoot.java 14 Aug 2003 16:12:51 -0000 1.1
+++ DDBeanRoot.java 16 Aug 2003 01:32:54 -0000 1.2
@@ -61,12 +61,23 @@
import javax.enterprise.deploy.shared.ModuleType;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public interface DDBeanRoot extends DDBean {
public ModuleType getType();
public DeployableObject getDeployableObject();
+ /**
+ * @deprecated
+ */
public String getModuleDTDVersion();
+ public String getDDBeanRootVersion();
+
public String getXpath();
+
+ public String getFilename();
}
1.2 +19 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/model/DeployableObject.java
Index: DeployableObject.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/model/DeployableObject.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- DeployableObject.java 14 Aug 2003 16:12:51 -0000 1.1
+++ DeployableObject.java 16 Aug 2003 01:32:54 -0000 1.2
@@ -59,8 +59,16 @@
*/
package javax.enterprise.deploy.model;
+import java.io.FileNotFoundException;
+import java.io.InputStream;
+import java.util.Enumeration;
+import javax.enterprise.deploy.model.exceptions.DDBeanCreateException;
import javax.enterprise.deploy.shared.ModuleType;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public interface DeployableObject {
public ModuleType getType();
@@ -71,4 +79,15 @@
public String[] getText(String xpath);
public Class getClassFromScope(String className);
+
+ /**
+ * @deprecated
+ */
+ public String getModuleDTDVersion();
+
+ public DDBeanRoot getDDBeanRoot(String filename) throws
FileNotFoundException, DDBeanCreateException;
+
+ public Enumeration entries();
+
+ public InputStream getEntry(String name);
}
1.2 +4 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/model/J2eeApplicationObject.java
Index: J2eeApplicationObject.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/model/J2eeApplicationObject.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- J2eeApplicationObject.java 14 Aug 2003 16:12:51 -0000 1.1
+++ J2eeApplicationObject.java 16 Aug 2003 01:32:54 -0000 1.2
@@ -61,6 +61,10 @@
import javax.enterprise.deploy.shared.ModuleType;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public interface J2eeApplicationObject extends DeployableObject {
public DeployableObject getDeployableObject(String uri);
1.2 +4 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/model/XpathEvent.java
Index: XpathEvent.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/model/XpathEvent.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- XpathEvent.java 14 Aug 2003 16:12:51 -0000 1.1
+++ XpathEvent.java 16 Aug 2003 01:32:54 -0000 1.2
@@ -61,6 +61,10 @@
import java.beans.PropertyChangeEvent;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public class XpathEvent {
/[EMAIL PROTECTED] is this the right ? */
public static final Object BEAN_ADDED = new Object();
1.2 +4 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/model/XpathListener.java
Index: XpathListener.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/model/XpathListener.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- XpathListener.java 14 Aug 2003 16:12:51 -0000 1.1
+++ XpathListener.java 16 Aug 2003 01:32:54 -0000 1.2
@@ -59,6 +59,10 @@
*/
package javax.enterprise.deploy.model;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public interface XpathListener {
public void fireXpathEvent(XpathEvent xpe);
}
1.1
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/model/exceptions/DDBeanCreateException.java
Index: DDBeanCreateException.java
===================================================================
/* ====================================================================
* The Apache Software License, Version 1.1
*
* Copyright (c) 2003 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Apache" and "Apache Software Foundation" and
* "Apache Geronimo" must not be used to endorse or promote products
* derived from this software without prior written permission. For
* written permission, please contact [EMAIL PROTECTED]
*
* 5. Products derived from this software may not be called "Apache",
* "Apache Geronimo", nor may "Apache" appear in their name, without
* prior written permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*
* This source code implements specifications defined by the Java
* Community Process. In order to remain compliant with the specification
* DO NOT add / change / or delete method signatures!
*
* ====================================================================
*/
package javax.enterprise.deploy.model.exceptions;
/**
*
* @version $Revision: 1.1 $ $Date: 2003/08/16 01:32:54 $
*/
public class DDBeanCreateException extends Exception {
public DDBeanCreateException() {
super();
}
public DDBeanCreateException(String msg) {
super(msg);
}
}
1.2 +4 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/shared/ActionType.java
Index: ActionType.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/shared/ActionType.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ActionType.java 14 Aug 2003 16:12:52 -0000 1.1
+++ ActionType.java 16 Aug 2003 01:32:54 -0000 1.2
@@ -59,6 +59,10 @@
*/
package javax.enterprise.deploy.shared;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public class ActionType {
private static int MAX_VALUE = 2;
1.2 +6 -2
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/shared/CommandType.java
Index: CommandType.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/shared/CommandType.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- CommandType.java 14 Aug 2003 16:12:52 -0000 1.1
+++ CommandType.java 16 Aug 2003 01:32:54 -0000 1.2
@@ -59,6 +59,10 @@
*/
package javax.enterprise.deploy.shared;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public class CommandType {
private static final int MAX_VALUE = 4;
@@ -68,7 +72,7 @@
public static final CommandType UNDEPLOY = new CommandType(3);
public static final CommandType REDEPLOY = new CommandType(4);
- private static final CommandType[] enumValueTable = new CommandType[] {
+ private static final CommandType[] enumValueTable = new CommandType[]{
DISTRIBUTE,
START,
STOP,
@@ -76,7 +80,7 @@
REDEPLOY,
};
- private static final String[] stringTable = new String[] {
+ private static final String[] stringTable = new String[]{
"distribute",
"start",
"stop",
1.2 +5 -1
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/shared/DConfigBeanVersionType.java
Index: DConfigBeanVersionType.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/shared/DConfigBeanVersionType.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- DConfigBeanVersionType.java 14 Aug 2003 16:12:52 -0000 1.1
+++ DConfigBeanVersionType.java 16 Aug 2003 01:32:54 -0000 1.2
@@ -59,6 +59,10 @@
*/
package javax.enterprise.deploy.shared;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public class DConfigBeanVersionType {
private static final int MAX_VALUE = 2;
@@ -90,7 +94,7 @@
}
protected String[] getStringTable() {
- return stringTable;
+ return stringTable;
}
protected DConfigBeanVersionType[] getEnumValueTable() {
1.2 +4 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/shared/ModuleType.java
Index: ModuleType.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/shared/ModuleType.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ModuleType.java 14 Aug 2003 16:12:52 -0000 1.1
+++ ModuleType.java 16 Aug 2003 01:32:54 -0000 1.2
@@ -59,6 +59,10 @@
*/
package javax.enterprise.deploy.shared;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public class ModuleType {
private static final int MAX_VALUE = 4;
1.2 +4 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/shared/StateType.java
Index: StateType.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/shared/StateType.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- StateType.java 14 Aug 2003 16:12:52 -0000 1.1
+++ StateType.java 16 Aug 2003 01:32:54 -0000 1.2
@@ -59,6 +59,10 @@
*/
package javax.enterprise.deploy.shared;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public class StateType {
private static final int MAX_VALUE = 3;
public static final StateType RUNNING = new StateType(0);
1.2 +15 -8
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/shared/factories/DeploymentFactoryManager.java
Index: DeploymentFactoryManager.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/shared/factories/DeploymentFactoryManager.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- DeploymentFactoryManager.java 14 Aug 2003 16:12:52 -0000 1.1
+++ DeploymentFactoryManager.java 16 Aug 2003 01:32:54 -0000 1.2
@@ -65,11 +65,18 @@
import java.util.Iterator;
import java.util.ArrayList;
-public class DeploymentFactoryManager {
+/**
+ *
+ * @version $Revision$ $Date$
+ */
+public final class DeploymentFactoryManager {
private static DeploymentFactoryManager instance;
private ArrayList deploymentFactories = new ArrayList();
+ private DeploymentFactoryManager() {
+ }
+
public static DeploymentFactoryManager getInstance() {
if (instance == null) {
instance = new DeploymentFactoryManager();
@@ -77,13 +84,6 @@
return instance;
}
- public void registerDeploymentFactory(DeploymentFactory factory) {
- // apparently we dont care about null values, the Sun RI even adds
the null
- // to the list. So after registerDeploymentFactory(null)
getDeploymentFactories()
- // return an array with length 1.
- deploymentFactories.add(factory);
- }
-
public DeploymentFactory[] getDeploymentFactories() {
return (DeploymentFactory[]) deploymentFactories.toArray(new
DeploymentFactory[]{});
}
@@ -124,5 +124,12 @@
}
}
throw new DeploymentManagerCreationException("Could not get
DeploymentManager");
+ }
+
+ public void registerDeploymentFactory(DeploymentFactory factory) {
+ // apparently we dont care about null values, the Sun RI even adds
the null
+ // to the list. So after registerDeploymentFactory(null)
getDeploymentFactories()
+ // return an array with length 1.
+ deploymentFactories.add(factory);
}
}
1.2 +4 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/DConfigBean.java
Index: DConfigBean.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/DConfigBean.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- DConfigBean.java 14 Aug 2003 16:12:52 -0000 1.1
+++ DConfigBean.java 16 Aug 2003 01:32:54 -0000 1.2
@@ -65,6 +65,10 @@
import javax.enterprise.deploy.spi.exceptions.BeanNotFoundException;
import java.beans.PropertyChangeListener;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public interface DConfigBean {
public DDBean getDDBean();
1.2 +7 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/DConfigBeanRoot.java
Index: DConfigBeanRoot.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/DConfigBeanRoot.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- DConfigBeanRoot.java 14 Aug 2003 16:12:52 -0000 1.1
+++ DConfigBeanRoot.java 16 Aug 2003 01:32:54 -0000 1.2
@@ -59,5 +59,12 @@
*/
package javax.enterprise.deploy.spi;
+import javax.enterprise.deploy.model.DDBeanRoot;
+
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public interface DConfigBeanRoot extends DConfigBean {
+ public DConfigBean getDConfigBean(DDBeanRoot ddBeanRoot);
}
1.2 +4 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/DeploymentConfiguration.java
Index: DeploymentConfiguration.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/DeploymentConfiguration.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- DeploymentConfiguration.java 14 Aug 2003 16:12:52 -0000 1.1
+++ DeploymentConfiguration.java 16 Aug 2003 01:32:54 -0000 1.2
@@ -66,6 +66,10 @@
import java.io.OutputStream;
import java.io.InputStream;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public interface DeploymentConfiguration {
public DeployableObject getDeployableObject();
1.2 +4 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/DeploymentManager.java
Index: DeploymentManager.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/DeploymentManager.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- DeploymentManager.java 14 Aug 2003 16:12:52 -0000 1.1
+++ DeploymentManager.java 16 Aug 2003 01:32:54 -0000 1.2
@@ -70,6 +70,10 @@
import java.io.InputStream;
import java.util.Locale;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public interface DeploymentManager {
public Target[] getTargets() throws IllegalStateException;
1.2 +4 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/Target.java
Index: Target.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/Target.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Target.java 14 Aug 2003 16:12:52 -0000 1.1
+++ Target.java 16 Aug 2003 01:32:54 -0000 1.2
@@ -59,6 +59,10 @@
*/
package javax.enterprise.deploy.spi;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public interface Target {
public String getName();
1.2 +4 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/TargetModuleID.java
Index: TargetModuleID.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/TargetModuleID.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- TargetModuleID.java 14 Aug 2003 16:12:52 -0000 1.1
+++ TargetModuleID.java 16 Aug 2003 01:32:54 -0000 1.2
@@ -59,6 +59,10 @@
*/
package javax.enterprise.deploy.spi;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public interface TargetModuleID {
public Target getTarget();
1.2 +4 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/exceptions/BeanNotFoundException.java
Index: BeanNotFoundException.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/exceptions/BeanNotFoundException.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- BeanNotFoundException.java 14 Aug 2003 16:12:52 -0000 1.1
+++ BeanNotFoundException.java 16 Aug 2003 01:32:54 -0000 1.2
@@ -59,6 +59,10 @@
*/
package javax.enterprise.deploy.spi.exceptions;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public class BeanNotFoundException extends Exception {
public BeanNotFoundException(String s) {
super(s);
1.2 +8 -3
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/exceptions/ClientExecuteException.java
Index: ClientExecuteException.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/exceptions/ClientExecuteException.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ClientExecuteException.java 14 Aug 2003 16:12:52 -0000 1.1
+++ ClientExecuteException.java 16 Aug 2003 01:32:54 -0000 1.2
@@ -59,11 +59,16 @@
*/
package javax.enterprise.deploy.spi.exceptions;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public class ClientExecuteException extends Exception {
public ClientExecuteException() {
+ super();
}
- public ClientExecuteException(String msh) {
- super(msh);
+ public ClientExecuteException(String msg) {
+ super(msg);
}
-}
+}
\ No newline at end of file
1.2 +5 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/exceptions/ConfigurationException.java
Index: ConfigurationException.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/exceptions/ConfigurationException.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ConfigurationException.java 14 Aug 2003 16:12:52 -0000 1.1
+++ ConfigurationException.java 16 Aug 2003 01:32:54 -0000 1.2
@@ -59,8 +59,13 @@
*/
package javax.enterprise.deploy.spi.exceptions;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public class ConfigurationException extends Exception {
public ConfigurationException() {
+ super();
}
public ConfigurationException(String msg) {
1.2 +4 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/exceptions/DConfigBeanVersionUnsupportedException.java
Index: DConfigBeanVersionUnsupportedException.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/exceptions/DConfigBeanVersionUnsupportedException.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- DConfigBeanVersionUnsupportedException.java 14 Aug 2003 16:12:52
-0000 1.1
+++ DConfigBeanVersionUnsupportedException.java 16 Aug 2003 01:32:54
-0000 1.2
@@ -59,6 +59,10 @@
*/
package javax.enterprise.deploy.spi.exceptions;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public class DConfigBeanVersionUnsupportedException extends Exception {
public DConfigBeanVersionUnsupportedException(String s) {
super(s);
1.2 +4 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/exceptions/DeploymentManagerCreationException.java
Index: DeploymentManagerCreationException.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/exceptions/DeploymentManagerCreationException.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- DeploymentManagerCreationException.java 14 Aug 2003 16:12:52 -0000
1.1
+++ DeploymentManagerCreationException.java 16 Aug 2003 01:32:54 -0000
1.2
@@ -59,6 +59,10 @@
*/
package javax.enterprise.deploy.spi.exceptions;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public class DeploymentManagerCreationException extends Exception {
public DeploymentManagerCreationException(String s) {
super(s);
1.2 +4 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/exceptions/InvalidModuleException.java
Index: InvalidModuleException.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/exceptions/InvalidModuleException.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- InvalidModuleException.java 14 Aug 2003 16:12:52 -0000 1.1
+++ InvalidModuleException.java 16 Aug 2003 01:32:54 -0000 1.2
@@ -59,6 +59,10 @@
*/
package javax.enterprise.deploy.spi.exceptions;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public class InvalidModuleException extends Exception {
public InvalidModuleException(String s) {
super(s);
1.2 +4 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/exceptions/OperationUnsupportedException.java
Index: OperationUnsupportedException.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/exceptions/OperationUnsupportedException.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- OperationUnsupportedException.java 14 Aug 2003 16:12:52 -0000
1.1
+++ OperationUnsupportedException.java 16 Aug 2003 01:32:54 -0000
1.2
@@ -59,6 +59,10 @@
*/
package javax.enterprise.deploy.spi.exceptions;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public class OperationUnsupportedException extends Exception {
public OperationUnsupportedException(String s) {
super(s);
1.2 +5 -1
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/exceptions/TargetException.java
Index: TargetException.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/exceptions/TargetException.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- TargetException.java 14 Aug 2003 16:12:52 -0000 1.1
+++ TargetException.java 16 Aug 2003 01:32:54 -0000 1.2
@@ -59,7 +59,11 @@
*/
package javax.enterprise.deploy.spi.exceptions;
-public class TargetException extends Exception{
+/**
+ *
+ * @version $Revision$ $Date$
+ */
+public class TargetException extends Exception {
public TargetException(String s) {
super(s);
}
1.2 +4 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/factories/DeploymentFactory.java
Index: DeploymentFactory.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/factories/DeploymentFactory.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- DeploymentFactory.java 14 Aug 2003 16:12:52 -0000 1.1
+++ DeploymentFactory.java 16 Aug 2003 01:32:55 -0000 1.2
@@ -62,6 +62,10 @@
import
javax.enterprise.deploy.spi.exceptions.DeploymentManagerCreationException;
import javax.enterprise.deploy.spi.DeploymentManager;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public interface DeploymentFactory {
public boolean handlesURI(String uri);
1.2 +4 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/status/ClientConfiguration.java
Index: ClientConfiguration.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/status/ClientConfiguration.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ClientConfiguration.java 14 Aug 2003 16:12:52 -0000 1.1
+++ ClientConfiguration.java 16 Aug 2003 01:32:55 -0000 1.2
@@ -62,6 +62,10 @@
import javax.enterprise.deploy.spi.exceptions.ClientExecuteException;
import java.io.Serializable;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public interface ClientConfiguration extends Serializable {
public void execute() throws ClientExecuteException;
}
1.2 +4 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/status/DeploymentStatus.java
Index: DeploymentStatus.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/status/DeploymentStatus.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- DeploymentStatus.java 14 Aug 2003 16:12:52 -0000 1.1
+++ DeploymentStatus.java 16 Aug 2003 01:32:55 -0000 1.2
@@ -63,6 +63,10 @@
import javax.enterprise.deploy.shared.StateType;
import javax.enterprise.deploy.shared.ActionType;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public interface DeploymentStatus {
public StateType getState();
1.2 +4 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/status/ProgressEvent.java
Index: ProgressEvent.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/status/ProgressEvent.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ProgressEvent.java 14 Aug 2003 16:12:52 -0000 1.1
+++ ProgressEvent.java 16 Aug 2003 01:32:55 -0000 1.2
@@ -62,6 +62,10 @@
import javax.enterprise.deploy.spi.TargetModuleID;
import java.util.EventObject;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public class ProgressEvent extends EventObject {
private TargetModuleID targetModuleID;
private DeploymentStatus deploymentStatus;
1.2 +5 -1
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/status/ProgressListener.java
Index: ProgressListener.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/status/ProgressListener.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ProgressListener.java 14 Aug 2003 16:12:52 -0000 1.1
+++ ProgressListener.java 16 Aug 2003 01:32:55 -0000 1.2
@@ -61,6 +61,10 @@
import java.util.EventListener;
-public interface ProgressListener extends EventListener{
+/**
+ *
+ * @version $Revision$ $Date$
+ */
+public interface ProgressListener extends EventListener {
public void handleProgressEvent(ProgressEvent event);
}
1.2 +4 -0
incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/status/ProgressObject.java
Index: ProgressObject.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/specs/jsr88/src/java/javax/enterprise/deploy/spi/status/ProgressObject.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ProgressObject.java 14 Aug 2003 16:12:52 -0000 1.1
+++ ProgressObject.java 16 Aug 2003 01:32:55 -0000 1.2
@@ -62,6 +62,10 @@
import javax.enterprise.deploy.spi.TargetModuleID;
import javax.enterprise.deploy.spi.exceptions.OperationUnsupportedException;
+/**
+ *
+ * @version $Revision$ $Date$
+ */
public interface ProgressObject {
public DeploymentStatus getDeploymentStatus();