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

org.jboss.windup.graph.model.meta.MailserverMeta 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("MailserverMeta")
public interface MailserverMeta extends Meta {

	@Property("name")
	public String getName();
	
	@Property("name")
	public void setName(String name);

	@Property("serverURI")
	public String getServerURI();
	
	@Property("serverURI")
	public void setServerURI(String uri);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy