Added comments.

This commit is contained in:
harshanl 2015-10-21 17:19:49 +05:30
parent 52fab37c61
commit b3e0f804b0

View File

@ -65,7 +65,7 @@ public class PermissionBasedScopeValidator extends OAuth2ScopeValidator {
int idx = resource.lastIndexOf(':');
String url = resource.substring(0, idx);
String method = resource.substring(++idx, resource.length());
//This is to remove the url params
//This is to remove the url params for request path.
int urlParamIndex = url.indexOf('?');
if(urlParamIndex > 0) {
url = url.substring(0, urlParamIndex);