src/main/java/org/apache/sling/models/it/exporter/BaseComponent.java [40:54]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getId() {
        return this.resource.getPath();
    }

    public String getSampleValue() {
        return sampleValue;
    }

    @JsonProperty(value="UPPER")
    public String getSampleValueToUpperCase() {
        return sampleValue.toUpperCase();
    }

    public Resource getResource() {
        return resource;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/sling/models/it/exporter/BaseRequestComponent.java [59:73]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getId() {
        return this.resource.getPath();
    }

    public String getSampleValue() {
        return sampleValue;
    }

    @JsonProperty(value="UPPER")
    public String getSampleValueToUpperCase() {
        return sampleValue.toUpperCase();
    }

    public Resource getResource() {
        return resource;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



