Package org.apache.hadoop.hbase.client
Interface CoprocessorDescriptor
- All Known Implementing Classes:
- CoprocessorDescriptorBuilder.CoprocessorDescriptorImpl
CoprocessorDescriptor contains the details about how to build a coprocessor. This class is a pojo
 so there are no checks for the details carried by this class. Use
 
CoprocessorDescriptorBuilder to instantiate a CoprocessorDescriptor- 
Method SummaryModifier and TypeMethodDescriptionReturns the name of the class or interface represented by this object.Returns Path of the jar file.intReturns The order to execute this coprocessorReturns Arbitrary key-value parameter pairs passed into the coprocessor.
- 
Method Details- 
getClassNameReturns the name of the class or interface represented by this object.
- 
getJarPathReturns Path of the jar file. If it's null, the class will be loaded from default classloader.
- 
getPriorityint getPriority()Returns The order to execute this coprocessor
- 
getPropertiesReturns Arbitrary key-value parameter pairs passed into the coprocessor.
 
-