endpointWithNullableParameter() — spring-boot Function Reference
Architecture documentation for the endpointWithNullableParameter() function in EndpointMetadataGenerationTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 9ea6c8bd_645c_fb02_c782_023c9e03f1fd["endpointWithNullableParameter()"] 83ee5c58_5d39_6a9f_3b4b_81ba336603a7["withGroup()"] 9ea6c8bd_645c_fb02_c782_023c9e03f1fd -->|calls| 83ee5c58_5d39_6a9f_3b4b_81ba336603a7 a7060ba0_7028_1911_946e_7c3090117119["fromSource()"] 9ea6c8bd_645c_fb02_c782_023c9e03f1fd -->|calls| a7060ba0_7028_1911_946e_7c3090117119 525878df_aaac_a261_8c5d_13633f714c2c["access()"] 9ea6c8bd_645c_fb02_c782_023c9e03f1fd -->|calls| 525878df_aaac_a261_8c5d_13633f714c2c 75ef14b3_32fe_e68e_87cc_2720b865a960["cacheTtl()"] 9ea6c8bd_645c_fb02_c782_023c9e03f1fd -->|calls| 75ef14b3_32fe_e68e_87cc_2720b865a960 c8c9e7f6_e856_4711_6fe7_b1c2aeb3d239["getItems()"] 9ea6c8bd_645c_fb02_c782_023c9e03f1fd -->|calls| c8c9e7f6_e856_4711_6fe7_b1c2aeb3d239 style 9ea6c8bd_645c_fb02_c782_023c9e03f1fd fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationprocessor/EndpointMetadataGenerationTests.java lines 198–206
@Test
void endpointWithNullableParameter() {
ConfigurationMetadata metadata = compile(NullableParameterEndpoint.class);
assertThat(metadata)
.has(Metadata.withGroup("management.endpoint.nullable").fromSource(NullableParameterEndpoint.class));
assertThat(metadata).has(access("nullable", TestAccess.UNRESTRICTED));
assertThat(metadata).has(cacheTtl("nullable"));
assertThat(metadata.getItems()).hasSize(3);
}
Domain
Subdomains
Source
Frequently Asked Questions
What does endpointWithNullableParameter() do?
endpointWithNullableParameter() is a function in the spring-boot codebase.
What does endpointWithNullableParameter() call?
endpointWithNullableParameter() calls 5 function(s): access, cacheTtl, fromSource, getItems, withGroup.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free