Skip to content

Commit b7227b5

Browse files
committed
docs(autoconfigure): Follow Spring Boot JavaDoc guidelines
Signed-off-by: Thomas Vitale <[email protected]>
1 parent 35a24de commit b7227b5

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

arconia-spring-boot-autoconfigure/src/main/java/io/arconia/autoconfigure/core/multitenancy/FixedTenantResolutionProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class FixedTenantResolutionProperties {
2020
private boolean enabled = false;
2121

2222
/**
23-
* The name of the fixed tenant to use in each context.
23+
* Identifier of the fixed tenant to use in each context.
2424
*/
2525
private String tenantId = FixedTenantResolver.DEFAULT_FIXED_TENANT;
2626

arconia-spring-boot-autoconfigure/src/main/java/io/arconia/autoconfigure/core/multitenancy/TenantManagementProperties.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public static class Mdc {
4141
private boolean enabled = true;
4242

4343
/**
44-
* The key to use for including the tenant identifier information in MDC.
44+
* Key to use for including the tenant identifier information in MDC.
4545
*/
4646
private String key = MdcTenantContextEventListener.DEFAULT_TENANT_ID_KEY;
4747

@@ -71,7 +71,7 @@ public static class Observations {
7171
private boolean enabled = true;
7272

7373
/**
74-
* The key to use for including the tenant identifier information in observations.
74+
* Key to use for including the tenant identifier information in observations.
7575
*/
7676
private String key = ObservationTenantContextEventListener.DEFAULT_TENANT_ID_KEY;
7777

arconia-spring-boot-autoconfigure/src/main/java/io/arconia/autoconfigure/web/multitenancy/HttpTenantResolutionProperties.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class HttpTenantResolutionProperties {
2323
private boolean enabled = true;
2424

2525
/**
26-
* The HTTP type of resolution.
26+
* Mode of HTTP resolution.
2727
*/
2828
private HttpResolutionMode type = HttpResolutionMode.HEADER;
2929

@@ -73,7 +73,7 @@ public Filter getFilter() {
7373
public static class Header {
7474

7575
/**
76-
* The name of the HTTP header from which to resolve the current tenant.
76+
* Name of the HTTP header from which to resolve the current tenant.
7777
*/
7878
private String headerName = HeaderTenantResolver.DEFAULT_HEADER_NAME;
7979

@@ -90,7 +90,7 @@ public void setHeaderName(String headerName) {
9090
public static class Cookie {
9191

9292
/**
93-
* The name of the HTTP cookie from which to resolve the current tenant.
93+
* Name of the HTTP cookie from which to resolve the current tenant.
9494
*/
9595
private String cookieName = CookieTenantResolver.DEFAULT_COOKIE_NAME;
9696

@@ -112,8 +112,8 @@ public static class Filter {
112112
private boolean enabled = true;
113113

114114
/**
115-
* A list of HTTP request paths for which the tenant resolution will not be
116-
* performed.
115+
* Comma-separated list of HTTP request paths for which the tenant resolution will
116+
* not be performed.
117117
*/
118118
private List<String> ignorePaths = List.of("/actuator/**", "/webjars/**", "/css/**", "/js/**", ".ico");
119119

0 commit comments

Comments
 (0)