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

org.mycore.common.content.MCRWrappedContent Maven / Gradle / Ivy

There is a newer version: 2024.05
Show newest version
/*
 * This file is part of ***  M y C o R e  ***
 * See http://www.mycore.de/ for details.
 *
 * MyCoRe is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * MyCoRe is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with MyCoRe.  If not, see .
 */

package org.mycore.common.content;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.nio.channels.ReadableByteChannel;
import java.nio.file.CopyOption;
import java.nio.file.Path;

import javax.xml.transform.Source;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.jdom2.Document;
import org.jdom2.JDOMException;
import org.mycore.datamodel.ifs.MCRContentInputStream;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;

/**
 * @author Thomas Scheffler (yagee)
 *
 */
public abstract class MCRWrappedContent extends MCRContent {

    private static final Logger LOGGER = LogManager.getLogger(MCRWrappedContent.class);

    private MCRContent baseContent;

    public MCRContent getBaseContent() {
        return baseContent;
    }

    protected void setBaseContent(MCRContent baseContent) {
        LOGGER.debug("Wrapped {}: {}", baseContent.getClass().getCanonicalName(), baseContent.getSystemId());
        this.baseContent = baseContent;
    }

    /* (non-Javadoc)
     * @see org.mycore.common.content.MCRContent#getInputStream()
     */
    @Override
    public InputStream getInputStream() throws IOException {
        return getBaseContent().getInputStream();
    }

    @Override
    void setSystemId(String systemId) {
        getBaseContent().setSystemId(systemId);
    }

    @Override
    public String getSystemId() {
        return getBaseContent().getSystemId();
    }

    @Override
    public MCRContentInputStream getContentInputStream() throws IOException {
        return getBaseContent().getContentInputStream();
    }

    @Override
    public Source getSource() throws IOException {
        return getBaseContent().getSource();
    }

    @Override
    public void sendTo(OutputStream out) throws IOException {
        getBaseContent().sendTo(out);
    }

    @Override
    public void sendTo(OutputStream out, boolean close) throws IOException {
        getBaseContent().sendTo(out, close);
    }

    @Override
    public void sendTo(Path target, CopyOption... options) throws IOException {
        getBaseContent().sendTo(target, options);
    }

    @Override
    public InputSource getInputSource() throws IOException {
        return getBaseContent().getInputSource();
    }

    @Override
    public void sendTo(File target) throws IOException {
        getBaseContent().sendTo(target);
    }

    @Override
    public byte[] asByteArray() throws IOException {
        return getBaseContent().asByteArray();
    }

    @Override
    public String asString() throws IOException {
        return getBaseContent().asString();
    }

    @Override
    public Document asXML() throws JDOMException, IOException, SAXException {
        return getBaseContent().asXML();
    }

    @Override
    public MCRContent ensureXML() throws IOException, JDOMException, SAXException {
        return getBaseContent().ensureXML();
    }

    @Override
    public String getDocType() throws IOException {
        return getBaseContent().getDocType();
    }

    @Override
    public boolean isReusable() {
        return getBaseContent().isReusable();
    }

    @Override
    public MCRContent getReusableCopy() throws IOException {
        return getBaseContent().getReusableCopy();
    }

    @Override
    public long length() throws IOException {
        return getBaseContent().length();
    }

    @Override
    public long lastModified() throws IOException {
        return getBaseContent().lastModified();
    }

    @Override
    public void setLastModified(long lastModified) {
        getBaseContent().setLastModified(lastModified);
    }

    @Override
    public String getETag() throws IOException {
        return getBaseContent().getETag();
    }

    @Override
    public ReadableByteChannel getReadableByteChannel() throws IOException {
        return getBaseContent().getReadableByteChannel();
    }

    @Override
    public void setDocType(String docType) {
        getBaseContent().setDocType(docType);
    }

    @Override
    public String getMimeType() throws IOException {
        return getBaseContent().getMimeType();
    }

    @Override
    public void setMimeType(String mimeType) {
        getBaseContent().setMimeType(mimeType);
    }

    @Override
    public String getName() {
        return getBaseContent().getName();
    }

    @Override
    public void setName(String name) {
        getBaseContent().setName(name);
    }

    @Override
    public boolean isUsingSession() {
        return getBaseContent().isUsingSession();
    }

    @Override
    public void setUsingSession(boolean usingSession) {
        getBaseContent().setUsingSession(usingSession);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy