Skip to content

Commit 2baa59c

Browse files
committed
Update model import and add class header documentation #23
1 parent c68bc40 commit 2baa59c

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

src/main/java/net/onelitefeather/vulpes/api/repository/SoundRepository.java

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,18 @@
22

33
import io.micronaut.data.annotation.Repository;
44
import io.micronaut.data.repository.PageableRepository;
5-
import net.onelitefeather.vulpes.api.model.sound.SoundEntity;
5+
import net.onelitefeather.vulpes.api.model.sound.SoundEventEntity;
66

77
import java.util.UUID;
88

9+
/**
10+
* The {@link SoundRepository} interface defines a crud repository with the pageable functionality to manage
11+
* different {@link SoundEventEntity} entities in a database.
12+
*
13+
* @author theEvilReaper
14+
* @version 1.5.0
15+
* @since 0.1.0
16+
*/
917
@Repository
10-
public interface SoundRepository extends PageableRepository<SoundEntity, UUID> {
18+
public interface SoundRepository extends PageableRepository<SoundEventEntity, UUID> {
1119
}

0 commit comments

Comments
 (0)