Salvatore La Manna
4 anni fa
30 ha cambiato i file con 1181 aggiunte e 1216 eliminazioni
File diff soppresso perché troppo grande
Load Diff
File binario non mostrato.
@ -0,0 +1 @@ |
|||||||
|
{"ide":{"scriptPaths":[]},"plugins":{"aui":{},"liferay":{},"yui":{}},"libs":["ecma5","browser"]} |
@ -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="classes"/> |
||||||
|
</classpath> |
@ -0,0 +1 @@ |
|||||||
|
/classes/ |
@ -0,0 +1,17 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<projectDescription> |
||||||
|
<name>portos-firma-shared</name> |
||||||
|
<comment></comment> |
||||||
|
<projects> |
||||||
|
</projects> |
||||||
|
<buildSpec> |
||||||
|
<buildCommand> |
||||||
|
<name>org.eclipse.jdt.core.javabuilder</name> |
||||||
|
<arguments> |
||||||
|
</arguments> |
||||||
|
</buildCommand> |
||||||
|
</buildSpec> |
||||||
|
<natures> |
||||||
|
<nature>org.eclipse.jdt.core.javanature</nature> |
||||||
|
</natures> |
||||||
|
</projectDescription> |
@ -0,0 +1,8 @@ |
|||||||
|
<?xml version="1.0"?> |
||||||
|
<!DOCTYPE project> |
||||||
|
|
||||||
|
<project name="portos-firma-shared" basedir="." default="deploy"> |
||||||
|
<property name="plugin.version" value="1" /> |
||||||
|
|
||||||
|
<import file="../build-common-shared.xml" /> |
||||||
|
</project> |
@ -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