DataOptions.java 1.76 KB
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  org.apache.sling.api.resource.Resource
 */
package com.adobe.forms.common.service;

import com.adobe.forms.common.service.ContentType;
import java.util.Map;
import org.apache.sling.api.resource.Resource;

public class DataOptions {
    private String dataRef;
    private Resource formResource;
    private String pagePath;
    private Resource aemFormContainer;
    private String serviceName;
    private Map<String, Object> extras;
    private ContentType contentType;

    public String getDataRef() {
        return this.dataRef;
    }

    public void setDataRef(String dataRef) {
        this.dataRef = dataRef;
    }

    public Resource getFormResource() {
        return this.formResource;
    }

    public void setFormResource(Resource formResource) {
        this.formResource = formResource;
    }

    public String getPagePath() {
        return this.pagePath;
    }

    public void setPagePath(String pagePath) {
        this.pagePath = pagePath;
    }

    public Resource getAemFormContainer() {
        return this.aemFormContainer;
    }

    public void setAemFormContainer(Resource aemFormContainer) {
        this.aemFormContainer = aemFormContainer;
    }

    public String getServiceName() {
        return this.serviceName;
    }

    public void setServiceName(String serviceName) {
        this.serviceName = serviceName;
    }

    public Map<String, Object> getExtras() {
        return this.extras;
    }

    public void setExtras(Map<String, Object> extras) {
        this.extras = extras;
    }

    public ContentType getContentType() {
        return this.contentType;
    }

    public void setContentType(ContentType contentType) {
        this.contentType = contentType;
    }
}