Package com.iggroup.oss.sample.domain

Examples of com.iggroup.oss.sample.domain.SampleList


  @ResponseBody
  public SampleList findAllSamples() {

    LOGGER.info("getSamples ");

    return new SampleList(service.findAllSamples());

  }
View Full Code Here


  @ResponseBody
  public SampleList findSamplesByName(@RequestParam String name) {

    LOGGER.info("getSamplesByName " + name);

    return new SampleList(service.findSamplesByName(name));

  }
View Full Code Here

    LOGGER.info("getSamplesByType " + type);

    validate(type);

    return new SampleList(service.findSamplesByType(type));

  }
View Full Code Here

   @Profiled
   @Override
   public SampleList findSamplesByName(String nameFragment) {

      return new SampleList(sampleDAO.findSamples(nameFragment));

   }
View Full Code Here

   @Profiled
   @Override
   public SampleList findSamplesByType(SampleType type) {

      return new SampleList(sampleDAO.findSamples(type));
   }
View Full Code Here

   @Profiled
   @Override
   public SampleList findAllSamples() {

      return new SampleList(sampleDAO.findSamples());
   }
View Full Code Here

TOP

Related Classes of com.iggroup.oss.sample.domain.SampleList

Copyright © 2018 www.massapicom. 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.