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

com.citytechinc.cq.component.editconfig.actionconfigs.EditConfigActionConfig Maven / Gradle / Ivy

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

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

public class EditConfigActionConfig extends AbstractXmlElement {

    private final String text;

    private final String handler;

    private final String xtype;

    public EditConfigActionConfig(EditConfigActionConfigParameters parameters) {
        super(parameters);
        this.text = parameters.getText();
        this.handler = parameters.getHandler();
        this.xtype = parameters.getXtype();
    }

    public String getText() {
        return text;
    }

    public String getHandler() {
        return handler;
    }

    public String getXtype() {
        return xtype;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy