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

com.ebay.jetstream.event.processor.esper.DataSourceConfig Maven / Gradle / Ivy

The newest version!
/*
Pulsar
Copyright (C) 2013-2015 eBay Software Foundation
Licensed under the GPL v2 license.  See LICENSE for full terms.
*/
package com.ebay.jetstream.event.processor.esper;


public class DataSourceConfig {

	private String m_strDsName;
	private String m_strEplRef;
	
	public void setDsName(String strName) {
		//m_strDsName = DalJdbcDriver.JDBC_PREFIX + strName;
	}
	
	public void setEplRefName(String strName) {
		m_strEplRef = strName;
	}
	
	String getDsName() {
		return m_strDsName;
	}
	
	String getEplRefName() {
		return m_strEplRef;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy