package at.gv.egovernment.moa.spss.api.impl; import org.w3c.dom.NodeList; import at.gv.egovernment.moa.spss.api.common.MetaInfo; /** * Default implementation of MetaInfo. * @author Fatemeh Philippi * @version $Id$ */ public class MetaInfoImpl implements MetaInfo { /** Information about the MIME type. */ private String mimeType; /** URI pointing to a description of the content. */ private String description; /** Descriptive XML content. */ private NodeList anyElements; /** * Sets the MIME type. * * @param mimeType The MIME type to set. */ public void setMimeType(String mimeType) { this.mimeType = mimeType; } public String getMimeType() { return mimeType; } /** * Sets the URI pointing to a description of the content. * * @param description The URI pointing to a description of the content. */ public void setDescription(String description) { this.description = description; } public String getDescription() { return description; } /** * Sets descriptive XML content. * * @param anyElements The elements to set. */ public void setAnyElements(NodeList anyElements) { this.anyElements = anyElements; } public NodeList getAnyElements() { return anyElements; } }