Home | History | Annotate | Download | only in fortress

Lines Matching refs:serviceName

82     private final String serviceName;
121 * @param serviceName
123 public Engine(String serviceName) {
124 this.serviceName = serviceName;
139 throw notFound(this.serviceName, algorithm);
166 String name = this.serviceName + "." + algoUC;
181 Provider.Service service = provider.getService(serviceName, algorithm);
183 throw notFound(serviceName, algorithm);
188 private NoSuchAlgorithmException notFound(String serviceName, String algorithm)
190 throw new NoSuchAlgorithmException(serviceName + " " + algorithm