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();
}