src/main/java/org/apache/sling/models/it/exporter/BaseComponent.java [29:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class BaseComponent {

    private final Resource resource;

    @Inject
    private String sampleValue;

    public BaseComponent(Resource resource) {
        this.resource = resource;
    }

    public String getId() {
        return this.resource.getPath();
    }

    public String getSampleValue() {
        return sampleValue;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/sling/models/it/rtbound/BaseComponent.java [25:41]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class BaseComponent {

    private final Resource resource;

    @Inject
    private String sampleValue;

    public BaseComponent(Resource resource) {
        this.resource = resource;
    }

    public String getId() {
        return this.resource.getPath();
    }

    public String getSampleValue() {
        return sampleValue;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



