MappingDefinition.java 465 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.day.cq.wcm.siteimporter.internal.util;

public class MappingDefinition {
    private String resourceType;
    private String path;

    public MappingDefinition(String resourceType, String path) {
        this.resourceType = resourceType;
        this.path = path;
    }

    public String getResourceType() {
        return this.resourceType;
    }

    public String getPath() {
        return this.path;
    }
}