Skip to content

Commit

Permalink
Move validation related classes into a new package
Browse files Browse the repository at this point in the history
  • Loading branch information
Pozo committed Jul 15, 2024
1 parent f485ac9 commit b3bb437
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.github.pozo.investmentfunds.api.rates

import com.github.pozo.investmentfunds.api.ValidDate
import com.github.pozo.investmentfunds.api.validation.ValidDate
import com.github.pozo.investmentfunds.api.grabber.GrabberService
import com.github.pozo.investmentfunds.domain.ISIN.ISIN_REGEX_PATTERN
import jakarta.validation.constraints.Pattern
import org.slf4j.LoggerFactory
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.github.pozo.investmentfunds.api.sheets

import com.github.pozo.investmentfunds.api.ValidDate
import com.github.pozo.investmentfunds.api.validation.ValidDate
import com.github.pozo.investmentfunds.domain.ISIN.ISIN_REGEX_PATTERN
import jakarta.validation.Valid
import jakarta.validation.constraints.NotBlank
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.pozo.investmentfunds.api
package com.github.pozo.investmentfunds.api.validation

import jakarta.validation.ConstraintValidator
import jakarta.validation.ConstraintValidatorContext
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.pozo.investmentfunds.api
package com.github.pozo.investmentfunds.api.validation

import jakarta.validation.Constraint
import jakarta.validation.Payload
Expand Down

0 comments on commit b3bb437

Please sign in to comment.