in src/main/java/org/apache/sling/featureflags/impl/FeatureManager.java [231:240]
public FeatureDescription(final Feature feature, final Map<String, Object> props) {
this.feature = feature;
final Object sr = props.get(Constants.SERVICE_RANKING);
if (sr instanceof Integer) {
this.ranking = (Integer) sr;
} else {
this.ranking = 0;
}
this.serviceId = (Long) props.get(Constants.SERVICE_ID);
}