jdk/src/share/classes/sun/security/provider/PolicyFile.java
changeset 22041 3638966a5c02
parent 16046 c65f0f54851c
child 24685 215fa91e1b4c
equal deleted inserted replaced
22040:cb0198e8d989 22041:3638966a5c02
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 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
   283     private boolean notUtf8 = false;
   283     private boolean notUtf8 = false;
   284     private URL url;
   284     private URL url;
   285 
   285 
   286     // for use with the reflection API
   286     // for use with the reflection API
   287 
   287 
   288     private static final Class[] PARAMS0 = { };
   288     private static final Class<?>[] PARAMS0 = { };
   289     private static final Class[] PARAMS1 = { String.class };
   289     private static final Class<?>[] PARAMS1 = { String.class };
   290     private static final Class[] PARAMS2 = { String.class, String.class };
   290     private static final Class<?>[] PARAMS2 = { String.class, String.class };
   291 
   291 
   292     /**
   292     /**
   293      * Initializes the Policy object and reads the default policy
   293      * Initializes the Policy object and reads the default policy
   294      * configuration file(s) into the Policy object.
   294      * configuration file(s) into the Policy object.
   295      */
   295      */