Skip to content

Commit 07594cd

Browse files
authored
Minor release 4.3.1 (#605)
2 parents f30bede + 456a7db commit 07594cd

File tree

6 files changed

+30
-35
lines changed

6 files changed

+30
-35
lines changed

coverage/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,6 @@
4949
<artifactId>vip-gatelab</artifactId>
5050
<version>${project.version}</version>
5151
</dependency>
52-
<dependency>
53-
<groupId>${project.groupId}</groupId>
54-
<artifactId>vip-local</artifactId>
55-
<version>${project.version}</version>
56-
</dependency>
5752
<dependency>
5853
<groupId>${project.groupId}</groupId>
5954
<artifactId>vip-portal</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ knowledge of the CeCILL-B license and that you accept its terms.
4343
<properties>
4444
<!-- project version. Only to change it here (and in CoreConstants.java
4545
Follow this practice : https://maven.apache.org/maven-ci-friendly.html-->
46-
<revision>4.3</revision>
46+
<revision>4.3.1</revision>
4747
<changelist />
4848
<sha1/>
4949

vip-core/src/main/java/fr/insalyon/creatis/vip/core/client/view/CoreConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
public class CoreConstants implements IsSerializable {
3939

4040

41-
public static final String VERSION = "v4.3";
41+
public static final String VERSION = "v4.3.1";
4242
// Configuration Labels
4343
public static final String VO_NAME = "vo.name";
4444
public static final String VO_ROOT = "vo.root";

vip-datamanagement/src/main/java/fr/insalyon/creatis/vip/datamanager/server/business/GirderStorageBusiness.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,9 @@ private String buildUri(
120120
filename +
121121
"?apiurl=" +
122122
apiUrl +
123-
"&amp;fileId=" +
123+
"&fileId=" +
124124
fileId +
125-
"&amp;token=" +
125+
"&token=" +
126126
token;
127127
}
128128

vip-datamanagement/src/main/java/fr/insalyon/creatis/vip/datamanager/server/business/ShanoirStorageBusiness.java

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -140,19 +140,19 @@ private String buildDownloadUri(
140140
fileName +
141141
"?"+ UrlKeys.API_URI.key+"=" +
142142
apiUrl +
143-
"&amp;"+ UrlKeys.RESOURCE_ID.key+"=" +
143+
"&"+ UrlKeys.RESOURCE_ID.key+"=" +
144144
resourceId +
145-
"&amp;"+ UrlKeys.FORMAT.key+"=" +
145+
"&"+ UrlKeys.FORMAT.key+"=" +
146146
format +
147-
"&amp;"+ UrlKeys.CONVERTER_ID.key+"=" +
147+
"&"+ UrlKeys.CONVERTER_ID.key+"=" +
148148
converterId +
149-
"&amp;"+ UrlKeys.KEYCLOAK_CLIENT_ID.key+"=" +
149+
"&"+ UrlKeys.KEYCLOAK_CLIENT_ID.key+"=" +
150150
keycloakClientId +
151-
"&amp;"+ UrlKeys.REFRESH_TOKEN_URL.key+"=" +
151+
"&"+ UrlKeys.REFRESH_TOKEN_URL.key+"=" +
152152
refreshTokenUrl +
153-
"&amp;"+ UrlKeys.TOKEN.key+"=" +
153+
"&"+ UrlKeys.TOKEN.key+"=" +
154154
token +
155-
"&amp;"+ UrlKeys.REFRESH_TOKEN.key+"=" +
155+
"&"+ UrlKeys.REFRESH_TOKEN.key+"=" +
156156
refreshToken;
157157
}
158158

@@ -161,17 +161,17 @@ private String buildUploadUri(String filePath, String uploadUrl, String token, S
161161
filePath +
162162
"?"+ UrlKeys.UPLOAD_URL.key+"=" +
163163
uploadUrl +
164-
"&amp;"+ UrlKeys.TYPE.key+"=" +
164+
"&"+ UrlKeys.TYPE.key+"=" +
165165
type +
166-
"&amp;"+ UrlKeys.MD5.key+"=" +
166+
"&"+ UrlKeys.MD5.key+"=" +
167167
md5 +
168-
"&amp;"+ UrlKeys.KEYCLOAK_CLIENT_ID.key+"=" +
168+
"&"+ UrlKeys.KEYCLOAK_CLIENT_ID.key+"=" +
169169
keycloakClientId +
170-
"&amp;"+ UrlKeys.REFRESH_TOKEN_URL.key+"=" +
170+
"&"+ UrlKeys.REFRESH_TOKEN_URL.key+"=" +
171171
refreshTokenUrl +
172-
"&amp;"+ UrlKeys.TOKEN.key+"=" +
172+
"&"+ UrlKeys.TOKEN.key+"=" +
173173
token +
174-
"&amp;"+ UrlKeys.REFRESH_TOKEN.key+"=" +
174+
"&"+ UrlKeys.REFRESH_TOKEN.key+"=" +
175175
refreshToken;
176176
}
177177

vip-datamanagement/src/test/java/fr/insalyon/creatis/vip/datamanager/server/business/ShanoirStorageBusinessTest.java

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ public void testShanoirUri() throws BusinessException {
3030

3131
String expectedUri="shanoir:/path/to/file.txt?" +
3232
"apiUrl=testShanoirUrl" +
33-
"&amp;resourceId=testResourceId" +
34-
"&amp;format=testFormat" +
35-
"&amp;converterId=testConverterId" +
36-
"&amp;keycloak_client_id=testKeycloakClientId" +
37-
"&amp;refresh_token_url=testRefreshTokenUrl" +
38-
"&amp;token=testToken" +
39-
"&amp;refreshToken=testRefreshToken";
33+
"&resourceId=testResourceId" +
34+
"&format=testFormat" +
35+
"&converterId=testConverterId" +
36+
"&keycloak_client_id=testKeycloakClientId" +
37+
"&refresh_token_url=testRefreshTokenUrl" +
38+
"&token=testToken" +
39+
"&refreshToken=testRefreshToken";
4040

4141
Assertions.assertEquals(expectedUri, uri);
4242
}
@@ -62,12 +62,12 @@ public void testShanoirUploadUri() throws BusinessException {
6262

6363
String expectedUri="shanoir:/path/to/dir?" +
6464
"upload_url=testUploadUrl" +
65-
"&amp;type=File" +
66-
"&amp;md5=d41d8cd98f00b204e9800998ecf8427e" +
67-
"&amp;keycloak_client_id=testKeycloakClientId" +
68-
"&amp;refresh_token_url=testRefreshTokenUrl" +
69-
"&amp;token=testToken" +
70-
"&amp;refreshToken=testRefreshToken";
65+
"&type=File" +
66+
"&md5=d41d8cd98f00b204e9800998ecf8427e" +
67+
"&keycloak_client_id=testKeycloakClientId" +
68+
"&refresh_token_url=testRefreshTokenUrl" +
69+
"&token=testToken" +
70+
"&refreshToken=testRefreshToken";
7171

7272
Assertions.assertEquals(expectedUri, uploadUri);
7373
}

0 commit comments

Comments
 (0)