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

org.jboss.windup.graph.dao.ArchiveDao Maven / Gradle / Ivy

The newest version!
package org.jboss.windup.graph.dao;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;

import org.jboss.windup.graph.model.resource.ArchiveResource;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class ArchiveDao extends BaseDao {

	private static Logger LOG = LoggerFactory.getLogger(ArchiveDao.class);
	
	public File asFile(ArchiveResource resource) {
		return new File(resource.getFileResource().getFilePath());
	}
	

	public InputStream getPayload(ArchiveResource file) throws IOException {
		String fileName = file.getFileResource().getFilePath();
		FileInputStream fis = new FileInputStream(new java.io.File(fileName));
		return fis;
	}
	
	public ArchiveDao() {
		super(ArchiveResource.class);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy