Class UserSpecification


  • public class UserSpecification
    extends java.lang.Object
    Specification for searching a User
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static org.springframework.data.jpa.domain.Specification<User> searchUser​(java.lang.String searchString)
      Search for a User by firstname, lastname, email, and username
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • UserSpecification

        public UserSpecification()
    • Method Detail

      • searchUser

        public static org.springframework.data.jpa.domain.Specification<User> searchUser​(java.lang.String searchString)
        Search for a User by firstname, lastname, email, and username
        Parameters:
        searchString - The name to search for
        Returns:
        a Specification to search for any User account with matching values.