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

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

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

import java.util.Iterator;

import com.tinkerpop.blueprints.Direction;
import com.tinkerpop.frames.Adjacency;
import com.tinkerpop.frames.Property;
import com.tinkerpop.frames.modules.typedgraph.TypeValue;

@TypeValue("ArchiveResource")
public interface ArchiveResource extends Resource {

	@Adjacency(label="file", direction=Direction.OUT)
	public FileResource getFileResource();

	@Adjacency(label="file", direction=Direction.OUT)
	public void setFileResource(FileResource file);

	
	@Property("md5Hash")
	public String getMD5Hash();
	
	@Property("md5Hash")
	public void setMD5Hash(String md5Hash);
	
	@Property("sha1Hash")
	public String getSHA1Hash();
	
	@Property("sha1Hash")
	public void setSHA1Hash(String sha1Hash);
	
	
	@Property("archiveName")
	public String getArchiveName();
	
	@Property("archiveName")
	public void setArchiveName(String archiveName);
	
	
	@Adjacency(label="child", direction=Direction.OUT)
	public Iterator getChildren();
	
	@Adjacency(label="child", direction=Direction.OUT)
	public void addChild(final ArchiveResource resource);
	
	@Adjacency(label="child", direction=Direction.IN)
	public ArchiveResource getParent();
	
	@Adjacency(label="child", direction=Direction.IN)
	public void setChild(final ArchiveResource resource);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy