@@ -222,17 +222,26 @@ public interface CommonQueryContract {
222
222
/**
223
223
* Bind an {@link Instant} to the named query parameter using just the
224
224
* portion indicated by the given {@link TemporalType}.
225
+ *
226
+ * @deprecated since {@link TemporalType} is deprecated
225
227
*/
228
+ @ Deprecated (since = "7" )
226
229
CommonQueryContract setParameter (String parameter , Instant value , TemporalType temporalType );
227
230
228
231
/**
229
232
* @see jakarta.persistence.Query#setParameter(String, Calendar, TemporalType)
233
+ *
234
+ * @deprecated since {@link TemporalType} is deprecated
230
235
*/
236
+ @ Deprecated (since = "7" )
231
237
CommonQueryContract setParameter (String parameter , Calendar value , TemporalType temporalType );
232
238
233
239
/**
234
240
* @see jakarta.persistence.Query#setParameter(String, Date, TemporalType)
241
+ *
242
+ * @deprecated since {@link TemporalType} is deprecated
235
243
*/
244
+ @ Deprecated (since = "7" )
236
245
CommonQueryContract setParameter (String parameter , Date value , TemporalType temporalType );
237
246
238
247
/**
@@ -265,17 +274,26 @@ public interface CommonQueryContract {
265
274
/**
266
275
* Bind an {@link Instant} to an ordinal query parameter using just the
267
276
* portion indicated by the given {@link TemporalType}.
277
+ *
278
+ * @deprecated since {@link TemporalType} is deprecated
268
279
*/
280
+ @ Deprecated (since = "7" )
269
281
CommonQueryContract setParameter (int parameter , Instant value , TemporalType temporalType );
270
282
271
283
/**
272
284
* @see jakarta.persistence.Query#setParameter(int, Date, TemporalType)
285
+ *
286
+ * @deprecated since {@link TemporalType} is deprecated
273
287
*/
288
+ @ Deprecated (since = "7" )
274
289
CommonQueryContract setParameter (int parameter , Date value , TemporalType temporalType );
275
290
276
291
/**
277
292
* @see jakarta.persistence.Query#setParameter(int, Calendar, TemporalType)
293
+ *
294
+ * @deprecated since {@link TemporalType} is deprecated
278
295
*/
296
+ @ Deprecated (since = "7" )
279
297
CommonQueryContract setParameter (int parameter , Calendar value , TemporalType temporalType );
280
298
281
299
/**
@@ -329,12 +347,18 @@ public interface CommonQueryContract {
329
347
330
348
/**
331
349
* @see jakarta.persistence.Query#setParameter(Parameter, Calendar, TemporalType)
350
+ *
351
+ * @deprecated since {@link TemporalType} is deprecated
332
352
*/
353
+ @ Deprecated (since = "7" )
333
354
CommonQueryContract setParameter (Parameter <Calendar > param , Calendar value , TemporalType temporalType );
334
355
335
356
/**
336
357
* @see jakarta.persistence.Query#setParameter(Parameter, Date, TemporalType)
358
+ *
359
+ * @deprecated since {@link TemporalType} is deprecated
337
360
*/
361
+ @ Deprecated (since = "7" )
338
362
CommonQueryContract setParameter (Parameter <Date > param , Date value , TemporalType temporalType );
339
363
340
364
/**
0 commit comments