Changeset 537 for trunk/src/groovy/dbnp
- Timestamp:
- Jun 7, 2010, 11:13:51 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/groovy/dbnp/rest/CCMCommunicationManager.groovy
r515 r537 1 1 package dbnp.rest 2 2 3 import java.util.Map; 4 import java.util.HashMap; 3 import java.util.Map 4 import java.util.List 5 import java.util.HashMap 5 6 import grails.converters.JSON 6 7 import org.codehaus.groovy.grails.web.json.* … … 8 9 import dbnp.studycapturing.Template 9 10 import dbnp.data.CleanDataLayer 11 import dbnp.studycapturing.Study 10 12 11 13 … … 136 138 137 139 140 /** Send a request for the REST resource to SAM and deliver the 141 * results for the Query controller. 142 * 143 * @param compound a SAM compound, e.g., "ldl" or "weight" 144 * @param value a SAM value of a measurement, e.g. "20" (without unit, please) 145 * @param opperator a SAM operator, i.e., "=", "<", or ">" 146 * @return List of matching studies 147 */ 148 public List<Study> getSAMStudies( String compound, String value, String opperator ) { 149 return [] 150 } 138 151 139 152
Note: See TracChangeset
for help on using the changeset viewer.