HBASE-13324 o.a.h.h.Coprocessor should be LimitedPrivate("Coprocessor")

This commit is contained in:
Andrew Purtell 2015-09-24 10:57:32 -07:00
parent 5b7894f92b
commit 2239d55871
1 changed files with 3 additions and 1 deletions

View File

@ -22,11 +22,13 @@ package org.apache.hadoop.hbase;
import java.io.IOException;
import org.apache.hadoop.hbase.classification.InterfaceAudience;
import org.apache.hadoop.hbase.classification.InterfaceStability;
/**
* Coprocessor interface.
*/
@InterfaceAudience.Private
@InterfaceAudience.LimitedPrivate(HBaseInterfaceAudience.COPROC)
@InterfaceStability.Evolving
public interface Coprocessor {
int VERSION = 1;