Skip to content

Commit

Permalink
Version 3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
alicela committed May 11, 2021
1 parent 50f4531 commit 67b7115
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
1 change: 1 addition & 0 deletions bauhaus-back-changeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
3.0.2 : Corrections de l'url des documents à la publication
3.0.1 : Rétablissement du swagger et des droits d'accès
3.0.0 : Module Opérations
2.1.2 : - Correction du bug à la publication des concepts (la modification supprimait les anciennes versions de notes)
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>fr.insee.rmes</groupId>
<artifactId>Bauhaus-BO</artifactId>
<packaging>war</packaging>
<version>3.0.1</version>
<version>3.0.2</version>
<name>Bauhaus-Back-Office</name>
<description>Back-office services for Bauhaus</description>
<url>https://github.com/InseeFr/Bauhaus-Back-Office</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public Response export(String simsXML,String operationXML,String indicatorXML,St


private String buildParams(Boolean lg1, Boolean lg2, Boolean includeEmptyMas, String targetType) {
String includeEmptyMasString=( includeEmptyMas ? "true" : "false");
String includeEmptyMasString=( Boolean.TRUE.equals(includeEmptyMas) ? "true" : "false");
String parametersXML="";

parametersXML=parametersXML.concat(Constants.XML_OPEN_PARAMETERS_TAG);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import javax.ws.rs.core.Response.Status;
import javax.ws.rs.core.Response.Status.Family;

import fr.insee.rmes.persistance.ontologies.QB;
import org.apache.http.HttpStatus;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
Expand All @@ -22,14 +21,14 @@
import org.eclipse.rdf4j.repository.RepositoryConnection;
import org.eclipse.rdf4j.repository.RepositoryException;
import org.eclipse.rdf4j.repository.RepositoryResult;
import org.eclipse.rdf4j.repository.util.Repositories;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import fr.insee.rmes.bauhaus_services.Constants;
import fr.insee.rmes.config.Config;
import fr.insee.rmes.exceptions.RmesException;
import fr.insee.rmes.persistance.ontologies.QB;

/**
* Getters only get on publication base
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public SwaggerConfig(@Context ServletConfig servletConfig) {
super();
OpenAPI openApi = new OpenAPI();

Info info = new Info().title("Bauhaus API").version("3.0.1").description("Rest Endpoints and services Integration used by Bauhaus");
Info info = new Info().title("Bauhaus API").version("3.0.2").description("Rest Endpoints and services Integration used by Bauhaus");
openApi.info(info);

Server server = new Server();
Expand Down

0 comments on commit 67b7115

Please sign in to comment.