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

org.bridgedb.server.DataSources Maven / Gradle / Ivy

package org.bridgedb.server;

import org.bridgedb.bio.DataSourceTxt;
import org.restlet.resource.Get;
import org.restlet.resource.ServerResource;

public class DataSources extends ServerResource {

	protected void doInit() {
		DataSourceTxt.init();
	}
	
	@Get
	public String getDataSources() {
		return DataSourceTxt.datasourcesTxt;	
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy