From 577d49551bfd48e5f186d95a1e585ff67e2aedfb Mon Sep 17 00:00:00 2001 From: Falk Puschner Date: Mon, 10 Jul 2023 09:47:53 +0200 Subject: [PATCH] :memo: Udpate javadoc --- .../server/converter/GenericScimResourceConverter.java | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/spring-boot-starter-scim2/src/main/java/com/bettercloud/scim2/server/converter/GenericScimResourceConverter.java b/spring-boot-starter-scim2/src/main/java/com/bettercloud/scim2/server/converter/GenericScimResourceConverter.java index 9d1a540..0dd2682 100644 --- a/spring-boot-starter-scim2/src/main/java/com/bettercloud/scim2/server/converter/GenericScimResourceConverter.java +++ b/spring-boot-starter-scim2/src/main/java/com/bettercloud/scim2/server/converter/GenericScimResourceConverter.java @@ -45,8 +45,7 @@ public GenericScimResource convert(final RESOURCE resource) throws BadRequestExc * Convert a resource after preparing it with the supplied BiConsumer. * * @param resource The resource to be converted. - * @param prepareResource A BiConsumer that will do prepare the resource. Usually used to set the references of {@link - * com.bettercloud.scim2.common.ComplexRef} + * @param prepareResource A BiConsumer that will do prepare the resource. Usually used to set the references. * * @return A generic resource that has had all the correct types and locations set. * @@ -78,8 +77,7 @@ public GenericScimResource convert(final String attributes, final String exclude * @param attributes Attributes filter. ex type,schemaBlob * @param excludedAttributes Exclude attributes filter. ex type,schemaBlob This is not used if the attributes filter is defined. * @param resource The resource to be converted. - * @param prepareResource A BiConsumer that will prepare the resource. Usually used to set the references of {@link - * com.bettercloud.scim2.common.ComplexRef} + * @param prepareResource A BiConsumer that will prepare the resource. Usually used to set the references. * * @return A generic resource that has had all the correct types and locations set. * @@ -128,8 +126,7 @@ public List convert(final String attributes, * @param attributes Attributes filter. ex type,schemaBlob * @param excludedAttributes Excluded attributes filter. ex type,schemaBlob * @param resourceList The resources to be converted. - * @param prepareResource A BiConsumer that will prepare the resource. Usually used to set the references of {@link - * com.bettercloud.scim2.common.ComplexRef} + * @param prepareResource A BiConsumer that will prepare the resource. Usually used to set the references. * * @return A list of generic resources that have had all the correct types and locations set. *