Code Search for Developers
 
 
  

ResultFinder.java from GridBlocks at Krugle


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

GridBlocks

GridBlocks builds a grid application framework via easy-to-use building blocks in distributed environment. The framework offers components for Grid security, distributed storage, computing, and Portlet web interfaces.

Project homepage: http://sourceforge.net/projects/gridblocks
Programming language(s): Java,JSP,XML
License: other

  agent/
    AgentResult.java
    AgentResultFile.java
    AgentResultFinder.java
  Result.java
  ResultComparator.java
  ResultException.java
  ResultFile.java
  ResultFindController.java
  ResultFinder.java