jdk/src/share/classes/javax/security/auth/package-info.java
author juh
Tue, 16 Jul 2013 12:19:41 -0700
changeset 18830 90956ead732f
parent 5551 jdk/src/share/classes/javax/security/auth/package.html@327690766109
child 24865 09b1d992ca72
permissions -rw-r--r--
8020557: javadoc cleanup in javax.security Reviewed-by: darcy
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
     1
/*
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
     2
 * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
     4
 *
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    10
 *
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    15
 * accompanied this code).
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    16
 *
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    20
 *
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    23
 * questions.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    24
 */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    26
/**
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    27
 * This package provides a framework for authentication and
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    28
 * authorization. The framework allows
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    29
 * authentication to be performed in pluggable fashion. Different
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    30
 * authentication modules can be plugged under an application without
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    31
 * requiring modifications to the application itself. The
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    32
 * authorization component allows specification of access controls
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    33
 * based on code location, code signers and code executors
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    34
 * (Subjects).
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    35
 *
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    36
 * @since JDK1.4
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    37
 */
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5551
diff changeset
    38
package javax.security.auth;