src/java.base/share/classes/sun/security/provider/certpath/Builder.java
changeset 51398 3c389a284345
parent 47216 71c04702a3d5
equal deleted inserted replaced
51397:c9150700bbd0 51398:3c389a284345
     1 /*
     1 /*
     2  * Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2000, 2018, 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
    61     /**
    61     /**
    62      * Flag indicating whether support for the caIssuers field of the
    62      * Flag indicating whether support for the caIssuers field of the
    63      * Authority Information Access extension shall be enabled. Currently
    63      * Authority Information Access extension shall be enabled. Currently
    64      * disabled by default for compatibility reasons.
    64      * disabled by default for compatibility reasons.
    65      */
    65      */
    66     static final boolean USE_AIA = AccessController.doPrivileged
    66     static final boolean USE_AIA = GetBooleanAction
    67         (new GetBooleanAction("com.sun.security.enableAIAcaIssuers"));
    67             .privilegedGetProperty("com.sun.security.enableAIAcaIssuers");
    68 
    68 
    69     /**
    69     /**
    70      * Initialize the builder with the input parameters.
    70      * Initialize the builder with the input parameters.
    71      *
    71      *
    72      * @param params the parameter set used to build a certification path
    72      * @param params the parameter set used to build a certification path