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

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

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

import com.tinkerpop.frames.annotations.gremlin.GremlinGroovy;
import com.tinkerpop.frames.modules.typedgraph.TypeValue;

@TypeValue("EarArchiveResource")
public interface EarArchive extends JarArchive {

	@GremlinGroovy("it.out('child').has('type', 'JarArchiveResource')")
	public Iterable getJars();

	@GremlinGroovy("it.out('child').has('type', 'WarArchiveResource')")
	public Iterable getWars();

	@GremlinGroovy("it.out('child').has('type', 'EarArchiveResource')")
	public Iterable getEars();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy