jdk/src/java.base/share/classes/java/security/Signer.java
changeset 39337 ac7e4f1d69db
parent 30033 b9c86c17164a
child 43541 9aeb1de77a63
equal deleted inserted replaced
39336:3e9ca73f58ca 39337:ac7e4f1d69db
     1 /*
     1 /*
     2  * Copyright (c) 1996, 2013, 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
    38  * @see Identity
    38  * @see Identity
    39  *
    39  *
    40  * @author Benjamin Renaud
    40  * @author Benjamin Renaud
    41  *
    41  *
    42  * @deprecated This class is no longer used. Its functionality has been
    42  * @deprecated This class is no longer used. Its functionality has been
    43  * replaced by {@code java.security.KeyStore}, the
    43  * replaced by {@link java.security.KeyStore}, the
    44  * {@code java.security.cert} package, and
    44  * {@link java.security.cert} package, and
    45  * {@code java.security.Principal}.
    45  * {@link java.security.Principal}.
       
    46  * This class is subject to removal in a future version of Java SE.
    46  */
    47  */
    47 @Deprecated
    48 @Deprecated(since="1.2", forRemoval=true)
    48 public abstract class Signer extends Identity {
    49 public abstract class Signer extends Identity {
    49 
    50 
    50     private static final long serialVersionUID = -1763464102261361480L;
    51     private static final long serialVersionUID = -1763464102261361480L;
    51 
    52 
    52     /**
    53     /**