Class FilteredJarSigner
- java.lang.Object
-
- org.eclipse.cbi.maven.plugins.jarsigner.FilteredJarSigner
-
- All Implemented Interfaces:
JarSigner
- Direct Known Subclasses:
RecursiveJarSigner
,RemoteJarSigner
public abstract class FilteredJarSigner extends java.lang.Object implements JarSigner
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
FilteredJarSigner.Filter
static class
FilteredJarSigner.Filters
-
Nested classes/interfaces inherited from interface org.eclipse.cbi.maven.plugins.jarsigner.JarSigner
JarSigner.Options
-
-
Constructor Summary
Constructors Constructor Description FilteredJarSigner()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description (package private) abstract int
doSignJar(java.nio.file.Path jarfile, JarSigner.Options options)
(package private) abstract FilteredJarSigner.Filter
filter()
int
sign(java.nio.file.Path jar, JarSigner.Options options)
Sign the given Jar file.
-
-
-
Method Detail
-
filter
abstract FilteredJarSigner.Filter filter()
-
sign
public final int sign(java.nio.file.Path jar, JarSigner.Options options) throws java.io.IOException
Description copied from interface:JarSigner
Sign the given Jar file.
-
doSignJar
abstract int doSignJar(java.nio.file.Path jarfile, JarSigner.Options options) throws java.io.IOException
- Throws:
java.io.IOException
-
-