You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by ml...@apache.org on 2006/10/18 05:57:14 UTC

svn commit: r465133 - in /incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/javax: ./ activity/ activity/ActivityCompletedException.java activity/ActivityRequiredException.java activity/InvalidActivityException.java

Author: mloenko
Date: Tue Oct 17 20:57:11 2006
New Revision: 465133

URL: http://svn.apache.org/viewvc?view=rev&rev=465133
Log:
missing classes in javax.activity package

Added:
    incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/javax/
    incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/javax/activity/
    incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/javax/activity/ActivityCompletedException.java   (with props)
    incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/javax/activity/ActivityRequiredException.java   (with props)
    incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/javax/activity/InvalidActivityException.java   (with props)

Added: incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/javax/activity/ActivityCompletedException.java
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/javax/activity/ActivityCompletedException.java?view=auto&rev=465133
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/javax/activity/ActivityCompletedException.java (added)
+++ incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/javax/activity/ActivityCompletedException.java Tue Oct 17 20:57:11 2006
@@ -0,0 +1,39 @@
+/*
+ *  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
+ *
+ *  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.
+ */
+
+package javax.activity;
+
+import java.rmi.RemoteException;
+
+public class ActivityCompletedException extends RemoteException {
+
+    public ActivityCompletedException() {
+        super();
+    }
+
+    public ActivityCompletedException(String message) {
+        super(message);
+    }
+
+    public ActivityCompletedException(String message, Throwable cause) {
+        super(message, cause);
+    }
+
+    public ActivityCompletedException(Throwable cause) {
+        super(null, cause);
+    }
+}

Propchange: incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/javax/activity/ActivityCompletedException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/javax/activity/ActivityRequiredException.java
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/javax/activity/ActivityRequiredException.java?view=auto&rev=465133
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/javax/activity/ActivityRequiredException.java (added)
+++ incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/javax/activity/ActivityRequiredException.java Tue Oct 17 20:57:11 2006
@@ -0,0 +1,39 @@
+/*
+ *  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
+ *
+ *  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.
+ */
+
+package javax.activity;
+
+import java.rmi.RemoteException;
+
+public class ActivityRequiredException extends RemoteException {
+
+    public ActivityRequiredException() {
+        super();
+    }
+
+    public ActivityRequiredException(String message) {
+        super(message);
+    }
+
+    public ActivityRequiredException(String message, Throwable cause) {
+        super(message, cause);
+    }
+
+    public ActivityRequiredException(Throwable cause) {
+        super(null, cause);
+    }
+}

Propchange: incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/javax/activity/ActivityRequiredException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/javax/activity/InvalidActivityException.java
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/javax/activity/InvalidActivityException.java?view=auto&rev=465133
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/javax/activity/InvalidActivityException.java (added)
+++ incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/javax/activity/InvalidActivityException.java Tue Oct 17 20:57:11 2006
@@ -0,0 +1,39 @@
+/*
+ *  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
+ *
+ *  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.
+ */
+
+package javax.activity;
+
+import java.rmi.RemoteException;
+
+public class InvalidActivityException extends RemoteException {
+
+    public InvalidActivityException() {
+        super();
+    }
+
+    public InvalidActivityException(String message) {
+        super(message);
+    }
+
+    public InvalidActivityException(String message, Throwable cause) {
+        super(message, cause);
+    }
+
+    public InvalidActivityException(Throwable cause) {
+        super(null, cause);
+    }
+}

Propchange: incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/javax/activity/InvalidActivityException.java
------------------------------------------------------------------------------
    svn:eol-style = native