1. /*
  2. * @(#)CertPathParameters.java 1.4 03/01/23
  3. *
  4. * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package java.security.cert;
  8. /**
  9. * A specification of certification path algorithm parameters.
  10. * The purpose of this interface is to group (and provide type safety for)
  11. * all <code>CertPath</code> parameter specifications. All
  12. * <code>CertPath</code> parameter specifications must implement this
  13. * interface.
  14. *
  15. * @version 1.4 01/23/03
  16. * @author Yassir Elley
  17. * @see CertPathValidator#validate(CertPath, CertPathParameters)
  18. * @see CertPathBuilder#build(CertPathParameters)
  19. * @since 1.4
  20. */
  21. public interface CertPathParameters extends Cloneable {
  22. /**
  23. * Makes a copy of this <code>CertPathParameters</code>. Changes to the
  24. * copy will not affect the original and vice versa.
  25. *
  26. * @return a copy of this <code>CertPathParameters</code>
  27. */
  28. Object clone();
  29. }