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

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

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

import com.tinkerpop.frames.Property;
import com.tinkerpop.frames.modules.typedgraph.TypeValue;

@TypeValue("EnvironmentReference")
public interface EnvironmentReference extends Meta {

	@Property("referenceId")
	public String getReferenceId();

	@Property("referenceId")
	public void setReferenceId(String resourceId);
	
	@Property("name")
	public String getName();
	
	@Property("name")
	public void setName(String name);
	
	@Property("referenceType")
	public String getReferenceType();

	@Property("referenceType")
	public void setReferenceType(String referenceType);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy