updated javadoc

This commit is contained in:
Francesco Mangiacrapa 2025-09-03 15:55:06 +02:00
parent f2c874af0d
commit 50c5a49095
5 changed files with 17 additions and 7 deletions

11
pom.xml
View File

@ -154,6 +154,17 @@
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<doclint>none</doclint>
<failOnError>false</failOnError>
<failOnWarnings>false</failOnWarnings>
<quiet>true</quiet>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>

View File

@ -13,7 +13,7 @@ import org.slf4j.LoggerFactory;
* It defines methods to read properties and check availability of the service.
*
* @author Francesco Mangiacrapa
* @date July 2025
* @since July 2025
*/
public abstract class FetchUrlShortenerResource {

View File

@ -19,7 +19,7 @@ import org.slf4j.LoggerFactory;
* resource of the NEW Information System.
*
* @author Francesco Mangiacrapa at ISTI-CNR
* @date July 2025
* @since July 2025
*/
public class FetchUrlShortenerFromNewIS extends FetchUrlShortenerResource {

View File

@ -1,8 +1,5 @@
package org.gcube.application.shlink.discovery;
import static org.gcube.resources.discovery.icclient.ICFactory.clientFor;
import static org.gcube.resources.discovery.icclient.ICFactory.queryFor;
import java.util.List;
import java.util.Map;
@ -13,6 +10,8 @@ import org.gcube.common.resources.gcore.ServiceEndpoint.AccessPoint;
import org.gcube.common.resources.gcore.ServiceEndpoint.Property;
import org.gcube.resources.discovery.client.api.DiscoveryClient;
import org.gcube.resources.discovery.client.queries.impl.XQuery;
import static org.gcube.resources.discovery.icclient.ICFactory.clientFor;
import static org.gcube.resources.discovery.icclient.ICFactory.queryFor;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@ -23,7 +22,7 @@ import org.slf4j.LoggerFactory;
* and managing the URL shortener service configuration from a runtime resource of the OLD Information System.
*
* @author Francesco Mangiacrapa at ISTI-CNR
* @date July 2025
* @since July 2025
*/
public class FetchUrlShortenerFromOldIS extends FetchUrlShortenerResource {

View File

@ -6,7 +6,7 @@ package org.gcube.application.shlink.discovery;
* shortener API.
*
* @author Francesco Mangiacrapa at ISTI-CNR
* @date July 2025
* @since July 2025
*/
public class UrlShortenerConfig {