Salvatore La Manna
4 anni fa
17 ha cambiato i file con 167 aggiunte e 1 eliminazioni
File binario non mostrato.
File binario non mostrato.
File binario non mostrato.
File binario non mostrato.
File binario non mostrato.
File binario non mostrato.
File binario non mostrato.
File binario non mostrato.
@ -1 +1 @@
|
||||
5ce14a43480763a02a7a0f47d7f82801 |
||||
a15636541520cd34beccb182ca342eb1 |
||||
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<classpath> |
||||
<classpathentry kind="src" path="src"/> |
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.7.0_80"/> |
||||
<classpathentry kind="output" path="bin"/> |
||||
</classpath> |
@ -1 +1,2 @@
|
||||
/classes/ |
||||
/bin/ |
||||
|
@ -0,0 +1,92 @@
|
||||
package it.tref.firma.shared; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.Date; |
||||
|
||||
public class RestFile implements Serializable { |
||||
private static final long serialVersionUID = 560778228734037313L; |
||||
|
||||
private Integer idFile; |
||||
private String nomeFile; |
||||
private Date dataInvio; |
||||
private String documentiType; |
||||
private String tipoPratica; |
||||
private String file; |
||||
|
||||
public RestFile() { |
||||
this.idFile = Integer.valueOf(-1); |
||||
this.dataInvio = new Date(); |
||||
this.nomeFile = ""; |
||||
this.documentiType = ""; |
||||
this.tipoPratica = ""; |
||||
setFile(""); |
||||
} |
||||
|
||||
public String toString() { |
||||
StringBuilder sb = new StringBuilder(); |
||||
if (this.idFile != null) { |
||||
sb.append("Id = "); |
||||
sb.append(this.idFile); |
||||
sb.append(" "); |
||||
} |
||||
if (this.documentiType != null) { |
||||
sb.append("Documenti type = "); |
||||
sb.append(this.documentiType); |
||||
sb.append(" "); |
||||
} |
||||
if (this.tipoPratica != null) { |
||||
sb.append("Tipo pratica= "); |
||||
sb.append(this.tipoPratica); |
||||
sb.append(" "); |
||||
} |
||||
return sb.toString(); |
||||
} |
||||
|
||||
public String getNomeFile() { |
||||
return nomeFile; |
||||
} |
||||
|
||||
public void setNomeFile(String nomeFile) { |
||||
this.nomeFile = nomeFile; |
||||
} |
||||
|
||||
public Date getDataInvio() { |
||||
return dataInvio; |
||||
} |
||||
|
||||
public void setDataInvio(Date dataInvio) { |
||||
this.dataInvio = dataInvio; |
||||
} |
||||
|
||||
public String getDocumentiType() { |
||||
return documentiType; |
||||
} |
||||
|
||||
public void setDocumentiType(String documentiType) { |
||||
this.documentiType = documentiType; |
||||
} |
||||
|
||||
public String getTipoPratica() { |
||||
return tipoPratica; |
||||
} |
||||
|
||||
public void setTipoPratica(String tipoPratica) { |
||||
this.tipoPratica = tipoPratica; |
||||
} |
||||
|
||||
public Integer getIdFile() { |
||||
return idFile; |
||||
} |
||||
|
||||
public void setIdFile(Integer idFile) { |
||||
this.idFile = idFile; |
||||
} |
||||
|
||||
public String getFile() { |
||||
return file; |
||||
} |
||||
|
||||
public void setFile(String file) { |
||||
this.file = file; |
||||
} |
||||
} |
@ -0,0 +1,23 @@
|
||||
package it.tref.firma.shared; |
||||
|
||||
public class Risposta<T> { |
||||
private int risposta = -100; |
||||
|
||||
private T obj = null; |
||||
|
||||
public int getRisposta() { |
||||
return risposta; |
||||
} |
||||
|
||||
public void setRisposta(int risposta) { |
||||
this.risposta = risposta; |
||||
} |
||||
|
||||
public T getObj() { |
||||
return obj; |
||||
} |
||||
|
||||
public void setObj(T obj) { |
||||
this.obj = obj; |
||||
} |
||||
} |
@ -0,0 +1,13 @@
|
||||
package it.tref.firma.shared; |
||||
|
||||
public interface RispostaCostanti { |
||||
public static final int NO_SET = -100; |
||||
|
||||
public static final int OK = 0; |
||||
public static final int NO_CONFIGURATION = 1; |
||||
public static final int NO_UTENTE = 2; |
||||
public static final int NO_LOGIN = 3; |
||||
public static final int NO_FILE = 4; |
||||
public static final int NO_PRATICA = 5; |
||||
public static final int ERRORE_APPLICAZIONE = 6; |
||||
} |
@ -0,0 +1,26 @@
|
||||
package it.tref.firma.shared; |
||||
|
||||
import java.util.ArrayList; |
||||
import java.util.List; |
||||
|
||||
public class Stile { |
||||
private String logo = null; |
||||
|
||||
private List<String> listNumrodlfProperty = new ArrayList<>(); |
||||
|
||||
public String getLogo() { |
||||
return logo; |
||||
} |
||||
|
||||
public void setLogo(String logo) { |
||||
this.logo = logo; |
||||
} |
||||
|
||||
public List<String> getListNumrodlfProperty() { |
||||
return listNumrodlfProperty; |
||||
} |
||||
|
||||
public void setListNumrodlfProperty(List<String> listNumrodlfProperty) { |
||||
this.listNumrodlfProperty = listNumrodlfProperty; |
||||
} |
||||
} |
Caricamento…
Reference in new issue