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

io.legaldocml.archive.zip.ZipArchiveFactory Maven / Gradle / Ivy

There is a newer version: 0.5.0
Show newest version
package io.legaldocml.archive.zip;

import io.legaldocml.archive.Archive;
import io.legaldocml.archive.ArchiveFactory;
import io.legaldocml.business.BusinessProvider;
import io.legaldocml.util.ToStringBuilder;

import java.nio.file.Path;

/**
 * @author Jacques Militello
 */
public final class ZipArchiveFactory extends ArchiveFactory {

    /**
     * type for this ArchiveFactory.
     */
    public static final String TYPE = "zip";

    /**
     * {@inheritDoc}
     */
    @Override
    protected String type() {
        return TYPE;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    protected Archive writeOnly(BusinessProvider provider, Path path) {
        return new ZipArchiveWriteOnly(provider, path);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    protected Archive readOnly(Path path) {
        return new ZipArchiveReadOnly(path);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    protected Archive readWrite(BusinessProvider provider, Path source, Path target) {
        return new ZipArchiveReadWrite(provider, source, target);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public String toString() {
        return new ToStringBuilder(false)
                .append("type",TYPE)
                .append("class",ZipArchiveFactory.class)
                .toString();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy