jdk/src/share/classes/java/security/KeyStore.java
changeset 18156 edb590d448c5
parent 15664 e33b115f1981
child 18274 7c4289125569
equal deleted inserted replaced
18155:889970e5b728 18156:edb590d448c5
   315          *     A {@code java.util.Collections.EMPTY_MAP} should be used
   315          *     A {@code java.util.Collections.EMPTY_MAP} should be used
   316          *     when protection parameters are not required or when they have
   316          *     when protection parameters are not required or when they have
   317          *     been specified by properties in the domain configuration data.
   317          *     been specified by properties in the domain configuration data.
   318          *     It is cloned to prevent subsequent modification.
   318          *     It is cloned to prevent subsequent modification.
   319          *
   319          *
   320          * @exception NullPointerExcetion if {@code configuration} or
   320          * @exception NullPointerException if {@code configuration} or
   321          *     {@code protectionParams} is {@code null}
   321          *     {@code protectionParams} is {@code null}
   322          */
   322          */
   323         public DomainLoadStoreParameter(URI configuration,
   323         public DomainLoadStoreParameter(URI configuration,
   324             Map<String,ProtectionParameter> protectionParams) {
   324             Map<String,ProtectionParameter> protectionParams) {
   325             if (configuration == null || protectionParams == null) {
   325             if (configuration == null || protectionParams == null) {