You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by db...@apache.org on 2006/12/02 03:27:21 UTC

svn commit: r481493 - in /geronimo/specs/trunk/geronimo-ejb_3.0_spec/src/main/java/javax/ejb: ConcurrentAccessException.java EJBAccessException.java EJBTransactionRequiredException.java EJBTransactionRolledbackException.java

Author: dblevins
Date: Fri Dec  1 18:27:15 2006
New Revision: 481493

URL: http://svn.apache.org/viewvc?view=rev&rev=481493
Log:
updated the license headers, accidentally used the old ones

Modified:
    geronimo/specs/trunk/geronimo-ejb_3.0_spec/src/main/java/javax/ejb/ConcurrentAccessException.java
    geronimo/specs/trunk/geronimo-ejb_3.0_spec/src/main/java/javax/ejb/EJBAccessException.java
    geronimo/specs/trunk/geronimo-ejb_3.0_spec/src/main/java/javax/ejb/EJBTransactionRequiredException.java
    geronimo/specs/trunk/geronimo-ejb_3.0_spec/src/main/java/javax/ejb/EJBTransactionRolledbackException.java

Modified: geronimo/specs/trunk/geronimo-ejb_3.0_spec/src/main/java/javax/ejb/ConcurrentAccessException.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-ejb_3.0_spec/src/main/java/javax/ejb/ConcurrentAccessException.java?view=diff&rev=481493&r1=481492&r2=481493
==============================================================================
--- geronimo/specs/trunk/geronimo-ejb_3.0_spec/src/main/java/javax/ejb/ConcurrentAccessException.java (original)
+++ geronimo/specs/trunk/geronimo-ejb_3.0_spec/src/main/java/javax/ejb/ConcurrentAccessException.java Fri Dec  1 18:27:15 2006
@@ -1,18 +1,20 @@
-/**
- *
- * Copyright 2006 The Apache Software Foundation
- *
- *  Licensed under the Apache License, Version 2.0 (the "License");
- *  you may not use this file except in compliance with the License.
- *  You may obtain a copy of the License at
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
  *
- *     http://www.apache.org/licenses/LICENSE-2.0
+ *  http://www.apache.org/licenses/LICENSE-2.0
  *
- *  Unless required by applicable law or agreed to in writing, software
- *  distributed under the License is distributed on an "AS IS" BASIS,
- *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- *  See the License for the specific language governing permissions and
- *  limitations under the License.
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
  */
 
 //
@@ -23,7 +25,18 @@
 package javax.ejb;
 
 /**
- * @version $Revision$ $Date$
+ * @version $Rev: 467742 $ $Date: 2006-10-25 12:30:38 -0700 (Wed, 25 Oct 2006) $
  */
-public class ConcurrentAccessException {
+public class ConcurrentAccessException extends EJBException {
+    public ConcurrentAccessException() {
+        super();
+    }
+
+    public ConcurrentAccessException(Exception ex) {
+        super(ex);
+    }
+
+    public ConcurrentAccessException(String message) {
+        super(message);
+    }
 }

Modified: geronimo/specs/trunk/geronimo-ejb_3.0_spec/src/main/java/javax/ejb/EJBAccessException.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-ejb_3.0_spec/src/main/java/javax/ejb/EJBAccessException.java?view=diff&rev=481493&r1=481492&r2=481493
==============================================================================
--- geronimo/specs/trunk/geronimo-ejb_3.0_spec/src/main/java/javax/ejb/EJBAccessException.java (original)
+++ geronimo/specs/trunk/geronimo-ejb_3.0_spec/src/main/java/javax/ejb/EJBAccessException.java Fri Dec  1 18:27:15 2006
@@ -1,18 +1,20 @@
-/**
- *
- * Copyright 2006 The Apache Software Foundation
- *
- *  Licensed under the Apache License, Version 2.0 (the "License");
- *  you may not use this file except in compliance with the License.
- *  You may obtain a copy of the License at
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
  *
- *     http://www.apache.org/licenses/LICENSE-2.0
+ *  http://www.apache.org/licenses/LICENSE-2.0
  *
- *  Unless required by applicable law or agreed to in writing, software
- *  distributed under the License is distributed on an "AS IS" BASIS,
- *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- *  See the License for the specific language governing permissions and
- *  limitations under the License.
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
  */
 
 //
@@ -23,7 +25,18 @@
 package javax.ejb;
 
 /**
- * @version $Revision$ $Date$
+ * @version $Rev: 467742 $ $Date: 2006-10-25 12:30:38 -0700 (Wed, 25 Oct 2006) $
  */
-public class EJBAccessException {
+public class EJBAccessException extends EJBException {
+    public EJBAccessException() {
+        super();
+    }
+
+    public EJBAccessException(Exception ex) {
+        super(ex);
+    }
+
+    public EJBAccessException(String message) {
+        super(message);
+    }
 }

Modified: geronimo/specs/trunk/geronimo-ejb_3.0_spec/src/main/java/javax/ejb/EJBTransactionRequiredException.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-ejb_3.0_spec/src/main/java/javax/ejb/EJBTransactionRequiredException.java?view=diff&rev=481493&r1=481492&r2=481493
==============================================================================
--- geronimo/specs/trunk/geronimo-ejb_3.0_spec/src/main/java/javax/ejb/EJBTransactionRequiredException.java (original)
+++ geronimo/specs/trunk/geronimo-ejb_3.0_spec/src/main/java/javax/ejb/EJBTransactionRequiredException.java Fri Dec  1 18:27:15 2006
@@ -1,18 +1,20 @@
-/**
- *
- * Copyright 2006 The Apache Software Foundation
- *
- *  Licensed under the Apache License, Version 2.0 (the "License");
- *  you may not use this file except in compliance with the License.
- *  You may obtain a copy of the License at
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
  *
- *     http://www.apache.org/licenses/LICENSE-2.0
+ *  http://www.apache.org/licenses/LICENSE-2.0
  *
- *  Unless required by applicable law or agreed to in writing, software
- *  distributed under the License is distributed on an "AS IS" BASIS,
- *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- *  See the License for the specific language governing permissions and
- *  limitations under the License.
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
  */
 
 //
@@ -23,7 +25,18 @@
 package javax.ejb;
 
 /**
- * @version $Revision$ $Date$
+ * @version $Rev: 467742 $ $Date: 2006-10-25 12:30:38 -0700 (Wed, 25 Oct 2006) $
  */
-public class EJBTransactionRequiredException {
+public class EJBTransactionRequiredException extends EJBException {
+    public EJBTransactionRequiredException() {
+        super();
+    }
+
+    public EJBTransactionRequiredException(Exception ex) {
+        super(ex);
+    }
+
+    public EJBTransactionRequiredException(String message) {
+        super(message);
+    }
 }

Modified: geronimo/specs/trunk/geronimo-ejb_3.0_spec/src/main/java/javax/ejb/EJBTransactionRolledbackException.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-ejb_3.0_spec/src/main/java/javax/ejb/EJBTransactionRolledbackException.java?view=diff&rev=481493&r1=481492&r2=481493
==============================================================================
--- geronimo/specs/trunk/geronimo-ejb_3.0_spec/src/main/java/javax/ejb/EJBTransactionRolledbackException.java (original)
+++ geronimo/specs/trunk/geronimo-ejb_3.0_spec/src/main/java/javax/ejb/EJBTransactionRolledbackException.java Fri Dec  1 18:27:15 2006
@@ -1,18 +1,20 @@
-/**
- *
- * Copyright 2006 The Apache Software Foundation
- *
- *  Licensed under the Apache License, Version 2.0 (the "License");
- *  you may not use this file except in compliance with the License.
- *  You may obtain a copy of the License at
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
  *
- *     http://www.apache.org/licenses/LICENSE-2.0
+ *  http://www.apache.org/licenses/LICENSE-2.0
  *
- *  Unless required by applicable law or agreed to in writing, software
- *  distributed under the License is distributed on an "AS IS" BASIS,
- *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- *  See the License for the specific language governing permissions and
- *  limitations under the License.
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
  */
 
 //
@@ -23,7 +25,18 @@
 package javax.ejb;
 
 /**
- * @version $Revision$ $Date$
+ * @version $Rev: 467742 $ $Date: 2006-10-25 12:30:38 -0700 (Wed, 25 Oct 2006) $
  */
-public class EJBTransactionRolledbackException {
+public class EJBTransactionRolledbackException extends EJBException {
+    public EJBTransactionRolledbackException() {
+        super();
+    }
+
+    public EJBTransactionRolledbackException(Exception ex) {
+        super(ex);
+    }
+
+    public EJBTransactionRolledbackException(String message) {
+        super(message);
+    }
 }