Home | History | Annotate | Download | only in fortress

Lines Matching refs:service

33  * per service type and synchronize on that instance during calls to
35 * and Service Provider Interface (SPI) results. Retreiving the
80 * Service name such as Cipher or SSLContext
98 private final Provider.Service service;
102 Provider.Service service) {
105 this.service = service;
121 * @param service
123 public Engine(String service) {
124 this.serviceName = service;
128 * Finds the appropriate service implementation and returns an
138 Provider.Service service;
143 service = cacheEntry.service;
149 service = Services.getService(name);
150 if (service == null) {
153 this.serviceCache = new ServiceCacheEntry(algorithm, Services.refreshNumber, service);
155 return new SpiAndProvider(service.newInstance(param), service.getProvider());
159 * Finds the appropriate service implementation and returns and
160 * instance of the class that implements corresponding Service
168 Provider.Service service = provider.getService(serviceName, algorithm);
169 if (service == null) {
172 return service.newInstance(param);