Package dev.dokimos.server.repository
Interface LlmConnectionRepositoryFragment
- All Superinterfaces:
ScopedRepository<LlmConnection>
- All Known Subinterfaces:
LlmConnectionRepository
- All Known Implementing Classes:
LlmConnectionRepositoryFragmentImpl
Entity-specific scoped finders for
LlmConnection.-
Method Summary
Modifier and TypeMethodDescriptionbooleanexistsByName(String name, TenantScope scope) Returns whether a connection with the name exists within the scope.findAllOrdered(TenantScope scope) Lists connections visible under the scope, newest first.findByName(String name, TenantScope scope) Finds a connection by name within the scope.
-
Method Details
-
findByName
Finds a connection by name within the scope. -
findAllOrdered
Lists connections visible under the scope, newest first. -
existsByName
Returns whether a connection with the name exists within the scope. Names are unique per tenant, so the create and rename guards check within the caller's scope and are not a cross-tenant oracle.
-