Skip to content

Instantly share code, notes, and snippets.

@edwin
Created May 4, 2020 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edwin/0e8b88aab9aa403010d582ace9d7a833 to your computer and use it in GitHub Desktop.
Save edwin/0e8b88aab9aa403010d582ace9d7a833 to your computer and use it in GitHub Desktop.
package com.redhat.edwin.repository;
import com.redhat.edwin.model.UserProfile;
import org.springframework.data.jpa.repository.JpaRepository;
/**
* <pre>
* com.redhat.edwin.repository.UserProfileRepository
* </pre>
*
* @author Muhammad Edwin < edwin at redhat dot com >
* 04 Mei 2020 11:53
*/
public interface UserProfileRepository extends JpaRepository<UserProfile, Integer> {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment