Advertisement
Guest User

Untitled

a guest
Dec 15th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1. public interface ValidatorService {
  2.  
  3.   boolean isValid (Class<? extends BaseServiceModel> model);
  4.  
  5. }
  6.  
  7.  
  8. @Service
  9. public class UserServiceModelValidatorImpl implements ValidatorService {
  10.  
  11.   @Override
  12.   public boolean isValid(UserServiceModel model) {
  13.     return false;
  14.   }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement