Lines Matching defs:Provider

60  * <p>The service type {@code Provider} is reserved for use by the
63 * The following attributes are automatically placed in each Provider object:
65 * <caption><b>Attributes Automatically Placed in a Provider Object</b></caption>
70 * <tr><th scope="row">{@code Provider.id name}</th>
72 * <tr><th scope="row">{@code Provider.id version}</th>
74 * <tr><th scope="row">{@code Provider.id info}</th>
76 * <tr><th scope="row">{@code Provider.id className}</th>
82 * identifies itself with a file named {@code java.security.Provider}
98 * The Provider Class}
107 public abstract class Provider extends Properties {
113 sun.security.util.Debug.getInstance("provider", "Provider");
211 * {@link #Provider(String, String, String)} with {@code name}
220 * @deprecated use {@link #Provider(String, String, String)} instead.
223 protected Provider(String name, double version, String info) {
260 protected Provider(String name, String versionStr, String info) {
293 public Provider configure(String configArg) {
435 * in this Provider.
452 // no longer calls entrySet() on the backing Map. (Provider's
877 super.put("Provider.id name", String.valueOf(name));
878 super.put("Provider.id version", String.valueOf(versionStr));
879 super.put("Provider.id info", String.valueOf(info));
880 super.put("Provider.id className", this.getClass().getName());
915 if (keyString.startsWith("Provider.")) {
1232 * Get the service describing this Provider's implementation of the
1244 * @return the service describing this Provider's matching service
1280 * this Provider.
1283 * this Provider
1346 ("service.getProvider() must match this Provider object");
1365 * Put the string properties for this Service in this Provider's
1383 * Remove the string properties for this Service from this Provider's
1609 private final Provider provider;
1628 // whether this service has been registered with the Provider
1636 private Service(Provider provider) {
1674 public Service(Provider provider, String type, String algorithm,
1720 * Return the Provider of this service.
1722 * @return the Provider of this service
1724 public final Provider getProvider() {
1790 ("Service not registered with Provider "