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

org.lumongo.server.search.SegmentResponseMeta Maven / Gradle / Ivy

The newest version!
package org.lumongo.server.search;

import org.lumongo.cluster.message.Lumongo.SegmentResponse;

public class SegmentResponseMeta {
	private SegmentResponse segmentResponse;
	private int resultIndex;

	public SegmentResponseMeta(SegmentResponse segmentResponse, int resultIndex) {
		this.segmentResponse = segmentResponse;
		this.resultIndex = resultIndex;
	}

	public SegmentResponse getSegmentResponse() {
		return segmentResponse;
	}

	public void setSegmentResponse(SegmentResponse segmentResponse) {
		this.segmentResponse = segmentResponse;
	}

	public int getResultIndex() {
		return resultIndex;
	}

	public void setResultIndex(int resultIndex) {
		this.resultIndex = resultIndex;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy