Lines Matching refs:provider

60  * of the "policy.provider" security property (in the Java security properties
88 * provider's implementation of the <code>implies</code>
187 return Security.getProperty("policy.provider");
191 policy_class = "sun.security.provider.PolicyFile";
202 * provider that is on the bootclasspath.
204 * provider.
207 // install the bootstrap provider to avoid recursion
208 Policy polFile = new sun.security.provider.PolicyFile();
229 debug.println("policy provider " +
239 * if it loaded install it as the policy provider. Otherwise
246 debug.println("using sun.security.provider.PolicyFile");
290 * Initialize superclass state such that a legacy provider can
297 * A policy provider not on the bootclasspath could trigger
299 * or Policy.getPermissions. If this does occur the provider
305 * To mitigate this, the provider can collect it's own
308 * provider (if there is one) will handle calls to
326 * so that the provider can be security checked while processing
403 instance.provider,
415 * PolicySpi implementation from the specified provider
416 * is returned. The specified provider must be registered
417 * in the provider list.
430 * @param provider the provider.
439 * @exception IllegalArgumentException if the specified provider
442 * the PolicySpi implementation from the specified provider.
444 * @exception NoSuchProviderException if the specified provider is not
445 * registered in the security provider list.
447 * @exception NoSuchAlgorithmException if the specified provider does not
455 String provider)
458 if (provider == null || provider.length() == 0) {
459 throw new IllegalArgumentException("missing provider");
468 provider);
470 instance.provider,
484 * does not have to be registered in the provider list.
494 * @param provider the Provider.
515 Provider provider)
518 if (provider == null) {
519 throw new IllegalArgumentException("missing provider");
528 provider);
530 instance.provider,