search.h
Go to the documentation of this file.
1 // Copyright (C) 2013-2016 DNAnexus, Inc.
2 //
3 // This file is part of dx-toolkit (DNAnexus platform client libraries).
4 //
5 // Licensed under the Apache License, Version 2.0 (the "License"); you may
6 // not use this file except in compliance with the License. You may obtain a
7 // copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 // License for the specific language governing permissions and limitations
15 // under the License.
16 
22 #ifndef DXCPP_BINDINGS_SEARCH_H
23 #define DXCPP_BINDINGS_SEARCH_H
24 
25 #include "../bindings.h"
26 
27 namespace dx {
29 
47  class DXSystem {
48  public:
64  static dx::JSON findDataObjects(dx::JSON query);
65 
78  static dx::JSON findOneDataObject(dx::JSON query);
79 
92  static dx::JSON findJobs(dx::JSON query);
93 
102  static dx::JSON findProjects(dx::JSON query);
103 
116  static dx::JSON findApps(dx::JSON query);
117  };
118 }
119 #endif
static dx::JSON findDataObjects(dx::JSON query)
Definition: search.cc:64
static dx::JSON findApps(dx::JSON query)
Definition: search.cc:101
static dx::JSON findProjects(dx::JSON query)
Definition: search.cc:97
Static functions for searching for objects.
Definition: search.h:47
static dx::JSON findOneDataObject(dx::JSON query)
Definition: search.cc:81
An executable object that can be published for others to discover.
Definition: api.cc:7
static dx::JSON findJobs(dx::JSON query)
Definition: search.cc:90