CqnService
instead.@Deprecated public interface CdsService extends Service
CqnService
interface.
The new name captures the intent better and does not create import conflicts with CdsService
For backwards compatibility reasons method names and constants are still maintained here.Modifier and Type | Field and Description |
---|---|
static String |
EVENT_CREATE
Deprecated.
Use
CqnService.EVENT_CREATE instead. |
static String |
EVENT_DELETE
Deprecated.
Use
CqnService.EVENT_DELETE instead. |
static String |
EVENT_READ
Deprecated.
Use
CqnService.EVENT_READ instead. |
static String |
EVENT_UPDATE
Deprecated.
Use
CqnService.EVENT_UPDATE instead. |
static String |
EVENT_UPSERT
Deprecated.
Use
CqnService.EVENT_UPSERT instead. |
Modifier and Type | Method and Description |
---|---|
com.sap.cds.Result |
run(com.sap.cds.ql.cqn.CqnDelete delete,
Iterable<Map<String,Object>> valueSets)
Deprecated.
Use
CqnService.run(CqnDelete, Iterable) instead. |
com.sap.cds.Result |
run(com.sap.cds.ql.cqn.CqnDelete delete,
Map<String,Object> namedValues)
Deprecated.
Use
CqnService.run(CqnDelete, Map) instead. |
com.sap.cds.Result |
run(com.sap.cds.ql.cqn.CqnDelete delete,
Object... paramValues)
Deprecated.
Use
CqnService.run(CqnDelete, Object...) instead. |
com.sap.cds.Result |
run(com.sap.cds.ql.cqn.CqnInsert insert)
Deprecated.
Use
CqnService.run(CqnInsert) instead. |
com.sap.cds.Result |
run(com.sap.cds.ql.cqn.CqnSelect select,
Map<String,Object> namedValues)
Deprecated.
Use
CqnService.run(CqnSelect, Map) instead. |
com.sap.cds.Result |
run(com.sap.cds.ql.cqn.CqnSelect select,
Object... paramValues)
Deprecated.
Use
CqnService.run(CqnSelect, Object...) instead. |
com.sap.cds.Result |
run(com.sap.cds.ql.cqn.CqnUpdate update,
Iterable<Map<String,Object>> valueSets)
Deprecated.
Use
CqnService.run(CqnUpdate, Iterable) instead. |
com.sap.cds.Result |
run(com.sap.cds.ql.cqn.CqnUpdate update,
Map<String,Object> namedValues)
Deprecated.
Use
CqnService.run(CqnUpdate, Map) instead. |
com.sap.cds.Result |
run(com.sap.cds.ql.cqn.CqnUpdate update,
Object... paramValues)
Deprecated.
Use
CqnService.run(CqnUpdate, Object...) instead. |
com.sap.cds.Result |
run(com.sap.cds.ql.cqn.CqnUpsert upsert)
Deprecated.
Use
CqnService.run(CqnUpsert) instead. |
static final String EVENT_READ
CqnService.EVENT_READ
instead.static final String EVENT_CREATE
CqnService.EVENT_CREATE
instead.static final String EVENT_UPDATE
CqnService.EVENT_UPDATE
instead.static final String EVENT_DELETE
CqnService.EVENT_DELETE
instead.static final String EVENT_UPSERT
CqnService.EVENT_UPSERT
instead.com.sap.cds.Result run(com.sap.cds.ql.cqn.CqnSelect select, Object... paramValues)
CqnService.run(CqnSelect, Object...)
instead.CqnSelect
statement with optional positional parameter values against the CdsService
.select
- the CqnSelect
to be executedparamValues
- the optional positional parameter valuesResult
of the querycom.sap.cds.Result run(com.sap.cds.ql.cqn.CqnSelect select, Map<String,Object> namedValues)
CqnService.run(CqnSelect, Map)
instead.CqnSelect
statement with named parameter values against the CdsService
.select
- the CqnSelect
to be executednamedValues
- the named parameter valuesResult
of the querycom.sap.cds.Result run(com.sap.cds.ql.cqn.CqnInsert insert)
CqnService.run(CqnInsert)
instead.CqnInsert
statement against the CdsService
.insert
- the CqnInsert
to be executedResult
of the insertcom.sap.cds.Result run(com.sap.cds.ql.cqn.CqnUpsert upsert)
CqnService.run(CqnUpsert)
instead.CqnUpsert
statement against the CdsService
.upsert
- the CqnUpsert
to be executedResult
of the upsertcom.sap.cds.Result run(com.sap.cds.ql.cqn.CqnUpdate update, Object... paramValues)
CqnService.run(CqnUpdate, Object...)
instead.CqnUpdate
statement with optional positional parameter values against the CdsService
.update
- the CqnUpdate
to be executedparamValues
- the optional positional parameter valuesResult
of the updatecom.sap.cds.Result run(com.sap.cds.ql.cqn.CqnUpdate update, Map<String,Object> namedValues)
CqnService.run(CqnUpdate, Map)
instead.CqnUpdate
statement with named parameter values against the CdsService
.update
- the CqnUpdate
to be executednamedValues
- the named parameter valuesResult
of the updatecom.sap.cds.Result run(com.sap.cds.ql.cqn.CqnUpdate update, Iterable<Map<String,Object>> valueSets)
CqnService.run(CqnUpdate, Iterable)
instead.CqnUpdate
statement as batch with the given named parameter values against the CdsService
.update
- the CqnUpdate
to be executedvalueSets
- the named parameter valuesResult
of the updatecom.sap.cds.Result run(com.sap.cds.ql.cqn.CqnDelete delete, Object... paramValues)
CqnService.run(CqnDelete, Object...)
instead.CqnDelete
statement with optional positional parameter values against the CdsService
.delete
- the CqnDelete
to be executedparamValues
- the optional positional parameter valuesResult
of the deletecom.sap.cds.Result run(com.sap.cds.ql.cqn.CqnDelete delete, Map<String,Object> namedValues)
CqnService.run(CqnDelete, Map)
instead.CqnDelete
statement with named parameter values against the CdsService
.delete
- the CqnDelete
to be executednamedValues
- the named parameter valuesResult
of the deletecom.sap.cds.Result run(com.sap.cds.ql.cqn.CqnDelete delete, Iterable<Map<String,Object>> valueSets)
CqnService.run(CqnDelete, Iterable)
instead.CqnDelete
statement as batch with the given named parameter values against the CdsService
.delete
- the CqnDelete
to be executedvalueSets
- the named parameter valuesResult
of the deleteCopyright © 2023. All rights reserved.