test-services/src/main/java/org/apache/sling/testing/mock/osgi/testsvc/osgiserviceutil/RankedServiceFive.java [32:41]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private int ranking;

    @Activate
    public void activate(Map<String, Object> properties) {
        this.ranking = (Integer)properties.get(Constants.SERVICE_RANKING);
    }

    @Override
    public int getRanking() {
        return ranking;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



test-services/src/main/java/org/apache/sling/testing/mock/osgi/testsvc/osgiserviceutil/RankedServiceTen.java [32:41]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private int ranking;

    @Activate
    public void activate(Map<String, Object> properties) {
        this.ranking = (Integer)properties.get(Constants.SERVICE_RANKING);
    }

    @Override
    public int getRanking() {
        return ranking;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



