Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
Eclipse Foundation API SDK
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Foundation
IT
APIs
Eclipse Foundation API SDK
Merge requests
!37
Iss.
#8
- Add a testing common package to api-common to simplify tests
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Iss.
#8
- Add a testing common package to api-common to simplify tests
malowe/eclipsefdn-api-common:malowe/master/8
into
master
Overview
1
Commits
2
Pipelines
0
Changes
7
1 unresolved thread
Hide all comments
Merged
Martin Lowe
requested to merge
malowe/eclipsefdn-api-common:malowe/master/8
into
master
3 years ago
Overview
1
Commits
2
Pipelines
0
Changes
7
1 unresolved thread
Hide all comments
Expand
0
0
Merge request reports
Compare
master
version 1
d1642fc7
3 years ago
master (base)
and
latest version
latest version
ee2fc886
2 commits,
3 years ago
version 1
d1642fc7
1 commit,
3 years ago
7 files
+
298
−
10
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
core/src/main/java/org/eclipsefoundation/core/namespace/MicroprofilePropertyNames.java
+
10
−
7
Options
@@ -7,12 +7,15 @@ package org.eclipsefoundation.core.namespace;
*
*/
public
class
MicroprofilePropertyNames
{
public
static
final
String
CACHE_TTL_MAX_SECONDS
=
"cache.ttl.write.seconds"
;
public
static
final
String
CACHE_SIZE_MAX
=
"cache.max.size"
;
public
static
final
String
CACHE_TTL_MAX_SECONDS
=
"cache.ttl.write.seconds"
;
public
static
final
String
CACHE_SIZE_MAX
=
"cache.max.size"
;
public
static
final
String
MULTI_SOURCE_SINGLE_TENANT_ENABLED
=
"eclipse.persistence.msst.enabled"
;
public
static
final
String
DEFAULT_PAGE_SIZE
=
"eclipse.pagination.page-size.default"
;
public
static
final
String
DISTRIBUTED_CSRF_MODE
=
"security.csrf.enabled.distributed-mode"
;
private
MicroprofilePropertyNames
()
{
}
public
static
final
String
DEFAULT_PAGE_SIZE
=
"eclipse.pagination.page-size.default"
;
public
static
final
String
CSRF_MODE
=
"security.csrf.enabled"
;
public
static
final
String
DISTRIBUTED_CSRF_MODE
=
"security.csrf.enabled.distributed-mode"
;
Christopher Guindon
@cguindon
·
3 years ago
Maintainer
Small nit pick, the spacing seems a bit off here.
Edited
3 years ago
by
Christopher Guindon
Please
register
or
sign in
to reply
public
static
final
String
OPTIONAL_RESOURCES_ENABLED
=
"eclipse.optional-resources.enabled"
;
public
static
final
String
CACHE_RESOURCE_ENABLED
=
"eclipse.cache.resource.enabled"
;
private
MicroprofilePropertyNames
()
{
}
}
Loading
Small nit pick, the spacing seems a bit off here.