de.sekmi.histream.etl.config.Meta Maven / Gradle / Ivy
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