You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by gn...@apache.org on 2010/09/03 21:59:08 UTC

svn commit: r992444 - /karaf/trunk/features/command/src/main/java/org/apache/karaf/features/command/RemoveRepositoryCommand.java

Author: gnodet
Date: Fri Sep  3 19:59:08 2010
New Revision: 992444

URL: http://svn.apache.org/viewvc?rev=992444&view=rev
Log:
KARAF-149: add missing class

Added:
    karaf/trunk/features/command/src/main/java/org/apache/karaf/features/command/RemoveRepositoryCommand.java

Added: karaf/trunk/features/command/src/main/java/org/apache/karaf/features/command/RemoveRepositoryCommand.java
URL: http://svn.apache.org/viewvc/karaf/trunk/features/command/src/main/java/org/apache/karaf/features/command/RemoveRepositoryCommand.java?rev=992444&view=auto
==============================================================================
--- karaf/trunk/features/command/src/main/java/org/apache/karaf/features/command/RemoveRepositoryCommand.java (added)
+++ karaf/trunk/features/command/src/main/java/org/apache/karaf/features/command/RemoveRepositoryCommand.java Fri Sep  3 19:59:08 2010
@@ -0,0 +1,47 @@
+/*
+ * 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.karaf.features.command;
+
+import java.net.URI;
+
+import org.apache.felix.gogo.commands.Argument;
+import org.apache.felix.gogo.commands.Command;
+import org.apache.karaf.features.FeaturesService;
+import org.apache.karaf.features.Repository;
+
+@Command(scope = "features", name = "removeRepository", description = "Removes the specified repository features service.")
+public class RemoveRepositoryCommand extends FeaturesCommandSupport {
+
+    @Argument(index = 0, name = "repository", description = "Name of the repository to remove.", required = true, multiValued = false)
+    private String repository;
+
+    protected void doExecute(FeaturesService admin) throws Exception {
+    	URI uri = null;
+    	for (Repository r :admin.listRepositories()) {
+    		if (r.getName().equals(repository)) {
+    			uri = r.getURI();
+    			break;
+    		}
+    	}
+
+    	if (uri == null) {
+    		System.out.println("Repository '" + repository + "' not found.") ;
+    	} else {
+    		admin.removeRepository(uri);
+    	}
+    }
+}