www in docker support
This commit is contained in:
parent
539a848e95
commit
c227fce036
2145 changed files with 399596 additions and 58 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue