jdk/src/java.base/share/classes/java/security/Identity.java
changeset 39337 ac7e4f1d69db
parent 31695 4d10942c9a7b
child 43541 9aeb1de77a63
equal deleted inserted replaced
39336:3e9ca73f58ca 39337:ac7e4f1d69db
     1 /*
     1 /*
     2  * Copyright (c) 1996, 2015, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1996, 2016, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    50  * @see Signer
    50  * @see Signer
    51  * @see Principal
    51  * @see Principal
    52  *
    52  *
    53  * @author Benjamin Renaud
    53  * @author Benjamin Renaud
    54  * @deprecated This class is no longer used. Its functionality has been
    54  * @deprecated This class is no longer used. Its functionality has been
    55  * replaced by {@code java.security.KeyStore}, the
    55  * replaced by {@link java.security.KeyStore}, the
    56  * {@code java.security.cert} package, and
    56  * {@link java.security.cert} package, and
    57  * {@code java.security.Principal}.
    57  * {@link java.security.Principal}.
       
    58  * This class is subject to removal in a future version of Java SE.
    58  */
    59  */
    59 @Deprecated
    60 @Deprecated(since="1.2", forRemoval=true)
    60 public abstract class Identity implements Principal, Serializable {
    61 public abstract class Identity implements Principal, Serializable {
    61 
    62 
    62     /** use serialVersionUID from JDK 1.1.x for interoperability */
    63     /** use serialVersionUID from JDK 1.1.x for interoperability */
    63     private static final long serialVersionUID = 3609922007826600659L;
    64     private static final long serialVersionUID = 3609922007826600659L;
    64 
    65