Skip to content

Commit 35b95a0

Browse files
Update method name and comments
1 parent 59110de commit 35b95a0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

closed/src/java.base/share/classes/openj9/internal/security/RestrictedSecurity.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -232,10 +232,10 @@ public static boolean isFIPSEnabled() {
232232
}
233233

234234
/**
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.
236236
*
237237
* @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
239239
*/
240240
public static boolean isServiceAllowed(Service service) {
241241
if (securityEnabled) {
@@ -245,12 +245,12 @@ public static boolean isServiceAllowed(Service service) {
245245
}
246246

247247
/**
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.
249249
*
250250
* @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
252252
*/
253-
public static boolean canServiceBeAdded(Service service) {
253+
public static boolean canServiceBeRegistered(Service service) {
254254
if (securityEnabled) {
255255
return restricts.isRestrictedServiceAllowed(service, true);
256256
}

src/java.base/share/classes/java/security/Provider.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1238,7 +1238,7 @@ protected void putService(Service s) {
12381238
throw new IllegalArgumentException
12391239
("service.getProvider() must match this Provider object");
12401240
}
1241-
if (!RestrictedSecurity.canServiceBeAdded(s)) {
1241+
if (!RestrictedSecurity.canServiceBeRegistered(s)) {
12421242
// We're in restricted security mode which does not allow this service,
12431243
// return without registering.
12441244
return;

0 commit comments

Comments
 (0)