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

com.citytechinc.cq.component.xml.AbstractXmlElement Maven / Gradle / Ivy

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

import com.citytechinc.cq.component.util.Constants;

import java.util.List;
import java.util.Map;

public class AbstractXmlElement implements XmlElement {

    protected NameSpacedAttribute primaryType;

    protected String fieldName;

    protected Map additionalProperties;

    protected List containedElements;

    protected String nameSpace;

    public AbstractXmlElement(XmlElementParameters parameters) {
        primaryType =
            new NameSpacedAttribute(Constants.JCR_NS_URI, Constants.JCR_NS_PREFIX, parameters.getPrimaryType());
        this.fieldName = parameters.getFieldName();
        this.additionalProperties = parameters.getAdditionalProperties();
        this.containedElements = parameters.getContainedElements();
        this.nameSpace = parameters.getNameSpace();
    }

    public NameSpacedAttribute getPrimaryType() {
        return primaryType;
    }

    public String getFieldName() {
        return fieldName;
    }

    public Map getAdditionalProperties() {
        return additionalProperties;
    }

    public List getContainedElements() {
        return containedElements;
    }

    public String getNameSpace() {
        return nameSpace;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy