Skip to content

Commit 5da4327

Browse files
marpozhpavgra
authored andcommitted
Fixed miredot config (OHDSI#754)
1 parent 33e46f5 commit 5da4327

File tree

3 files changed

+42
-27
lines changed

3 files changed

+42
-27
lines changed

Diff for: api.html

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<h1>Welcome to OHDSI WebAPI</h1>
6+
<body>
7+
8+
</body>
9+
</html>

Diff for: pom.xml

+32-27
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@
262262
<plugin>
263263
<groupId>com.qmino</groupId>
264264
<artifactId>miredot-plugin</artifactId>
265-
<version>1.5.1</version>
265+
<version>2.1.2</version>
266266
<executions>
267267
<execution>
268268
<phase>package</phase>
@@ -272,31 +272,36 @@
272272
</execution>
273273
</executions>
274274
<configuration>
275-
<licence>cHJvamVjdHxvcmcub2hkc2kuV2ViQVBJfDIwMjAtMDMtMzF8dHJ1ZXwtMSNNQzBDRkNNQ2R2ZEhjbDg0Z2tONVI3bHlmQ2Y4SnNkYUFoVUFoMkdtOUVFdy9RelpLVzM1V2p6a2FsdzJZV009</licence>
276-
<restModel>
277-
<httpStatusCodes>
278-
<httpStatusCode>
279-
<httpCode>200</httpCode>
280-
<document>always</document>
281-
<defaultMessage>The service call has completed successfully.</defaultMessage>
282-
</httpStatusCode>
283-
<httpStatusCode>
284-
<httpCode>401</httpCode>
285-
<document>Authorization Exception</document>
286-
<defaultMessage>The user is not authorized to use this service.</defaultMessage>
287-
</httpStatusCode>
288-
<httpStatusCode>
289-
<httpCode>412</httpCode>
290-
<document>put,post</document>
291-
<defaultMessage>Invalid JSON/XML input.</defaultMessage>
292-
</httpStatusCode>
293-
<httpStatusCode>
294-
<httpCode>500</httpCode>
295-
<document>always</document>
296-
<defaultMessage>The service call has not succeeded.</defaultMessage>
297-
</httpStatusCode>
298-
</httpStatusCodes>
299-
</restModel>
275+
<licence>cHJvamVjdHxvcmcub2hkc2kuV2ViQVBJfDIwMjAtMDMtMzF8dHJ1ZXwtMSNNQzBDRkNNQ2R2ZEhjbDg0Z2tONVI3bHlmQ2Y4SnNkYUFoVUFoMkdtOUVFdy9RelpLVzM1V2p6a2FsdzJZV009</licence>
276+
<restModel>
277+
<httpStatusCodes>
278+
<httpStatusCode>
279+
<httpCode>200</httpCode>
280+
<document>always</document>
281+
<defaultMessage>The service call has completed successfully.</defaultMessage>
282+
</httpStatusCode>
283+
<httpStatusCode>
284+
<httpCode>401</httpCode>
285+
<document>Authorization Exception</document>
286+
<defaultMessage>The user is not authorized to use this service.</defaultMessage>
287+
</httpStatusCode>
288+
<httpStatusCode>
289+
<httpCode>412</httpCode>
290+
<document>put,post</document>
291+
<defaultMessage>Invalid JSON/XML input.</defaultMessage>
292+
</httpStatusCode>
293+
<httpStatusCode>
294+
<httpCode>500</httpCode>
295+
<document>always</document>
296+
<defaultMessage>The service call has not succeeded.</defaultMessage>
297+
</httpStatusCode>
298+
</httpStatusCodes>
299+
</restModel>
300+
<output>
301+
<html>
302+
<intro>api.html</intro>
303+
</html>
304+
</output>
300305
</configuration>
301306
</plugin>
302307
</plugins>
@@ -678,7 +683,7 @@
678683
<dependency>
679684
<groupId>org.ohdsi</groupId>
680685
<artifactId>standardized-analysis-api</artifactId>
681-
<version>1.0.0-SNAPSHOT</version>
686+
<version>1.1.0-SNAPSHOT</version>
682687
</dependency>
683688
<dependency>
684689
<groupId>com.cosium.spring.data</groupId>

Diff for: src/main/java/org/ohdsi/webapi/feanalysis/dto/FeAnalysisDTO.java

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ public void setValue(final String value) {
2222
this.value = value;
2323
}
2424

25+
@Override
2526
public Object getDesign() {
2627

2728
return design;

0 commit comments

Comments
 (0)