Lines Matching defs:Provider

60  * "{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/crypto/CryptoSpec.html#Provider">The Provider Class</a>
73 * <p>The service type {@code Provider} is reserved for use by the
76 * The following attributes are automatically placed in each Provider object:
78 * <caption><b>Attributes Automatically Placed in a Provider Object</b></caption>
80 * <tr><td>{@code Provider.id name}</td>
82 * <tr><td>{@code Provider.id version}</td>
84 * <tr><td>{@code Provider.id info}</td>
86 * <tr><td>{@code Provider.id className}</td>
93 public abstract class Provider extends Properties {
98 // Android-added: Provider registration
106 ("provider", "Provider");
145 protected Provider(String name, double version, String info) {
260 * in this Provider.
277 // no longer calls entrySet() on the backing Map. (Provider's
698 super.put("Provider.id name", String.valueOf(name));
699 super.put("Provider.id version", String.valueOf(version));
700 super.put("Provider.id info", String.valueOf(info));
701 super.put("Provider.id className", this.getClass().getName());
706 // Android-added: Provider registration
720 // Android-added: Provider registration
725 if (keyString.startsWith("Provider.")) {
745 // Android-added: Provider registration
889 // Android-added: Provider registration
1046 * Get the service describing this Provider's implementation of the
1058 * @return the service describing this Provider's matching service
1094 * this Provider.
1097 * this Provider
1160 ("service.getProvider() must match this Provider object");
1179 * Put the string properties for this Service in this Provider's
1194 // Android-added: Provider registration
1201 * Remove the string properties for this Service from this Provider's
1216 // Android-added: Provider registration
1430 private final Provider provider;
1449 // whether this service has been registered with the Provider
1457 private Service(Provider provider) {
1495 public Service(Provider provider, String type, String algorithm,
1541 * Return the Provider of this service.
1543 * @return the Provider of this service
1545 public final Provider getProvider() {
1612 ("Service not registered with Provider "
1885 // BEGIN Android-added: Provider registration
1924 // END Android-added: Provider registration