src/jdk.jartool/share/classes/com/sun/jarsigner/package-info.java
author phh
Sat, 30 Nov 2019 14:33:05 -0800
changeset 59330 5b96c12f909d
parent 47216 71c04702a3d5
permissions -rw-r--r--
8234541: C1 emits an empty message when it inlines successfully Summary: Use "inline" as the message when successfull Reviewed-by: thartmann, mdoerr Contributed-by: navy.xliu@gmail.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
26865
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
     1
/*
31060
be4eb6360ee0 8076535: Deprecate the com.sun.jarsigner package
juh
parents: 29369
diff changeset
     2
 * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
26865
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
     4
 *
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
    10
 *
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
    15
 * accompanied this code).
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
    16
 *
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
    20
 *
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
    23
 * questions.
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
    24
 */
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
    25
/**
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
    26
 * This package comprises the interfaces and classes used to define the
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 31060
diff changeset
    27
 * signing mechanism used by the {@code jarsigner} tool.
26865
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
    28
 * <p>
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 31060
diff changeset
    29
 * Clients may override the default signing mechanism of the {@code jarsigner}
26865
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
    30
 * tool by supplying an alternative implementation of
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
    31
 * {@link com.sun.jarsigner.ContentSigner}.
31060
be4eb6360ee0 8076535: Deprecate the com.sun.jarsigner package
juh
parents: 29369
diff changeset
    32
 *
34541
7f475f6f0d56 8144784: Remove @Deprecated annotation from java.security.acl, javax.security.cert and com.sun.jarsigner packages
mullan
parents: 32275
diff changeset
    33
 * The classes in this package have been deprecated. New classes should not be
7f475f6f0d56 8144784: Remove @Deprecated annotation from java.security.acl, javax.security.cert and com.sun.jarsigner packages
mullan
parents: 32275
diff changeset
    34
 * added to this package. Use the {@link jdk.security.jarsigner.JarSigner} API
7f475f6f0d56 8144784: Remove @Deprecated annotation from java.security.acl, javax.security.cert and com.sun.jarsigner packages
mullan
parents: 32275
diff changeset
    35
 * to sign JAR files.
26865
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
    36
 */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
26865
a7c2a3edbffc 8058657: Add @jdk.Exported to com.sun.jarsigner APIs
weijun
parents: 25859
diff changeset
    38
package com.sun.jarsigner;