Repository: airavata Updated Branches: refs/heads/master f0f290652 -> b1a6edc2a
removing moved files from the repo - AIRAVATA-1021 Project: http://git-wip-us.apache.org/repos/asf/airavata/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/b1a6edc2 Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/b1a6edc2 Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/b1a6edc2 Branch: refs/heads/master Commit: b1a6edc2aa937123ef895c7a2aab597dbac323d8 Parents: f0f2906 Author: lahiru <[email protected]> Authored: Wed Feb 19 15:45:47 2014 -0500 Committer: lahiru <[email protected]> Committed: Wed Feb 19 15:45:47 2014 -0500 ---------------------------------------------------------------------- modules/airavata-job-monitor/pom.xml | 8 +++++- .../apache/airavata/job/monitor/Monitor.java | 28 ------------------ .../airavata/job/monitor/PullMonitor.java | 30 -------------------- .../airavata/job/monitor/PushMonitor.java | 30 -------------------- 4 files changed, 7 insertions(+), 89 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata/blob/b1a6edc2/modules/airavata-job-monitor/pom.xml ---------------------------------------------------------------------- diff --git a/modules/airavata-job-monitor/pom.xml b/modules/airavata-job-monitor/pom.xml index ca86218..f277a24 100644 --- a/modules/airavata-job-monitor/pom.xml +++ b/modules/airavata-job-monitor/pom.xml @@ -18,7 +18,7 @@ </parent> <modelVersion>4.0.0</modelVersion> - <artifactId>airavata-gfac-core</artifactId> + <artifactId>airavata-job-monitor</artifactId> <name>Airavata Job Monitor</name> <description>This component handle the Airavata Job monitoring funcationality</description> <url>http://airavata.apache.org/</url> @@ -83,6 +83,12 @@ <artifactId>airavata-registry-cpi</artifactId> <version>${project.version}</version> </dependency> + + <dependency> + <groupId>org.apache.airavata</groupId> + <artifactId>airavata-jpa-registry</artifactId> + <version>${project.version}</version> + </dependency> <!-- Workflow Tracking --> <dependency> <groupId>org.apache.airavata</groupId> http://git-wip-us.apache.org/repos/asf/airavata/blob/b1a6edc2/modules/airavata-job-monitor/src/main/java/org/apache/airavata/job/monitor/Monitor.java ---------------------------------------------------------------------- diff --git a/modules/airavata-job-monitor/src/main/java/org/apache/airavata/job/monitor/Monitor.java b/modules/airavata-job-monitor/src/main/java/org/apache/airavata/job/monitor/Monitor.java deleted file mode 100644 index 4712522..0000000 --- a/modules/airavata-job-monitor/src/main/java/org/apache/airavata/job/monitor/Monitor.java +++ /dev/null @@ -1,28 +0,0 @@ -/* - * - * 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 org.apache.airavata.job.monitor; - -/** - * This is the primary interface for Monitors, - * This can be used to implement different methods of monitoring - */ -public interface Monitor { -} http://git-wip-us.apache.org/repos/asf/airavata/blob/b1a6edc2/modules/airavata-job-monitor/src/main/java/org/apache/airavata/job/monitor/PullMonitor.java ---------------------------------------------------------------------- diff --git a/modules/airavata-job-monitor/src/main/java/org/apache/airavata/job/monitor/PullMonitor.java b/modules/airavata-job-monitor/src/main/java/org/apache/airavata/job/monitor/PullMonitor.java deleted file mode 100644 index 78bedf6..0000000 --- a/modules/airavata-job-monitor/src/main/java/org/apache/airavata/job/monitor/PullMonitor.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - * - * 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 org.apache.airavata.job.monitor; - -/** - * PullMonitors can implement this interface - * Since the pull and push based monitoring required different - * operations, PullMonitor will be useful. - * This will allow users to program Pull monitors separately - */ -public interface PullMonitor { -} http://git-wip-us.apache.org/repos/asf/airavata/blob/b1a6edc2/modules/airavata-job-monitor/src/main/java/org/apache/airavata/job/monitor/PushMonitor.java ---------------------------------------------------------------------- diff --git a/modules/airavata-job-monitor/src/main/java/org/apache/airavata/job/monitor/PushMonitor.java b/modules/airavata-job-monitor/src/main/java/org/apache/airavata/job/monitor/PushMonitor.java deleted file mode 100644 index 8dd4fa7..0000000 --- a/modules/airavata-job-monitor/src/main/java/org/apache/airavata/job/monitor/PushMonitor.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - * - * 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 org.apache.airavata.job.monitor; - -/** - * PushMonitors can implement this interface - * Since the pull and push based monitoring required different - * operations, PullMonitor will be useful. - * This interface will allow users to program Push monitors separately - */ -public interface PushMonitor { -}
