- 
 @Deprecated(since="9") public interface ContentSignerParameters Deprecated.This class has been deprecated.This interface encapsulates the parameters for a ContentSigner object.- Since:
- 1.5
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description String[]getCommandLine()Deprecated.Retrieves the command-line arguments passed to the jarsigner tool.byte[]getContent()Deprecated.Retrieves the content that was signed.byte[]getSignature()Deprecated.Retrieves the JAR file's signature.StringgetSignatureAlgorithm()Deprecated.Retrieves the name of the signature algorithm.X509Certificate[]getSignerCertificateChain()Deprecated.Retrieves the signer's X.509 certificate chain.ZipFilegetSource()Deprecated.Retrieves the original source ZIP file before it was signed.URIgetTimestampingAuthority()Deprecated.Retrieves the identifier for a Timestamping Authority (TSA).X509CertificategetTimestampingAuthorityCertificate()Deprecated.Retrieves the certificate for a Timestamping Authority (TSA).default StringgetTSADigestAlg()Deprecated.Retreives the message digest algorithm that is used to generate the message imprint to be sent to the TSA server.default StringgetTSAPolicyID()Deprecated.Retrieves the TSAPolicyID for a Timestamping Authority (TSA).
 
- 
- 
- 
Method Detail- 
getCommandLineString[] getCommandLine() Deprecated.Retrieves the command-line arguments passed to the jarsigner tool.- Returns:
- The command-line arguments. May be null.
 
 - 
getTimestampingAuthorityURI getTimestampingAuthority() Deprecated.Retrieves the identifier for a Timestamping Authority (TSA).- Returns:
- The TSA identifier. May be null.
 
 - 
getTimestampingAuthorityCertificateX509Certificate getTimestampingAuthorityCertificate() Deprecated.Retrieves the certificate for a Timestamping Authority (TSA).- Returns:
- The TSA certificate. May be null.
 
 - 
getTSAPolicyIDdefault String getTSAPolicyID() Deprecated.Retrieves the TSAPolicyID for a Timestamping Authority (TSA).- Returns:
- The TSAPolicyID. May be null.
 
 - 
getTSADigestAlgdefault String getTSADigestAlg() Deprecated.Retreives the message digest algorithm that is used to generate the message imprint to be sent to the TSA server.- Returns:
- The non-null string of the message digest algorithm name.
- Since:
- 9
 
 - 
getSignaturebyte[] getSignature() Deprecated.Retrieves the JAR file's signature.- Returns:
- The non-null array of signature bytes.
 
 - 
getSignatureAlgorithmString getSignatureAlgorithm() Deprecated.Retrieves the name of the signature algorithm.- Returns:
- The non-null string name of the signature algorithm.
 
 - 
getSignerCertificateChainX509Certificate[] getSignerCertificateChain() Deprecated.Retrieves the signer's X.509 certificate chain.- Returns:
- The non-null array of X.509 public-key certificates.
 
 - 
getContentbyte[] getContent() Deprecated.Retrieves the content that was signed. The content is the JAR file's signature file.- Returns:
- The content bytes. May be null.
 
 - 
getSourceZipFile getSource() Deprecated.Retrieves the original source ZIP file before it was signed.- Returns:
- The original ZIP file. May be null.
 
 
- 
 
-