FELIX-3861 Define Plugin Category

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1436628 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/webconsole-plugins/gogo/src/main/java/org/apache/felix/webconsole/plugins/gogo/impl/GogoPlugin.java b/webconsole-plugins/gogo/src/main/java/org/apache/felix/webconsole/plugins/gogo/impl/GogoPlugin.java
index c4f12cd..1f29ba0 100644
--- a/webconsole-plugins/gogo/src/main/java/org/apache/felix/webconsole/plugins/gogo/impl/GogoPlugin.java
+++ b/webconsole-plugins/gogo/src/main/java/org/apache/felix/webconsole/plugins/gogo/impl/GogoPlugin.java
@@ -43,6 +43,8 @@
 
     public static final String TITLE = "Gogo";
 
+    public static final String CATEGORY = "Web Console";
+
     public static final int TERM_WIDTH = 120;
 
     public static final int TERM_HEIGHT = 39;
@@ -64,6 +66,11 @@
         super.deactivate();
     }
 
+    public String getCategory()
+    {
+        return CATEGORY;
+    }
+
     protected void renderContent(HttpServletRequest request, HttpServletResponse response) throws IOException {
         PrintWriter pw = response.getWriter();