Skip to content

Commit

Permalink
[JPA] Regen
Browse files Browse the repository at this point in the history
  • Loading branch information
gideruette committed Jun 25, 2024
1 parent 78cd90a commit 796334b
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ public class ProfilRead implements Serializable {
* No arg constructor.
*/
public ProfilRead() {
// No arg constructor
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,6 @@ public class ProfilWrite implements Serializable {
*/
private List<DroitCode> droits;

/**
* No arg constructor.
*/
public ProfilWrite() {
}

/**
* Getter for libelle.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ public class UtilisateurRead implements Serializable {
* No arg constructor.
*/
public UtilisateurRead() {
// No arg constructor
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,6 @@ public class UtilisateurWrite implements Serializable {
@NotNull
private TypeUtilisateurCode typeUtilisateurCode = TypeUtilisateurCode.GEST;

/**
* No arg constructor.
*/
public UtilisateurWrite() {
}

/**
* Getter for nom.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ public class Droit {
* No arg constructor.
*/
public Droit() {
// No arg constructor
}

public static final Droit CREATE = new Droit(DroitCode.CREATE);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,6 @@ public class Profil {
@OneToMany(cascade = {CascadeType.PERSIST, CascadeType.MERGE}, fetch = FetchType.LAZY, mappedBy = "profil")
private Utilisateur utilisateurs;

/**
* No arg constructor.
*/
public Profil() {
}

/**
* Getter for id.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ public class TypeDroit {
* No arg constructor.
*/
public TypeDroit() {
// No arg constructor
}

public static final TypeDroit ADMIN = new TypeDroit(TypeDroitCode.ADMIN);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ public class TypeUtilisateur {
* No arg constructor.
*/
public TypeUtilisateur() {
// No arg constructor
}

public static final TypeUtilisateur ADMIN = new TypeUtilisateur(TypeUtilisateurCode.ADMIN);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,6 @@ public class Utilisateur {
@LastModifiedDate
private LocalDateTime dateModification = LocalDateTime.now();

/**
* No arg constructor.
*/
public Utilisateur() {
}

/**
* Getter for id.
*
Expand Down
2 changes: 1 addition & 1 deletion samples/generators/jpa/topmodel.config
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ jpa:
persistenceMode: jakarta
daosInterface: topmodel.jpa.sample.demo.daos.repository.CustomCrudRepository
daosAbstract: true
mappersInClass: true
mappersInClass: true

0 comments on commit 796334b

Please sign in to comment.