From e17f0af4d7bdeeb22cfdfed801b441924f61c9c5 Mon Sep 17 00:00:00 2001 From: Piotr Gawron <piotr.gawron@uni.lu> Date: Wed, 17 Jan 2018 16:16:20 +0100 Subject: [PATCH] hgnc connector uses API over https --- .../annotation/services/annotators/HgncAnnotator.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/annotation/src/main/java/lcsb/mapviewer/annotation/services/annotators/HgncAnnotator.java b/annotation/src/main/java/lcsb/mapviewer/annotation/services/annotators/HgncAnnotator.java index e1ba07247e..a542728437 100644 --- a/annotation/src/main/java/lcsb/mapviewer/annotation/services/annotators/HgncAnnotator.java +++ b/annotation/src/main/java/lcsb/mapviewer/annotation/services/annotators/HgncAnnotator.java @@ -30,7 +30,7 @@ import lcsb.mapviewer.modelutils.map.ElementUtils; /** * This class is responsible for connecting to - * <a href="http://rest.genenames.org/">HGNC restfull API</a> and annotate + * <a href="https://rest.genenames.org/">HGNC restfull API</a> and annotate * elements with information taken from this service. * * @@ -41,7 +41,7 @@ public class HgncAnnotator extends ElementAnnotator implements IExternalService /** * Address of HGNC API that should be used for retrieving data. */ - private static final String REST_API_URL = "http://rest.genenames.org/fetch/"; + private static final String REST_API_URL = "https://rest.genenames.org/fetch/"; /** * Default constructor. -- GitLab