Resolving validation service implementation not available after cleanup of old code
This commit is contained in:
parent
b7d1424e0c
commit
9dd0405dc8
|
@ -0,0 +1,19 @@
|
||||||
|
package eu.eudat.model.persist.validation;
|
||||||
|
|
||||||
|
import gr.cite.tools.validation.BaseValidationService;
|
||||||
|
import jakarta.validation.Validator;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
|
@Component
|
||||||
|
public class MyValidationService extends BaseValidationService {
|
||||||
|
|
||||||
|
public MyValidationService(Validator validator) {
|
||||||
|
super(validator);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public <T> void validateForce(T item, Class<?>... groups) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue