HBASE-13324 o.a.h.h.Coprocessor should be LimitedPrivate("Coprocessor")
This commit is contained in:
parent
e38fd84d3f
commit
12e2341f3d
|
@ -22,11 +22,13 @@ package org.apache.hadoop.hbase;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
import org.apache.hadoop.hbase.classification.InterfaceAudience;
|
import org.apache.hadoop.hbase.classification.InterfaceAudience;
|
||||||
|
import org.apache.hadoop.hbase.classification.InterfaceStability;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Coprocessor interface.
|
* Coprocessor interface.
|
||||||
*/
|
*/
|
||||||
@InterfaceAudience.Private
|
@InterfaceAudience.LimitedPrivate(HBaseInterfaceAudience.COPROC)
|
||||||
|
@InterfaceStability.Evolving
|
||||||
public interface Coprocessor {
|
public interface Coprocessor {
|
||||||
int VERSION = 1;
|
int VERSION = 1;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue