You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by am...@apache.org on 2006/05/28 17:03:07 UTC

svn commit: r409961 - /geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/kernel/config/DeploymentWatcher.java

Author: ammulder
Date: Sun May 28 08:03:07 2006
New Revision: 409961

URL: http://svn.apache.org/viewvc?rev=409961&view=rev
Log:
Didn't get added when I merged from the branch

Added:
    geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/kernel/config/DeploymentWatcher.java   (with props)

Added: geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/kernel/config/DeploymentWatcher.java
URL: http://svn.apache.org/viewvc/geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/kernel/config/DeploymentWatcher.java?rev=409961&view=auto
==============================================================================
--- geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/kernel/config/DeploymentWatcher.java (added)
+++ geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/kernel/config/DeploymentWatcher.java Sun May 28 08:03:07 2006
@@ -0,0 +1,29 @@
+/**
+ *
+ * Copyright 2005 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
+ *
+ *     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 org.apache.geronimo.kernel.config;
+
+import org.apache.geronimo.kernel.repository.Artifact;
+
+/**
+ * Interface for receiving deployment notifications
+ *
+ * @version $Rev: 46019 $ $Date: 2004-09-14 05:56:06 -0400 (Tue, 14 Sep 2004) $
+ */
+public interface DeploymentWatcher {
+    void deployed(Artifact id);
+    void undeployed(Artifact id);
+}

Propchange: geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/kernel/config/DeploymentWatcher.java
------------------------------------------------------------------------------
    svn:eol-style = native