Skip to content

Commit

Permalink
jpa v1.2.1 : HotFix
Browse files Browse the repository at this point in the history
  • Loading branch information
gideruette committed Dec 12, 2024
1 parent 94453db commit 8e0aff7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ private void WriteEndpoint(JavaWriter fw, Endpoint endpoint, string tag)
}

fw.WriteLine(1, " */");
var returnType = "void";
var returnType = "Void";

if (endpoint.Returns != null)
{
Expand Down
2 changes: 1 addition & 1 deletion TopModel.Generator.Jpa/TopModel.Generator.Jpa.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<PropertyGroup>
<PackageOutputPath>../.nupkg</PackageOutputPath>
<Version>1.2.0</Version>
<Version>1.2.1</Version>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<Authors>gideruette</Authors>
<Description>Générateurs Java/JPA pour TopModel</Description>
Expand Down
2 changes: 1 addition & 1 deletion samples/generators/jpa/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.5</version>
<version>3.4.0</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<groupId>topmodel.jpa.sample</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
public interface UtilisateurClient {


/**
/**
* Ajoute un utilisateur.
* @param utilisateur Utilisateur à sauvegarder
* @return Utilisateur sauvegardé
Expand All @@ -40,15 +40,15 @@ public interface UtilisateurClient {
@PostExchange(value = "/")
ResponseEntity<UtilisateurRead> addUtilisateur(@RequestBody @Valid UtilisateurWrite utilisateur);

/**
/**
* Supprime un utilisateur.
* @param utiId Id de l'utilisateur
*/
@PreAuthorize("hasRole('DELETE')")
@DeleteExchange(value = "/{utiId}")
ResponseEntity<void> deleteUtilisateur(@PathVariable("utiId") Integer utiId);
ResponseEntity<Void> deleteUtilisateur(@PathVariable("utiId") Integer utiId);

/**
/**
* Charge le détail d'un utilisateur.
* @param utiId Id de l'utilisateur
* @return Le détail de l'utilisateur
Expand All @@ -57,7 +57,7 @@ public interface UtilisateurClient {
@GetExchange(value = "/{utiId}")
ResponseEntity<UtilisateurRead> getUtilisateur(@PathVariable("utiId") Integer utiId);

/**
/**
* Recherche des utilisateurs.
* @param nom Nom de l'utilisateur
* @param prenom Nom de l'utilisateur
Expand All @@ -73,7 +73,7 @@ public interface UtilisateurClient {
@GetExchange(value = "/")
ResponseEntity<List<UtilisateurItem>> searchUtilisateur(@RequestParam(value = "nom", required = true) String nom, @RequestParam(value = "prenom", required = true) String prenom, @RequestParam(value = "email", required = true) String email, @RequestParam(value = "dateNaissance", required = false) LocalDate dateNaissance, @RequestParam(value = "adresse", required = false) String adresse, @RequestParam(value = "actif", required = true) Boolean actif, @RequestParam(value = "profilId", required = true) Integer profilId, @RequestParam(value = "typeUtilisateurCode", required = true) TypeUtilisateurCode typeUtilisateurCode);

/**
/**
* Sauvegarde un utilisateur.
* @param utiId Id de l'utilisateur
* @param utilisateur Utilisateur à sauvegarder
Expand Down
2 changes: 1 addition & 1 deletion samples/model/jpa.topmodel.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

version: 2.2.1
custom:
../../../TopModel.Generator.Jpa: 8f78520bb47d1d3ea1f64a5489e0fb77
../../../TopModel.Generator.Jpa: c1823ff1ce1599f37c6ea9200092846c
generatedFiles:
- ../generators/jpa/src/main/javagen/topmodel/jpa/sample/demo/api/client/securite/profil/ProfilClient.java
- ../generators/jpa/src/main/javagen/topmodel/jpa/sample/demo/api/client/securite/utilisateur/UtilisateurClient.java
Expand Down

0 comments on commit 8e0aff7

Please sign in to comment.