01: /*
02: * Copyright 2003 Sun Microsystems, Inc. All Rights Reserved.
03: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
04: *
05: * This code is free software; you can redistribute it and/or modify it
06: * under the terms of the GNU General Public License version 2 only, as
07: * published by the Free Software Foundation. Sun designates this
08: * particular file as subject to the "Classpath" exception as provided
09: * by Sun in the LICENSE file that accompanied this code.
10: *
11: * This code is distributed in the hope that it will be useful, but WITHOUT
12: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14: * version 2 for more details (a copy is included in the LICENSE file that
15: * accompanied this code).
16: *
17: * You should have received a copy of the GNU General Public License version
18: * 2 along with this work; if not, write to the Free Software Foundation,
19: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20: *
21: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22: * CA 95054 USA or visit www.sun.com if you need additional information or
23: * have any questions.
24: */
25:
26: package com.sun.jarsigner;
27:
28: import java.net.URI;
29: import java.security.cert.X509Certificate;
30: import java.util.zip.ZipFile;
31:
32: /**
33: * This interface encapsulates the parameters for a ContentSigner object.
34: *
35: * @since 1.5
36: * @version 1.9, 05/05/07
37: * @author Vincent Ryan
38: */
39:
40: public interface ContentSignerParameters {
41:
42: /**
43: * Retrieves the command-line arguments passed to the jarsigner tool.
44: *
45: * @return The command-line arguments. May be null.
46: */
47: public String[] getCommandLine();
48:
49: /**
50: * Retrieves the identifier for a Timestamping Authority (TSA).
51: *
52: * @return The TSA identifier. May be null.
53: */
54: public URI getTimestampingAuthority();
55:
56: /**
57: * Retrieves the certificate for a Timestamping Authority (TSA).
58: *
59: * @return The TSA certificate. May be null.
60: */
61: public X509Certificate getTimestampingAuthorityCertificate();
62:
63: /**
64: * Retrieves the JAR file's signature.
65: *
66: * @return The non-null array of signature bytes.
67: */
68: public byte[] getSignature();
69:
70: /**
71: * Retrieves the name of the signature algorithm.
72: *
73: * @return The non-null string name of the signature algorithm.
74: */
75: public String getSignatureAlgorithm();
76:
77: /**
78: * Retrieves the signer's X.509 certificate chain.
79: *
80: * @return The non-null array of X.509 public-key certificates.
81: */
82: public X509Certificate[] getSignerCertificateChain();
83:
84: /**
85: * Retrieves the content that was signed.
86: * The content is the JAR file's signature file.
87: *
88: * @return The content bytes. May be null.
89: */
90: public byte[] getContent();
91:
92: /**
93: * Retrieves the original source ZIP file before it was signed.
94: *
95: * @return The original ZIP file. May be null.
96: */
97: public ZipFile getSource();
98: }
|