All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.citytechinc.cq.component.touchuidialog.DefaultTouchUIDialogElementParameters Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package com.citytechinc.cq.component.touchuidialog;

import com.citytechinc.cq.component.xml.DefaultXmlElementParameters;

public class DefaultTouchUIDialogElementParameters extends DefaultXmlElementParameters implements TouchUIDialogElementParameters {

    protected String resourceType;

    protected String touchUIDialogType;

    public String getResourceType() {
        return resourceType;
    }

    public void setResourceType(String resourceType) {
        this.resourceType = resourceType;
    }

    public String getTouchUIDialogType() {
        return touchUIDialogType;
    }

    public void setTouchUIDialogType(String touchUIDialogType) {
        this.touchUIDialogType = touchUIDialogType;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy