commit | be76ce507228aafc4f1f4ad06f30ac869849f3fc | [log] [tgz] |
---|---|---|
author | Felix Meschberger <fmeschbe@apache.org> | Sun Nov 03 13:21:56 2013 +0000 |
committer | Felix Meschberger <fmeschbe@apache.org> | Sun Nov 03 13:21:56 2013 +0000 |
tree | 6ee8b1151d6c1d2934ce0de7d302dd353d514454 | |
parent | 1eec4055af99792a5acdba8268a90d23de55d350 [diff] |
FELIX-3861 Assign the plugin to the "Web Console" category git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1538358 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/webconsole-plugins/shell/src/main/java/org/apache/felix/webconsole/plugins/shell/internal/WebConsolePlugin.java b/webconsole-plugins/shell/src/main/java/org/apache/felix/webconsole/plugins/shell/internal/WebConsolePlugin.java index 9508ebc..fe50b05 100644 --- a/webconsole-plugins/shell/src/main/java/org/apache/felix/webconsole/plugins/shell/internal/WebConsolePlugin.java +++ b/webconsole-plugins/shell/src/main/java/org/apache/felix/webconsole/plugins/shell/internal/WebConsolePlugin.java
@@ -43,6 +43,7 @@ private static final String LABEL = "shell"; //$NON-NLS-1$ private static final String TITLE = "%shell.pluginTitle"; //$NON-NLS-1$ + private static final String CATEGORY = "Web Console"; private static final String CSS[] = { "/" + LABEL + "/res/plugin.css" }; //$NON-NLS-1$ //$NON-NLS-2$ private final ServiceTracker tracker; @@ -59,6 +60,12 @@ this.tracker = tracker; } + + public String getCategory() + { + return CATEGORY; + } + /** * @see javax.servlet.http.HttpServlet#doPost(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse) */