Clover coverage report -
Coverage timestamp: Fri Nov 19 2004 13:41:51 PST
file stats: LOC: 36   Methods: 3
NCLOC: 20   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
Photospace.java - 0% 0% 0%
coverage
 1    package photospace.service;
 2   
 3    import org.springframework.remoting.jaxrpc.*;
 4    import photospace.*;
 5    import photospace.meta.*;
 6   
 7    /**
 8    * Photospace web service service interface.
 9    *
 10    * @link http://sourceforge.net/mailarchive/message.php?msg_id=7709205
 11    */
 12    public class Photospace
 13    extends ServletEndpointSupport
 14    {
 15  0 public Meta browse(String path, int sortOrder, int start, int end) throws Exception
 16    {
 17  0 return Application.searcher().browse(path, sortOrder, start, end);
 18    }
 19   
 20  0 public SearchResult search(String query, int sortOrder, int start, int end) throws Exception
 21    {
 22  0 return Application.searcher().search(query, sortOrder, start, end);
 23    }
 24   
 25  0 public Meta get(String path) throws Exception
 26    {
 27  0 return Application.persister().getMeta(path);
 28    }
 29   
 30    /* Commented out until I can sort out authentication
 31    public void saveMeta(String path, Meta meta) throws Exception
 32    {
 33    persister.saveMeta(path, meta);
 34    }
 35    */
 36    }