ChatHandler: Remove useless method, add docs

This commit is contained in:
Gian Merlino 2013-05-06 14:58:47 -07:00
parent d9b72e314e
commit 202953c57b
1 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,10 @@
package com.metamx.druid.merger.common.index;
/**
* Objects that can be registered with a {@link ChatHandlerProvider} and provide http endpoints for indexing-related
* objects. This interface is empty because it only exists to signal intent. The actual http endpoints are provided
* through JAX-RS annotations on the {@link ChatHandler} objects.
*/
public interface ChatHandler
{
public String getHandlerId();
}