Skip to content

Commit

Permalink
fix: sonar
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomgrus committed Jan 24, 2022
1 parent 8c7b462 commit d682441
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
package com.decathlon.ara.coreapi.domain;

import lombok.Data;
import lombok.EqualsAndHashCode;

import javax.persistence.*;

@Data
@EqualsAndHashCode(callSuper=true)
@Entity
public class AraFeature extends Auditable<String> {
@Id
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.decathlon.ara.coreapi.domain;

import lombok.Data;
import lombok.EqualsAndHashCode;

import javax.persistence.EmbeddedId;
import javax.persistence.Entity;
Expand All @@ -10,6 +11,7 @@
import java.util.Set;

@Data
@EqualsAndHashCode(callSuper=true)
@Entity
public class AraRun extends Auditable<String> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@
import javax.persistence.SequenceGenerator;

import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper=true)
@Entity
public class AraScenarioVersion extends Auditable<String> {

Expand Down

0 comments on commit d682441

Please sign in to comment.