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

org.jboss.windup.graph.model.meta.JarManifest Maven / Gradle / Ivy

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

import java.util.Set;

import org.jboss.windup.graph.model.resource.JarArchive;

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

@TypeValue("JarManifestMeta")
public interface JarManifest extends Meta {
	
	@Adjacency(label="meta", direction=Direction.IN)
	public void setJarArchive(final JarArchive archive);

	@Adjacency(label="meta", direction=Direction.IN)
	public JarArchive getJarArchive();

	
	@JavaHandler
	public String getProperty(String property);
	
	@JavaHandler
	public void setProperty(String propertyName, String obj);
	
	@JavaHandler
	public Set keySet();
	
	
	abstract class Impl implements JarManifest, JavaHandlerContext {
		
		@Override
		public String getProperty(String property) {
			return this.it().getProperty(property);
		}
		
		@Override
		public void setProperty(String propertyName, String obj) {
			this.it().setProperty(propertyName, obj);
		}
		
		@Override
		public Set keySet() {
			return this.it().getPropertyKeys();
		}
		
	}
	 
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy