Show ResultFinder.java syntax highlighted
/*
* Copyright (c) 2005
* Helsinki Institute of Physics
* see LICENSE file for details
*
* ResultFinder.java
* Created on 1.8.2005
*/
package fi.hip.gb.portlet.results;
import java.util.List;
/**
* Finds results from the grid service
*
* @author Antti Ahvenlampi
* @version $Id: ResultFinder.java 476 2005-08-15 15:20:12Z ahvenlam $
*/
public interface ResultFinder {
/**
* @return list of all the results
* @throws ResultException
*/
public List findResults() throws ResultException;
/**
* @param id
* @return result with corresponding id or null if it couldn't be found
*/
public Result findResult(Long id);
}
See more files for this project here