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,37 @@
package it.acxent.pg;
import it.acxent.db.ResParm;
import java.util.concurrent.Callable;
public class CreaFotoPgCallable implements Callable<ResParm> {
private Gara gara;
private String fileSorgente;
private String dirRidotte;
private boolean creaNuovamente;
private Foto foto;
public CreaFotoPgCallable(Gara gara, String fileSorgente, String dirRidotte, boolean creaNuovamente) {
this.gara = gara;
this.fileSorgente = fileSorgente;
this.dirRidotte = dirRidotte;
this.creaNuovamente = creaNuovamente;
}
public ResParm call() throws Exception {
ResParm rp = Foto.creaRiduzioniPerWeb(this.gara, this.fileSorgente, this.dirRidotte, this.creaNuovamente);
rp.setReturnObj(getFoto());
return rp;
}
public Foto getFoto() {
return this.foto;
}
public void setFoto(Foto foto) {
this.foto = foto;
}
}