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

org.swisspush.mirror.UnzippedResource Maven / Gradle / Ivy

package org.swisspush.mirror;

import io.vertx.core.buffer.Buffer;

/**
 * A holder (tuple) for an unZIPped entry:
 * 
    *
  • filename (as in ZIP, i.e. relative path)
    plus
  • *
  • file-content as Vert.x Buffer
  • *
* * @author Oliver Henning */ public class UnzippedResource { public final String filename; public final Buffer buffer = Buffer.buffer(); public UnzippedResource(String filename) { this.filename = filename; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy