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

org.jboss.windup.graph.model.resource.FileResource Maven / Gradle / Ivy

The newest version!
package org.jboss.windup.graph.model.resource;

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

import com.tinkerpop.blueprints.Vertex;
import com.tinkerpop.frames.Property;
import com.tinkerpop.frames.modules.javahandler.JavaHandler;
import com.tinkerpop.frames.modules.javahandler.JavaHandlerContext;
import com.tinkerpop.frames.modules.typedgraph.TypeValue;

@TypeValue("FileResource")
public interface FileResource extends Resource {
	
	@Property("filePath")
	public String getFilePath();
	
	@Property("filePath")
	public void setFilePath(String filePath);
	
	@JavaHandler
	public InputStream asInputStream() throws FileNotFoundException;
	
	abstract class Impl implements FileResource, JavaHandlerContext {
		@Override
		public InputStream asInputStream() throws FileNotFoundException {
			if(this.getFilePath() != null) {
				File file = new File(getFilePath());
				return new FileInputStream(file);
			}
			return null;
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy