Refactor HTTP request methods and update Javadoc language.

Refactored HTTP request methods by removing explicit `responseType` parameters where possible and adjusting to specific response mapping needs. Additionally, updated Javadoc documentation language from German to English for consistency, improving clarity and accessibility.
This commit is contained in:
2025-03-23 18:39:36 +01:00
parent af757714f4
commit e415dc1106
69 changed files with 3278 additions and 3743 deletions
+9 -1
View File
@@ -103,19 +103,27 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.1</version>
<version>3.6.3</version>
<configuration>
<failOnError>false</failOnError>
<locale>en</locale>
<source>${java.version}</source>
<reportOutputDirectory>${project.basedir}/docs</reportOutputDirectory>
</configuration>
<executions>
<execution>
<id>build javadoc html</id>
<goals>
<goal>javadoc</goal>
</goals>
<phase>package</phase>
</execution>
<execution>
<id>build javadoc jar</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>