Change-Id: Ib1c463f6c54c067ed60059dea42ff85e53ade265
Issue-ID: ACUMOS-2554
Signed-off-by: Andrew Gauld <agauld@att.com>
This server is available as a Docker image in a Docker registry at the Linux Foundation.
The image name is "federation-gateway" and the tag is a version string as shown below.
This server is available as a Docker image in a Docker registry at the Linux Foundation.
The image name is "federation-gateway" and the tag is a version string as shown below.
-Version 2.0.1, 2019-02-21
+Version 2.0.1, 2019-02-22
-------------------------
* Add catalogId field in solution search selector (`ACUMOS-2285 <https://jira.acumos.org/browse/ACUMOS-2285>`_)
-------------------------
* Add catalogId field in solution search selector (`ACUMOS-2285 <https://jira.acumos.org/browse/ACUMOS-2285>`_)
+* Normalize configured Nexus URL to have exactly one trailing slash (`ACUMOS-2554 <https://jira.acumos.org/browse/ACUMOS-2554>`_)
Version 2.0.0, 2019-02-20
-------------------------
Version 2.0.0, 2019-02-20
-------------------------
* ===============LICENSE_START=======================================================
* Acumos
* ===================================================================================
* ===============LICENSE_START=======================================================
* Acumos
* ===================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property & Tech Mahindra. All rights reserved.
+ * Copyright (C) 2017-2019 AT&T Intellectual Property & Tech Mahindra. All rights reserved.
* ===================================================================================
* This Acumos software file is distributed by AT&T and Tech Mahindra
* under the Apache License, Version 2.0 (the "License");
* ===================================================================================
* This Acumos software file is distributed by AT&T and Tech Mahindra
* under the Apache License, Version 2.0 (the "License");
this.url = new URL(theSpec);
}
this.url = new URL(theSpec);
}
+
+ /**
+ * Get the normalized URL for the nexus content server.
+ * @return the URL, as a String, with exactly one trailing slash.
+ */
+
- return this.url.toString();
- }
+ return this.url.toString().replaceAll("/*$", "") + "/";
+ }
public void setUsername(String theUsername) {
this.username = theUsername;
public void setUsername(String theUsername) {
this.username = theUsername;