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

org.webpieces.router.impl.compression.FileMeta Maven / Gradle / Ivy

package org.webpieces.router.impl.compression;

public class FileMeta {

	private String hash;

	public FileMeta() {
		this(null);
	}
	
	public FileMeta(String hash) {
		this.hash = hash;
	}

	public String getHash() {
		return hash;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy