src/share/classes/java/security/IdentityScope.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1996, 2010, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 55,67 **** * @see Key * * @author Benjamin Renaud * * @deprecated This class is no longer used. Its functionality has been ! * replaced by <code>java.security.KeyStore</code>, the ! * <code>java.security.cert</code> package, and ! * <code>java.security.Principal</code>. */ @Deprecated public abstract class IdentityScope extends Identity { --- 55,67 ---- * @see Key * * @author Benjamin Renaud * * @deprecated This class is no longer used. Its functionality has been ! * replaced by {@code java.security.KeyStore}, the ! * {@code java.security.cert} package, and ! * {@code java.security.Principal}. */ @Deprecated public abstract class IdentityScope extends Identity {
*** 144,161 **** /** * Sets the system's identity scope. * * <p>First, if there is a security manager, its ! * <code>checkSecurityAccess</code> ! * method is called with <code>"setSystemScope"</code> * as its argument to see if it's ok to set the identity scope. * * @param scope the scope to set. * * @exception SecurityException if a security manager exists and its ! * <code>checkSecurityAccess</code> method doesn't allow * setting the identity scope. * * @see #getSystemScope * @see SecurityManager#checkSecurityAccess */ --- 144,161 ---- /** * Sets the system's identity scope. * * <p>First, if there is a security manager, its ! * {@code checkSecurityAccess} ! * method is called with {@code "setSystemScope"} * as its argument to see if it's ok to set the identity scope. * * @param scope the scope to set. * * @exception SecurityException if a security manager exists and its ! * {@code checkSecurityAccess} method doesn't allow * setting the identity scope. * * @see #getSystemScope * @see SecurityManager#checkSecurityAccess */
*** 174,185 **** /** * Returns the identity in this scope with the specified name (if any). * * @param name the name of the identity to be retrieved. * ! * @return the identity named <code>name</code>, or null if there are ! * no identities named <code>name</code> in this scope. */ public abstract Identity getIdentity(String name); /** * Retrieves the identity whose name is the same as that of the --- 174,185 ---- /** * Returns the identity in this scope with the specified name (if any). * * @param name the name of the identity to be retrieved. * ! * @return the identity named {@code name}, or null if there are ! * no identities named {@code name} in this scope. */ public abstract Identity getIdentity(String name); /** * Retrieves the identity whose name is the same as that of the