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

org.molgenis.ontology.response.OntologyServiceBatchResponse Maven / Gradle / Ivy

There is a newer version: 8.4.5
Show newest version
package org.molgenis.ontology.response;

import org.molgenis.data.elasticsearch.util.SearchResult;

public class OntologyServiceBatchResponse
{
	private final String term;
	private final SearchResult searchResult;

	public OntologyServiceBatchResponse(String term, SearchResult searchResult)
	{
		this.term = term;
		this.searchResult = searchResult;
	}

	public String getTerm()
	{
		return term;
	}

	public SearchResult getSearchResult()
	{
		return searchResult;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy