fixed Homebox typo

This commit is contained in:
2026-05-16 00:16:28 +02:00
parent ef09a3c84d
commit 92aaf63c12
4 changed files with 11 additions and 7 deletions
@@ -94,7 +94,7 @@ The entire commit can be reviewed under following hash 43bbcece7a901e94021e10bca
- DELETE /connections/{serviceType} — removes the specific key from the session. If no connections remain, the session is invalidated entirely.
---
**connection/HomeBoxConnectionProvider.java (modified)**
**connection/HomeboxConnectionProvider.java (modified)**
Implements the new interface methods:
- checkCredentials validates that username and password are present before touching the network.
@@ -94,11 +94,11 @@ public interface ConnectionProvider {
- `findUniqueConnectionEntry` — looks up an existing record to decide insert vs. update
- `getTokenExpiry` — default returns `null` (no expiry); token-based providers override this so `ConnectionService` can compute the `connected` flag
***HomeBoxConnectionProvider.java***
***HomeboxConnectionProvider.java***
```java
@Component
public class HomeBoxConnectionProvider implements ConnectionProvider {
public class HomeboxConnectionProvider implements ConnectionProvider {
@Override
public String getServiceType() { return "HOMEBOX"; }