Skip to content
Snippets Groups Projects

Iss. #8 - Add a testing common package to api-common to simplify tests

Merged Iss. #8 - Add a testing common package to api-common to simplify tests
1 unresolved thread
Merged Martin Lowe requested to merge malowe/eclipsefdn-api-common:malowe/master/8 into master
1 unresolved thread
7 files
+ 298
10
Compare changes
  • Side-by-side
  • Inline
Files
7
@@ -7,12 +7,15 @@ package org.eclipsefoundation.core.namespace;
@@ -7,12 +7,15 @@ package org.eclipsefoundation.core.namespace;
*
*
*/
*/
public class MicroprofilePropertyNames {
public class MicroprofilePropertyNames {
public static final String CACHE_TTL_MAX_SECONDS = "cache.ttl.write.seconds";
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_SIZE_MAX = "cache.max.size";
public static final String MULTI_SOURCE_SINGLE_TENANT_ENABLED = "eclipse.persistence.msst.enabled";
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 DEFAULT_PAGE_SIZE = "eclipse.pagination.page-size.default";
public static final String DISTRIBUTED_CSRF_MODE = "security.csrf.enabled.distributed-mode";
public static final String CSRF_MODE = "security.csrf.enabled";
public static final String DISTRIBUTED_CSRF_MODE = "security.csrf.enabled.distributed-mode";
Please register or sign in to reply
private MicroprofilePropertyNames() {
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