Examples of ResourceList


Examples of org.oasis.wsrp.v2.ResourceList

   public static ResourceList createResourceList(List<Resource> resources)
   {
      if (ParameterValidation.existsAndIsNotEmpty(resources))
      {
         ResourceList resourceList = new ResourceList();
         resourceList.getResources().addAll(resources);

         return resourceList;
      }
      else
      {
View Full Code Here

Examples of uk.ac.ebi.ricordo.rdfstore.bean.ResourceList

    private static final String XML_VIEW_NAME = "resources";

    @RequestMapping(method=RequestMethod.GET, value="/search/{command}")
    public ModelAndView getResources(@PathVariable String command) {
        ResourceList resourceList = new ResourceList();
        rdfStoreService.search("",command,resourceList);
        return new ModelAndView(XML_VIEW_NAME, "resources", resourceList);
    }
View Full Code Here

Examples of uk.ac.ebi.ricordo.rdfstore.bean.ResourceList

        return new ModelAndView(XML_VIEW_NAME, "resources", resourceList);
    }

    @RequestMapping(method=RequestMethod.POST, value="/search/{command}")
    public ModelAndView getSearch(@RequestBody Query query, @PathVariable String command) {
        ResourceList resourceList = new ResourceList();
        rdfStoreService.search(query.getQuery(), command, resourceList);
        return new ModelAndView(XML_VIEW_NAME, "resources", resourceList);
    }
View Full Code Here

Examples of uk.ac.ebi.ricordo.rdfstore.bean.ResourceList

    @Test
    public void testGetTermsInAsTermObjects()throws Exception {
        ResponseEntity<ResourceList> response = restTemplate.exchange( URL_STRING+"search/getResources",
                HttpMethod.GET, new HttpEntity<String>(new HttpHeaders()), ResourceList.class);

        ResourceList resourceList = response.getBody();
        assertEquals(3, resourceList.getCount());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.