www in docker support

This commit is contained in:
MaddoScientisto 2026-04-22 18:41:37 +02:00
commit c227fce036
2145 changed files with 399596 additions and 58 deletions

View file

@ -0,0 +1,29 @@
package it.acxent.face.callable;
import it.acxent.db.ResParm;
import it.acxent.face.Foto;
import it.acxent.face.PuntoFoto;
import java.io.File;
import java.util.concurrent.Callable;
public class IndexFotoCallable implements Callable<ResParm> {
private Foto foto;
private PuntoFoto puntoFoto;
private File theFoto;
private long id_users;
public IndexFotoCallable(Foto foto, PuntoFoto puntoFoto, File theFoto, long id_users) {
this.foto = foto;
this.puntoFoto = puntoFoto;
this.theFoto = theFoto;
this.id_users = id_users;
}
public ResParm call() throws Exception {
ResParm rp = this.foto.indexFoto(this.puntoFoto, this.theFoto, this.id_users);
return rp;
}
}