diff --git a/spring-cloud-dataflow-classic-docs/src/test/java/org/springframework/cloud/dataflow/server/rest/documentation/AppRegistryDocumentation.java b/spring-cloud-dataflow-classic-docs/src/test/java/org/springframework/cloud/dataflow/server/rest/documentation/AppRegistryDocumentation.java index 424ed36e47..22ada75374 100644 --- a/spring-cloud-dataflow-classic-docs/src/test/java/org/springframework/cloud/dataflow/server/rest/documentation/AppRegistryDocumentation.java +++ b/spring-cloud-dataflow-classic-docs/src/test/java/org/springframework/cloud/dataflow/server/rest/documentation/AppRegistryDocumentation.java @@ -176,6 +176,7 @@ void getSingleApplication() throws Exception { fieldWithPath("label").description("The label name of the application"), fieldWithPath("type").description("The type of the application. One of " + Arrays.asList(ApplicationType.values())), fieldWithPath("uri").description("The uri of the application"), + fieldWithPath("metaDataUri").description("The uri of the application metadata").optional(), fieldWithPath("version").description("The version of the application"), fieldWithPath("versions").description("All the registered versions of the application"), fieldWithPath("defaultVersion").description("If true, the application is the default version"), diff --git a/spring-cloud-dataflow-classic-docs/src/test/java/org/springframework/cloud/dataflow/server/rest/documentation/StreamDefinitionsDocumentation.java b/spring-cloud-dataflow-classic-docs/src/test/java/org/springframework/cloud/dataflow/server/rest/documentation/StreamDefinitionsDocumentation.java index 9671403c7d..5288fe3c5b 100644 --- a/spring-cloud-dataflow-classic-docs/src/test/java/org/springframework/cloud/dataflow/server/rest/documentation/StreamDefinitionsDocumentation.java +++ b/spring-cloud-dataflow-classic-docs/src/test/java/org/springframework/cloud/dataflow/server/rest/documentation/StreamDefinitionsDocumentation.java @@ -164,6 +164,7 @@ void getStreamApplications() throws Exception { fieldWithPath("[].type").description("The type of the application. One of " + Arrays .asList(ApplicationType.values())), fieldWithPath("[].uri").description("The uri of the application"), + fieldWithPath("[].metaDataUri").description("The uri of the application metadata"), fieldWithPath("[].version").description("The version of the application"), fieldWithPath("[].defaultVersion").description("If true, the application is the default version"), fieldWithPath("[].versions").description("All the registered versions of the application"),