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

de.sekmi.histream.etl.config.Meta Maven / Gradle / Ivy

There is a newer version: 0.13.3
Show newest version
package de.sekmi.histream.etl.config;

import java.net.URL;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlTransient;

/**
 * Meta information.
 * 
 * @author Raphael
 *
 */
public class Meta {
	@XmlElement
	String id;

	@XmlElement(name="etl-strategy")
	String etlStrategy;

	@XmlTransient
	private URL location;
	
	protected Meta(){
	}

	public Meta(String etlStrategy, String sourceId){
		this.etlStrategy = etlStrategy;
		this.id = sourceId;
	}
	public String getSourceId(){
		return this.id;
	}

	public String getETLStrategy(){
		return etlStrategy;
	}
	
	public URL getLocation(){
		return location;
	}
	public void setLocation(URL location){
		this.location = location;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy