Hello all,
Official documentation does not put any restriction on this field, but from CAS code (and one of topics here) I know that it should be in Java's Integer.MIN_VALUE..Integer.MAX_VALUE range (signed 32 bit integer).
Is it allowed to have negative value like in service configuration below?
{
"@class": "org.apereo.cas.services.RegexRegisteredService",
"serviceId": "^(https|imaps)://.*",
"name": "HTTPS and IMAPS",
"id": 10000001,
"description": "This service definition authorizes all application urls that support HTTPS and IMAPS protocols.",
"evaluationOrder": -1
}
Is there any warning regarding negative evaluation order?
Thank you in advance!