com.citytechinc.cq.component.xml.AbstractXmlElement Maven / Gradle / Ivy
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 extends XmlElement> 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 extends XmlElement> getContainedElements() {
return containedElements;
}
public String getNameSpace() {
return nameSpace;
}
}