diff --git a/docs/20230812 Access logging strategy.md "b/docs/20230812 Access log \353\241\234\352\271\205 \354\240\204\353\236\265.md" similarity index 100% rename from docs/20230812 Access logging strategy.md rename to "docs/20230812 Access log \353\241\234\352\271\205 \354\240\204\353\236\265.md" diff --git a/docs/20230812 Login Token strategy.md "b/docs/20230812 Login token \354\240\204\353\236\265.md" similarity index 100% rename from docs/20230812 Login Token strategy.md rename to "docs/20230812 Login token \354\240\204\353\236\265.md" diff --git a/docs/20230813 thread pool parameter.md b/docs/20230813 Thread pool parameter.md similarity index 100% rename from docs/20230813 thread pool parameter.md rename to docs/20230813 Thread pool parameter.md diff --git "a/docs/20230813 \354\232\251\354\226\264 \354\240\225\353\246\254.md" "b/docs/20230813 \354\232\251\354\226\264 \354\240\225\353\246\254.md" new file mode 100644 index 0000000..e69de29 diff --git a/src/main/java/se/ton/t210/domain/JudgingClass.java b/src/main/java/se/ton/t210/domain/EvaluationScoreSection.java similarity index 67% rename from src/main/java/se/ton/t210/domain/JudgingClass.java rename to src/main/java/se/ton/t210/domain/EvaluationScoreSection.java index 8f016ec..a5578ec 100644 --- a/src/main/java/se/ton/t210/domain/JudgingClass.java +++ b/src/main/java/se/ton/t210/domain/EvaluationScoreSection.java @@ -1,8 +1,6 @@ package se.ton.t210.domain; import javax.persistence.Entity; -import javax.persistence.EnumType; -import javax.persistence.Enumerated; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; @@ -10,7 +8,7 @@ @Getter @Entity -public class JudgingClass { +public class EvaluationScoreSection { @GeneratedValue(strategy = GenerationType.IDENTITY) @Id @@ -22,17 +20,17 @@ public class JudgingClass { private int takenScore; - public JudgingClass() { + public EvaluationScoreSection() { } - public JudgingClass(Long id, Long judgingItemId, int targetScore, int takenScore) { + public EvaluationScoreSection(Long id, Long judgingItemId, int targetScore, int takenScore) { this.id = id; this.judgingItemId = judgingItemId; this.targetScore = targetScore; this.takenScore = takenScore; } - public JudgingClass(Long judgingItemId, int targetScore, int takenScore) { + public EvaluationScoreSection(Long judgingItemId, int targetScore, int takenScore) { this(null, judgingItemId, targetScore, takenScore); } }