Package aQute.bnd.service.verifier
Interface VerifierPlugin
-
- All Known Implementing Classes:
CentralCheck
,JPMSModuleInfoPlugin
,SPIDescriptorGenerator
public interface VerifierPlugin
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default int
ordering()
For sorting plugins before calling.void
verify(Analyzer analyzer)
This plugin is called after the manifest generation and after the jar is fully populated with resources.
-
-
-
Method Detail
-
verify
void verify(Analyzer analyzer) throws java.lang.Exception
This plugin is called after the manifest generation and after the jar is fully populated with resources. The plugin is intended to verify details of the jar and manifest.- Parameters:
analyzer
-- Throws:
java.lang.Exception
-
ordering
default int ordering()
For sorting plugins before calling.Lower values are called before higher values.
- Returns:
- A numerical value. The default is 0.
-
-