Skip to content

Commit 11817a9

Browse files
committed
javadoc fix
@implNote is used in the JDK and not standardized
1 parent a6996c3 commit 11817a9

File tree

2 files changed

+4
-21
lines changed

2 files changed

+4
-21
lines changed

dsf-bpe/dsf-bpe-process-api-v2/src/main/java/dev/dsf/bpe/v2/service/FhirClientConfigProvider.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,17 @@
1919
public interface FhirClientConfigProvider
2020
{
2121
/**
22+
* <i>Every call to this method creates a new {@link SSLContext} object.</i>
23+
*
2224
* @return new {@link SSLContext} configured with {@link #createDefaultTrustStore()}
23-
* @implNote Every call to this method creates a new {@link SSLContext} object
2425
*/
2526
SSLContext createDefaultSslContext();
2627

2728
/**
29+
* <i>Every call to this method creates a new {@link KeyStore} object.</i>
30+
*
2831
* @return copy of default certificate trust store configured via the DSF BPE config property
2932
* `dev.dsf.bpe.fhir.client.connections.config.default.trust.server.certificate.cas`
30-
* @implNote Every call to this method creates a new {@link KeyStore} object
3133
*/
3234
KeyStore createDefaultTrustStore();
3335

pom.xml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1080,25 +1080,6 @@
10801080
<plugin>
10811081
<groupId>org.apache.maven.plugins</groupId>
10821082
<artifactId>maven-javadoc-plugin</artifactId>
1083-
<configuration>
1084-
<tags>
1085-
<tag>
1086-
<name>apiNote</name>
1087-
<placement>a</placement>
1088-
<head>API Note:</head>
1089-
</tag>
1090-
<tag>
1091-
<name>implSpec</name>
1092-
<placement>a</placement>
1093-
<head>Implementation Requirements:</head>
1094-
</tag>
1095-
<tag>
1096-
<name>implNote</name>
1097-
<placement>a</placement>
1098-
<head>Implementation Note:</head>
1099-
</tag>
1100-
</tags>
1101-
</configuration>
11021083
<executions>
11031084
<execution>
11041085
<id>attach-javadocs</id>

0 commit comments

Comments
 (0)