updated javadoc
This commit is contained in:
parent
f2c874af0d
commit
50c5a49095
11
pom.xml
11
pom.xml
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue