Skip to content
Snippets Groups Projects
Commit 07ce05e3 authored by Stian Fjæran Mogen's avatar Stian Fjæran Mogen
Browse files

update javadoc

javadoc update
parent b5e2ad99
No related branches found
No related tags found
1 merge request!146Album search
Pipeline #80216 passed
This commit is part of merge request !146. Comments created here will be created in the context of that merge request.
......@@ -16,7 +16,7 @@ import java.util.List;
public class AlbumRepository extends AbstractRepository<Album, Long> {
/**
* Mapping to @NamedQuery 'find all albums by users username' defined in {@link Album}
* Mapping to @NamedQuery 'find all albums by username, tags, and title' defined in {@link Album}
*/
public static final String ALBUM_FIND_BY_USERNAME = "Album.findAllByUsername";
public static final String ALBUM_FIND_BY_TAGS = "Album.findByTags";
......
......@@ -22,7 +22,7 @@ import java.util.List;
public class ImageRepository extends AbstractRepository<Image, Long> {
/**
* Mapping to @NamedQuery 'find all albums by users username' defined in {@link Image}
* Mapping to @NamedQuery 'find all albums by username and tags' defined in {@link Image}
*/
public static final String IMAGE_FIND_BY_USERNAME = "Image.findAllByUsername";
public static final String IMAGE_FIND_BY_TAG = "Image.findByTags";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment