Skip to content

Commit

Permalink
Merge pull request #197 from JeromeMBourgeois/release3.0.12
Browse files Browse the repository at this point in the history
Release3.0.12
  • Loading branch information
JeromeMBourgeois authored Jan 21, 2022
2 parents 3032b8d + e99776d commit 056ffab
Show file tree
Hide file tree
Showing 48 changed files with 932 additions and 181 deletions.
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.11</version>
<version>3.0.12</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 @@ -11,15 +11,15 @@ public interface CodeListService {

String getCodeUri(String notationCodeList, String notationCode) throws RmesException;

String getAllCodesLists() throws RmesException;
String getAllCodesLists(boolean partial) throws RmesException;

String geCodesListByIRI(String iri) throws RmesException;

String getDetailedCodesList(String notation) throws RmesException;
String getDetailedCodesList(String notation, boolean partial) throws RmesException;

String getDetailedCodesListForSearch() throws RmesException;
String getDetailedCodesListForSearch(boolean partial) throws RmesException;

String setCodesList(String body) throws RmesException;
String setCodesList(String body, boolean partial) throws RmesException;

String setCodesList(String id, String body) throws RmesException;
String setCodesList(String id, String body, boolean partial) throws RmesException;
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ public interface GeographyService {
JSONObject getGeoFeature(IRI uri) throws RmesException;



void updateFeature(String id, String body) throws RmesException;
}
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ public interface OperationsService {

String getIndicators() throws RmesException;

String getIndicatorsWithSims() throws RmesException;

String getIndicatorsForSearch() throws RmesException;

String getIndicatorJsonByID(String id) throws RmesException;
Expand Down Expand Up @@ -158,4 +160,6 @@ public interface OperationsService {

Response exportMetadataReportTempFiles(String id, Boolean includeEmptyMas, Boolean lg1, Boolean lg2) throws RmesException;

String getOperationsWithReport(String id) throws RmesException;

}
Loading

0 comments on commit 056ffab

Please sign in to comment.