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

com.github.fartherp.framework.compress.gzip.GZIP Maven / Gradle / Ivy

There is a newer version: 3.0.6
Show newest version
/*
 * Copyright (c) 2017. CK. All rights reserved.
 */

package com.github.fartherp.framework.compress.gzip;

import com.github.fartherp.framework.compress.CommonCompress;

/**
 * Created by IntelliJ IDEA.
 * Author: CK
 * Date: 2015/4/15
 */
public class GZIP extends CommonCompress {
    public GZIP() {
        setType(GZIP);
        setSuffix(SUFFIX_GZIP);
        commonCompress = new GzipCompress(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy