22
22
import io .swagger .v3 .oas .annotations .Operation ;
23
23
import io .swagger .v3 .oas .annotations .Parameter ;
24
24
import io .swagger .v3 .oas .annotations .enums .Explode ;
25
+ import io .swagger .v3 .oas .annotations .extensions .Extension ;
26
+ import io .swagger .v3 .oas .annotations .extensions .ExtensionProperty ;
25
27
import io .swagger .v3 .oas .annotations .media .Content ;
26
28
import io .swagger .v3 .oas .annotations .media .Schema ;
27
29
import io .swagger .v3 .oas .annotations .responses .ApiResponse ;
@@ -155,6 +157,7 @@ public ResponseDataObject<List<AnnotationSearchResultValueObject>> searchAnnotat
155
157
})
156
158
public PaginatedResponseDataObject <ExpressionExperimentValueObject > searchDatasets ( // Params:
157
159
@ Parameter (schema = @ Schema (implementation = StringArrayArg .class ), explode = Explode .FALSE ) @ QueryParam ("query" ) @ DefaultValue ("" ) StringArrayArg query ,
160
+ @ Schema (extensions = { @ Extension (name = "gemma" , properties = { @ ExtensionProperty (name = "filteringService" , value = "expressionExperimentService" ) }) })
158
161
@ QueryParam ("filter" ) @ DefaultValue ("" ) FilterArg filterArg , // Optional, default null
159
162
@ QueryParam ("offset" ) @ DefaultValue ("0" ) OffsetArg offset , // Optional, default 0
160
163
@ QueryParam ("limit" ) @ DefaultValue ("20" ) LimitArg limit , // Optional, default 20
@@ -206,6 +209,7 @@ public PaginatedResponseDataObject<ExpressionExperimentValueObject> searchDatase
206
209
}, deprecated = true )
207
210
public PaginatedResponseDataObject <ExpressionExperimentValueObject > searchDatasetsByQueryInPath ( // Params:
208
211
@ PathParam ("query" ) @ DefaultValue ("" ) StringArrayArg query , // Required
212
+ @ Schema (extensions = { @ Extension (name = "gemma" , properties = { @ ExtensionProperty (name = "filteringService" , value = "expressionExperimentService" ) }) })
209
213
@ QueryParam ("filter" ) @ DefaultValue ("" ) FilterArg filterArg , // Optional, default null
210
214
@ QueryParam ("offset" ) @ DefaultValue ("0" ) OffsetArg offset , // Optional, default 0
211
215
@ QueryParam ("limit" ) @ DefaultValue ("20" ) LimitArg limit , // Optional, default 20
@@ -228,6 +232,7 @@ public PaginatedResponseDataObject<ExpressionExperimentValueObject> searchDatase
228
232
public PaginatedResponseDataObject <ExpressionExperimentValueObject > searchTaxonDatasets ( // Params:
229
233
@ PathParam ("taxon" ) TaxonArg <?> taxonArg , // Required
230
234
@ Parameter (schema = @ Schema (implementation = StringArrayArg .class ), explode = Explode .FALSE ) @ QueryParam ("query" ) @ DefaultValue ("" ) StringArrayArg query ,
235
+ @ Schema (extensions = { @ Extension (name = "gemma" , properties = { @ ExtensionProperty (name = "filteringService" , value = "expressionExperimentService" ) }) })
231
236
@ QueryParam ("filter" ) @ DefaultValue ("" ) FilterArg filter , // Optional, default null
232
237
@ QueryParam ("offset" ) @ DefaultValue ("0" ) OffsetArg offset , // Optional, default 0
233
238
@ QueryParam ("limit" ) @ DefaultValue ("20" ) LimitArg limit , // Optional, default 20
@@ -273,6 +278,7 @@ public PaginatedResponseDataObject<ExpressionExperimentValueObject> searchTaxonD
273
278
public PaginatedResponseDataObject <ExpressionExperimentValueObject > searchTaxonDatasetsByQueryInPath ( // Params:
274
279
@ PathParam ("taxon" ) TaxonArg <?> taxonArg , // Required
275
280
@ PathParam ("query" ) @ DefaultValue ("" ) StringArrayArg query , // Required
281
+ @ Schema (extensions = { @ Extension (name = "gemma" , properties = { @ ExtensionProperty (name = "filteringService" , value = "expressionExperimentService" ) }) })
276
282
@ QueryParam ("filter" ) @ DefaultValue ("" ) FilterArg filter , // Optional, default null
277
283
@ QueryParam ("offset" ) @ DefaultValue ("0" ) OffsetArg offset , // Optional, default 0
278
284
@ QueryParam ("limit" ) @ DefaultValue ("20" ) LimitArg limit , // Optional, default 20
0 commit comments