@@ -872,7 +872,7 @@ boolean isRestrictedServiceAllowed(Service service, boolean isServiceAdded) {
872
872
// See if a regex for accepted uses has been specified and apply
873
873
// it to the call stack.
874
874
if (!isServiceAdded && !isNullOrBlank (cAcceptedUses )) {
875
- cAcceptedUses = cAcceptedUses .substring (1 ).strip ();
875
+ cAcceptedUses = cAcceptedUses .substring (1 ).strip (). substring ( 1 , cAcceptedUses . length ()) ;
876
876
StackTraceElement [] stackElements = Thread .currentThread ().getStackTrace ();
877
877
String stackTrace = Stream .of (stackElements )
878
878
.map (se -> se .toString ())
@@ -1493,7 +1493,7 @@ private void setConstraints(String providerName, String providerInfo, boolean pr
1493
1493
final String typeRE = "\\ w+" ;
1494
1494
final String algoRE = "[A-Za-z0-9./_-]+" ;
1495
1495
final String attrRE = "[A-Za-z0-9=*|.:]+" ;
1496
- final String consRE = "\\ {(" + typeRE + "),(" + algoRE + "),(" + attrRE + ")(,.+?)*\\ }" ;
1496
+ final String consRE = "\\ {(" + typeRE + "),(" + algoRE + "),(" + attrRE + ")(,\\ s+ \" .+?\" )*\\ }" ;
1497
1497
p = Pattern .compile (
1498
1498
"\\ ["
1499
1499
+ "([+-]?)" // option to append or remove
@@ -1805,7 +1805,7 @@ private static void checkProviderFormat(String providerInfo, boolean update) {
1805
1805
+ "(\\ [" // constraints [optional]
1806
1806
+ "\\ s*"
1807
1807
+ "([+-])?" // action [optional]
1808
- + "[A-Za-z0-9{}.=*|:?,/ \\ \\ _ \\ s-]+" // constraint definition
1808
+ + "\\ {.+ \\ }" // constraint definition
1809
1809
+ "\\ ])?"
1810
1810
+ "\\ s*"
1811
1811
+ "$" );
0 commit comments