Skip to content

chore: Update Java Properties #2009

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 51 additions & 1 deletion java/developing-applications/properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -926,7 +926,7 @@
"header": false,
"name": "cds.multiTenancy.dataSource.hanaEncryptionMode",
"type": "String",
"doc": "Optional tenant encryption mode used by the HANA database. Possible values are<br>DEDICATED_KEY and MANAGED_KEY."
"doc": "Optional tenant encryption mode used by the HANA database for new tenants. Possible values<br>are DEDICATED_KEY and MANAGED_KEY."
},
{
"header": true,
Expand Down Expand Up @@ -1398,6 +1398,13 @@
"default": "false",
"doc": "Determines, if error messages are automatically extended with additional debug information<br>(only for development)."
},
{
"header": false,
"name": "cds.errors.preferServiceException",
"type": "boolean",
"default": "false",
"doc": "Determines, if CDS4j exceptions are replaced with corresponding ServiceException."
},
{
"header": true,
"name": "cds.errors.stackMessages",
Expand Down Expand Up @@ -1522,6 +1529,49 @@
"default": "true",
"doc": "Determines, if it is enabled."
},
{
"header": true,
"name": "cds.query.restrictions",
"doc": "Properties for query restrictions."
},
{
"header": false,
"name": "cds.query.restrictions.enabled",
"type": "boolean",
"default": "false",
"doc": "Determines, if it is enabled."
},
{
"header": true,
"name": "cds.query.restrictions.expand",
"doc": "Properties for expand query restrictions."
},
{
"header": false,
"name": "cds.query.restrictions.expand.maxLevels",
"type": "int",
"default": "-1",
"doc": "The default limit on how many levels of expands are allowed. `-1` means no restriction."
},
{
"header": false,
"name": "cds.query.restrictions.expand.enabled",
"type": "boolean",
"default": "true",
"doc": "Determines, if it is enabled."
},
{
"header": true,
"name": "cds.query.restrictions.filter",
"doc": "Properties for filter query restrictions."
},
{
"header": false,
"name": "cds.query.restrictions.filter.enabled",
"type": "boolean",
"default": "true",
"doc": "Determines, if it is enabled."
},
{
"header": true,
"name": "cds.sql",
Expand Down