File tree 2 files changed +6
-6
lines changed
closed/src/java.base/share/classes/openj9/internal/security
src/java.base/share/classes/java/security
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -232,10 +232,10 @@ public static boolean isFIPSEnabled() {
232
232
}
233
233
234
234
/**
235
- * Check if the service is allowed in restricted security mode.
235
+ * Check if the service is allowed to be used in restricted security mode.
236
236
*
237
237
* @param service the service to check
238
- * @return true if the service is allowed
238
+ * @return true if the service is allowed to be used
239
239
*/
240
240
public static boolean isServiceAllowed (Service service ) {
241
241
if (securityEnabled ) {
@@ -245,12 +245,12 @@ public static boolean isServiceAllowed(Service service) {
245
245
}
246
246
247
247
/**
248
- * Check if the service is allowed in restricted security mode.
248
+ * Check if the service is allowed to be registered in restricted security mode.
249
249
*
250
250
* @param service the service to check
251
- * @return true if the service is allowed
251
+ * @return true if the service is allowed to be registered
252
252
*/
253
- public static boolean canServiceBeAdded (Service service ) {
253
+ public static boolean canServiceBeRegistered (Service service ) {
254
254
if (securityEnabled ) {
255
255
return restricts .isRestrictedServiceAllowed (service , true );
256
256
}
Original file line number Diff line number Diff line change @@ -1238,7 +1238,7 @@ protected void putService(Service s) {
1238
1238
throw new IllegalArgumentException
1239
1239
("service.getProvider() must match this Provider object" );
1240
1240
}
1241
- if (!RestrictedSecurity .canServiceBeAdded (s )) {
1241
+ if (!RestrictedSecurity .canServiceBeRegistered (s )) {
1242
1242
// We're in restricted security mode which does not allow this service,
1243
1243
// return without registering.
1244
1244
return ;
You can’t perform that action at this time.
0 commit comments