This commit is contained in:
2026-08-12 17:23:54 -03:00
parent cb703655fa
commit 568248083b
25 changed files with 106 additions and 92 deletions
@@ -0,0 +1,44 @@
/*
*
*/
package io.kumare.iqr.mod.visma;
// java
import java.util.Collections;
import java.util.List;
// base
import io.kumare.lib.base.server.spring.store.jpa.EntityDescriptor;
// app
import io.kumare.iqr.app.module.AppModuleController;
/**
* No local entities/stores — the Visma endpoints are stateless passthroughs
* to the adapter, so this controller has nothing to describe.
*
* @author afatecha
*/
public class VismaController extends AppModuleController {
// ::: api
//
@Override
public boolean hasStore(String name) {
return false;
}
@Override
public EntityDescriptor getEntityDescriptor(Class entityClass) {
return null;
}
@Override
public EntityDescriptor getEntityDescriptor(String name) {
return null;
}
@Override
public List<EntityDescriptor> getEntityDescriptors() {
return Collections.emptyList();
}
}