| Revision | 2631 (tree) |
|---|---|
| Time | 2024-02-03 23:50:52 |
| Author | t_nakayama1971 |
(empty log message)
| @@ -235,10 +235,13 @@ | ||
| 235 | 235 | |
| 236 | 236 | /** |
| 237 | 237 | * {@inheritDoc} |
| 238 | + * | |
| 239 | + * @deprecated deprecated method | |
| 238 | 240 | */ |
| 241 | + @Deprecated(since = "6.3") | |
| 239 | 242 | @Override |
| 240 | 243 | public SelectionQuery<?> createSelectionQuery(final String hqlString) { |
| 241 | - return this.session.createSelectionQuery(hqlString); | |
| 244 | + throw new UnsupportedOperationException(); | |
| 242 | 245 | } |
| 243 | 246 | |
| 244 | 247 | /** |
| @@ -299,10 +302,13 @@ | ||
| 299 | 302 | |
| 300 | 303 | /** |
| 301 | 304 | * {@inheritDoc} |
| 305 | + * | |
| 306 | + * @deprecated deprecated method | |
| 302 | 307 | */ |
| 308 | + @Deprecated(since = "6.3") | |
| 303 | 309 | @Override |
| 304 | 310 | public SelectionQuery<?> createNamedSelectionQuery(final String name) { |
| 305 | - return this.session.createNamedSelectionQuery(name); | |
| 311 | + throw new UnsupportedOperationException(); | |
| 306 | 312 | } |
| 307 | 313 | |
| 308 | 314 | /** |