Skip to content

Commit 3a1f14e

Browse files
Fix exception comments and add imports
1 parent 3c968b2 commit 3a1f14e

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

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

+6-3
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,8 @@ boolean isRestrictedServiceAllowed(Service service, boolean isServiceAdded) {
857857
if (!isServiceAdded && !isNullOrBlank(cAcceptedUses)) {
858858
String[] optionAndValue = cAcceptedUses.split(":");
859859
if (optionAndValue.length != 2) {
860-
printStackTraceAndExit("Incorrect specification of accepted uses in constraint: " + constraint);
860+
printStackTraceAndExit("Incorrect specification of accepted uses in constraint: '"
861+
+ constraint + "'. Couldn't find option and value separated by ':'");
861862
}
862863
String option = optionAndValue[0];
863864
String value = optionAndValue[1];
@@ -879,7 +880,8 @@ boolean isRestrictedServiceAllowed(Service service, boolean isServiceAdded) {
879880
case "ModuleAndFullClassName":
880881
String[] moduleAndFullClassName = value.split("/");
881882
if (moduleAndFullClassName.length != 2) {
882-
printStackTraceAndExit("Incorrect specification of accepted uses in constraint: " + constraint);
883+
printStackTraceAndExit("Incorrect specification of accepted uses in constraint: '"
884+
+ constraint + "'. Couldn't find module and classname separated by '/'");
883885
}
884886
module = moduleAndFullClassName[0];
885887
String fullClassName = moduleAndFullClassName[1];
@@ -889,7 +891,8 @@ boolean isRestrictedServiceAllowed(Service service, boolean isServiceAdded) {
889891
case "ModuleAndPackage":
890892
String[] moduleAndPackage = value.split("/");
891893
if (moduleAndPackage.length != 2) {
892-
printStackTraceAndExit("Incorrect specification of accepted uses in constraint: " + constraint);
894+
printStackTraceAndExit("Incorrect specification of accepted uses in constraint: '"
895+
+ constraint + "'. Couldn't find module and classname separated by '/'");
893896
}
894897
module = moduleAndPackage[0];
895898
String packageValue = moduleAndPackage[1];

closed/test/jdk/openj9/internal/security/TestConstraintsFailure.java

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
* @library /test/lib
2929
* @run junit TestConstraintsFailure
3030
*/
31+
import org.junit.jupiter.api.Test;
3132

3233
import java.security.AlgorithmParameterGenerator;
3334
import java.security.KeyFactory;

closed/test/jdk/openj9/internal/security/TestConstraintsSuccess.java

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
* @library /test/lib
2929
* @run junit TestConstraintsSuccess
3030
*/
31+
import org.junit.jupiter.api.Test;
3132

3233
import java.security.AlgorithmParameterGenerator;
3334
import java.security.KeyFactory;

0 commit comments

Comments
 (0)