We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c68bc40 commit 2baa59cCopy full SHA for 2baa59c
1 file changed
src/main/java/net/onelitefeather/vulpes/api/repository/SoundRepository.java
@@ -2,10 +2,18 @@
2
3
import io.micronaut.data.annotation.Repository;
4
import io.micronaut.data.repository.PageableRepository;
5
-import net.onelitefeather.vulpes.api.model.sound.SoundEntity;
+import net.onelitefeather.vulpes.api.model.sound.SoundEventEntity;
6
7
import java.util.UUID;
8
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
+ */
17
@Repository
-public interface SoundRepository extends PageableRepository<SoundEntity, UUID> {
18
+public interface SoundRepository extends PageableRepository<SoundEventEntity, UUID> {
19
}
0 commit comments