jdk/src/share/classes/java/security/cert/CertPathValidatorResult.java
changeset 18551 882a3948c6e6
parent 5506 202f599c92aa
equal deleted inserted replaced
18550:6d0f51c99930 18551:882a3948c6e6
     1 /*
     1 /*
     2  * Copyright (c) 2000, 2001, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2000, 2013, 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
    39  * @author      Yassir Elley
    39  * @author      Yassir Elley
    40  */
    40  */
    41 public interface CertPathValidatorResult extends Cloneable {
    41 public interface CertPathValidatorResult extends Cloneable {
    42 
    42 
    43     /**
    43     /**
    44      * Makes a copy of this <code>CertPathValidatorResult</code>. Changes to the
    44      * Makes a copy of this {@code CertPathValidatorResult}. Changes to the
    45      * copy will not affect the original and vice versa.
    45      * copy will not affect the original and vice versa.
    46      *
    46      *
    47      * @return a copy of this <code>CertPathValidatorResult</code>
    47      * @return a copy of this {@code CertPathValidatorResult}
    48      */
    48      */
    49     Object clone();
    49     Object clone();
    50 }
    50 }