jochen
(Jochen)
July 25, 2017, 1:48pm
4
You’re not using the correct URI to access your JAX-RS resource.
The plugin resources are prefixed by the fully qualified package name of the class implementing Plugin
, e. g. org.graylog.plugins.map
in case of the Map Widget plugin.
* (at your option) any later version.
*
* Graylog is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Graylog. If not, see <http://www.gnu.org/licenses/>.
*/
package org.graylog.plugins.map;
import org.graylog2.plugin.Plugin;
import org.graylog2.plugin.PluginMetaData;
import org.graylog2.plugin.PluginModule;
import java.util.Arrays;
import java.util.Collection;
public class MapWidgetPlugin implements Plugin {
@Override