AbstractDeserializer.java

  1. /*
  2.  * GovWay - A customizable API Gateway
  3.  * https://govway.org
  4.  *
  5.  * Copyright (c) 2005-2025 Link.it srl (https://link.it).
  6.  *
  7.  * This program is free software: you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License version 3, as published by
  9.  * the Free Software Foundation.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  18.  *
  19.  */
  20. package it.gov.spcoop.sica.manifest.utils.serializer;

  21. import org.openspcoop2.generic_project.exception.DeserializerException;

  22. import it.gov.spcoop.sica.manifest.DocumentoSicurezza;
  23. import it.gov.spcoop.sica.manifest.ElencoServiziComponenti;
  24. import it.gov.spcoop.sica.manifest.DocumentoSemiformale;
  25. import it.gov.spcoop.sica.manifest.SpecificaSemiformale;
  26. import it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica;
  27. import it.gov.spcoop.sica.manifest.SpecificaPortiAccesso;
  28. import it.gov.spcoop.sica.manifest.SpecificaSicurezza;
  29. import it.gov.spcoop.sica.manifest.SpecificaLivelliServizio;
  30. import it.gov.spcoop.sica.manifest.SpecificaInterfaccia;
  31. import it.gov.spcoop.sica.manifest.AccordoServizioParteComune;
  32. import it.gov.spcoop.sica.manifest.SpecificaConversazione;
  33. import it.gov.spcoop.sica.manifest.DocumentoConversazione;
  34. import it.gov.spcoop.sica.manifest.DocumentoInterfaccia;
  35. import it.gov.spcoop.sica.manifest.ElencoPartecipanti;
  36. import it.gov.spcoop.sica.manifest.ServizioComposto;
  37. import it.gov.spcoop.sica.manifest.ElencoAllegati;
  38. import it.gov.spcoop.sica.manifest.SpecificaCoordinamento;
  39. import it.gov.spcoop.sica.manifest.DocumentoLivelloServizio;
  40. import it.gov.spcoop.sica.manifest.AccordoCooperazione;
  41. import it.gov.spcoop.sica.manifest.ElencoServiziComposti;
  42. import it.gov.spcoop.sica.manifest.DocumentoCoordinamento;
  43. import it.gov.spcoop.sica.manifest.AccordoServizio;

  44. import java.io.InputStream;
  45. import java.io.File;

  46. /**    
  47.  * XML Deserializer of beans
  48.  *
  49.  * @author Poli Andrea (poli@link.it)
  50.  * @author $Author$
  51.  * @version $Rev$, $Date$
  52.  */

  53. public abstract class AbstractDeserializer extends org.openspcoop2.generic_project.serializer.AbstractDeserializerBase {



  54.     /*
  55.      =================================================================================
  56.      Object: DocumentoSicurezza
  57.      =================================================================================
  58.     */
  59.    
  60.     /**
  61.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  62.      *
  63.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  64.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  65.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  66.      */
  67.     public DocumentoSicurezza readDocumentoSicurezza(String fileName) throws DeserializerException {
  68.         return (DocumentoSicurezza) this.xmlToObj(fileName, DocumentoSicurezza.class);
  69.     }
  70.    
  71.     /**
  72.      * Transform the xml in <var>file</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  73.      *
  74.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  75.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  76.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  77.      */
  78.     public DocumentoSicurezza readDocumentoSicurezza(File file) throws DeserializerException {
  79.         return (DocumentoSicurezza) this.xmlToObj(file, DocumentoSicurezza.class);
  80.     }
  81.    
  82.     /**
  83.      * Transform the input stream <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  84.      *
  85.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  86.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  87.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  88.      */
  89.     public DocumentoSicurezza readDocumentoSicurezza(InputStream in) throws DeserializerException {
  90.         return (DocumentoSicurezza) this.xmlToObj(in, DocumentoSicurezza.class);
  91.     }  
  92.    
  93.     /**
  94.      * Transform the byte array <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  95.      *
  96.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  97.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  98.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  99.      */
  100.     public DocumentoSicurezza readDocumentoSicurezza(byte[] in) throws DeserializerException {
  101.         return (DocumentoSicurezza) this.xmlToObj(in, DocumentoSicurezza.class);
  102.     }  
  103.    
  104.     /**
  105.      * Transform the String <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  106.      *
  107.      * @param in String to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  108.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  109.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  110.      */
  111.     public DocumentoSicurezza readDocumentoSicurezzaFromString(String in) throws DeserializerException {
  112.         return (DocumentoSicurezza) this.xmlToObj(in.getBytes(), DocumentoSicurezza.class);
  113.     }  
  114.    
  115.    
  116.    
  117.     /*
  118.      =================================================================================
  119.      Object: ElencoServiziComponenti
  120.      =================================================================================
  121.     */
  122.    
  123.     /**
  124.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  125.      *
  126.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  127.      * @return Object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  128.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  129.      */
  130.     public ElencoServiziComponenti readElencoServiziComponenti(String fileName) throws DeserializerException {
  131.         return (ElencoServiziComponenti) this.xmlToObj(fileName, ElencoServiziComponenti.class);
  132.     }
  133.    
  134.     /**
  135.      * Transform the xml in <var>file</var> in the object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  136.      *
  137.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  138.      * @return Object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  139.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  140.      */
  141.     public ElencoServiziComponenti readElencoServiziComponenti(File file) throws DeserializerException {
  142.         return (ElencoServiziComponenti) this.xmlToObj(file, ElencoServiziComponenti.class);
  143.     }
  144.    
  145.     /**
  146.      * Transform the input stream <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  147.      *
  148.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  149.      * @return Object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  150.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  151.      */
  152.     public ElencoServiziComponenti readElencoServiziComponenti(InputStream in) throws DeserializerException {
  153.         return (ElencoServiziComponenti) this.xmlToObj(in, ElencoServiziComponenti.class);
  154.     }  
  155.    
  156.     /**
  157.      * Transform the byte array <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  158.      *
  159.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  160.      * @return Object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  161.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  162.      */
  163.     public ElencoServiziComponenti readElencoServiziComponenti(byte[] in) throws DeserializerException {
  164.         return (ElencoServiziComponenti) this.xmlToObj(in, ElencoServiziComponenti.class);
  165.     }  
  166.    
  167.     /**
  168.      * Transform the String <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  169.      *
  170.      * @param in String to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  171.      * @return Object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  172.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  173.      */
  174.     public ElencoServiziComponenti readElencoServiziComponentiFromString(String in) throws DeserializerException {
  175.         return (ElencoServiziComponenti) this.xmlToObj(in.getBytes(), ElencoServiziComponenti.class);
  176.     }  
  177.    
  178.    
  179.    
  180.     /*
  181.      =================================================================================
  182.      Object: DocumentoSemiformale
  183.      =================================================================================
  184.     */
  185.    
  186.     /**
  187.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  188.      *
  189.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  190.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  191.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  192.      */
  193.     public DocumentoSemiformale readDocumentoSemiformale(String fileName) throws DeserializerException {
  194.         return (DocumentoSemiformale) this.xmlToObj(fileName, DocumentoSemiformale.class);
  195.     }
  196.    
  197.     /**
  198.      * Transform the xml in <var>file</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  199.      *
  200.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  201.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  202.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  203.      */
  204.     public DocumentoSemiformale readDocumentoSemiformale(File file) throws DeserializerException {
  205.         return (DocumentoSemiformale) this.xmlToObj(file, DocumentoSemiformale.class);
  206.     }
  207.    
  208.     /**
  209.      * Transform the input stream <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  210.      *
  211.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  212.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  213.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  214.      */
  215.     public DocumentoSemiformale readDocumentoSemiformale(InputStream in) throws DeserializerException {
  216.         return (DocumentoSemiformale) this.xmlToObj(in, DocumentoSemiformale.class);
  217.     }  
  218.    
  219.     /**
  220.      * Transform the byte array <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  221.      *
  222.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  223.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  224.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  225.      */
  226.     public DocumentoSemiformale readDocumentoSemiformale(byte[] in) throws DeserializerException {
  227.         return (DocumentoSemiformale) this.xmlToObj(in, DocumentoSemiformale.class);
  228.     }  
  229.    
  230.     /**
  231.      * Transform the String <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  232.      *
  233.      * @param in String to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  234.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  235.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  236.      */
  237.     public DocumentoSemiformale readDocumentoSemiformaleFromString(String in) throws DeserializerException {
  238.         return (DocumentoSemiformale) this.xmlToObj(in.getBytes(), DocumentoSemiformale.class);
  239.     }  
  240.    
  241.    
  242.    
  243.     /*
  244.      =================================================================================
  245.      Object: SpecificaSemiformale
  246.      =================================================================================
  247.     */
  248.    
  249.     /**
  250.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  251.      *
  252.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  253.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  254.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  255.      */
  256.     public SpecificaSemiformale readSpecificaSemiformale(String fileName) throws DeserializerException {
  257.         return (SpecificaSemiformale) this.xmlToObj(fileName, SpecificaSemiformale.class);
  258.     }
  259.    
  260.     /**
  261.      * Transform the xml in <var>file</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  262.      *
  263.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  264.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  265.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  266.      */
  267.     public SpecificaSemiformale readSpecificaSemiformale(File file) throws DeserializerException {
  268.         return (SpecificaSemiformale) this.xmlToObj(file, SpecificaSemiformale.class);
  269.     }
  270.    
  271.     /**
  272.      * Transform the input stream <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  273.      *
  274.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  275.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  276.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  277.      */
  278.     public SpecificaSemiformale readSpecificaSemiformale(InputStream in) throws DeserializerException {
  279.         return (SpecificaSemiformale) this.xmlToObj(in, SpecificaSemiformale.class);
  280.     }  
  281.    
  282.     /**
  283.      * Transform the byte array <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  284.      *
  285.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  286.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  287.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  288.      */
  289.     public SpecificaSemiformale readSpecificaSemiformale(byte[] in) throws DeserializerException {
  290.         return (SpecificaSemiformale) this.xmlToObj(in, SpecificaSemiformale.class);
  291.     }  
  292.    
  293.     /**
  294.      * Transform the String <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  295.      *
  296.      * @param in String to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  297.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  298.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  299.      */
  300.     public SpecificaSemiformale readSpecificaSemiformaleFromString(String in) throws DeserializerException {
  301.         return (SpecificaSemiformale) this.xmlToObj(in.getBytes(), SpecificaSemiformale.class);
  302.     }  
  303.    
  304.    
  305.    
  306.     /*
  307.      =================================================================================
  308.      Object: accordoServizioParteSpecifica
  309.      =================================================================================
  310.     */
  311.    
  312.     /**
  313.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  314.      *
  315.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  316.      * @return Object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  317.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  318.      */
  319.     public AccordoServizioParteSpecifica readAccordoServizioParteSpecifica(String fileName) throws DeserializerException {
  320.         return (AccordoServizioParteSpecifica) this.xmlToObj(fileName, AccordoServizioParteSpecifica.class);
  321.     }
  322.    
  323.     /**
  324.      * Transform the xml in <var>file</var> in the object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  325.      *
  326.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  327.      * @return Object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  328.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  329.      */
  330.     public AccordoServizioParteSpecifica readAccordoServizioParteSpecifica(File file) throws DeserializerException {
  331.         return (AccordoServizioParteSpecifica) this.xmlToObj(file, AccordoServizioParteSpecifica.class);
  332.     }
  333.    
  334.     /**
  335.      * Transform the input stream <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  336.      *
  337.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  338.      * @return Object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  339.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  340.      */
  341.     public AccordoServizioParteSpecifica readAccordoServizioParteSpecifica(InputStream in) throws DeserializerException {
  342.         return (AccordoServizioParteSpecifica) this.xmlToObj(in, AccordoServizioParteSpecifica.class);
  343.     }  
  344.    
  345.     /**
  346.      * Transform the byte array <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  347.      *
  348.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  349.      * @return Object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  350.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  351.      */
  352.     public AccordoServizioParteSpecifica readAccordoServizioParteSpecifica(byte[] in) throws DeserializerException {
  353.         return (AccordoServizioParteSpecifica) this.xmlToObj(in, AccordoServizioParteSpecifica.class);
  354.     }  
  355.    
  356.     /**
  357.      * Transform the String <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  358.      *
  359.      * @param in String to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  360.      * @return Object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  361.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  362.      */
  363.     public AccordoServizioParteSpecifica readAccordoServizioParteSpecificaFromString(String in) throws DeserializerException {
  364.         return (AccordoServizioParteSpecifica) this.xmlToObj(in.getBytes(), AccordoServizioParteSpecifica.class);
  365.     }  
  366.    
  367.    
  368.    
  369.     /*
  370.      =================================================================================
  371.      Object: SpecificaPortiAccesso
  372.      =================================================================================
  373.     */
  374.    
  375.     /**
  376.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  377.      *
  378.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  379.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  380.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  381.      */
  382.     public SpecificaPortiAccesso readSpecificaPortiAccesso(String fileName) throws DeserializerException {
  383.         return (SpecificaPortiAccesso) this.xmlToObj(fileName, SpecificaPortiAccesso.class);
  384.     }
  385.    
  386.     /**
  387.      * Transform the xml in <var>file</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  388.      *
  389.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  390.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  391.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  392.      */
  393.     public SpecificaPortiAccesso readSpecificaPortiAccesso(File file) throws DeserializerException {
  394.         return (SpecificaPortiAccesso) this.xmlToObj(file, SpecificaPortiAccesso.class);
  395.     }
  396.    
  397.     /**
  398.      * Transform the input stream <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  399.      *
  400.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  401.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  402.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  403.      */
  404.     public SpecificaPortiAccesso readSpecificaPortiAccesso(InputStream in) throws DeserializerException {
  405.         return (SpecificaPortiAccesso) this.xmlToObj(in, SpecificaPortiAccesso.class);
  406.     }  
  407.    
  408.     /**
  409.      * Transform the byte array <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  410.      *
  411.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  412.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  413.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  414.      */
  415.     public SpecificaPortiAccesso readSpecificaPortiAccesso(byte[] in) throws DeserializerException {
  416.         return (SpecificaPortiAccesso) this.xmlToObj(in, SpecificaPortiAccesso.class);
  417.     }  
  418.    
  419.     /**
  420.      * Transform the String <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  421.      *
  422.      * @param in String to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  423.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  424.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  425.      */
  426.     public SpecificaPortiAccesso readSpecificaPortiAccessoFromString(String in) throws DeserializerException {
  427.         return (SpecificaPortiAccesso) this.xmlToObj(in.getBytes(), SpecificaPortiAccesso.class);
  428.     }  
  429.    
  430.    
  431.    
  432.     /*
  433.      =================================================================================
  434.      Object: SpecificaSicurezza
  435.      =================================================================================
  436.     */
  437.    
  438.     /**
  439.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  440.      *
  441.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  442.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  443.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  444.      */
  445.     public SpecificaSicurezza readSpecificaSicurezza(String fileName) throws DeserializerException {
  446.         return (SpecificaSicurezza) this.xmlToObj(fileName, SpecificaSicurezza.class);
  447.     }
  448.    
  449.     /**
  450.      * Transform the xml in <var>file</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  451.      *
  452.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  453.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  454.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  455.      */
  456.     public SpecificaSicurezza readSpecificaSicurezza(File file) throws DeserializerException {
  457.         return (SpecificaSicurezza) this.xmlToObj(file, SpecificaSicurezza.class);
  458.     }
  459.    
  460.     /**
  461.      * Transform the input stream <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  462.      *
  463.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  464.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  465.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  466.      */
  467.     public SpecificaSicurezza readSpecificaSicurezza(InputStream in) throws DeserializerException {
  468.         return (SpecificaSicurezza) this.xmlToObj(in, SpecificaSicurezza.class);
  469.     }  
  470.    
  471.     /**
  472.      * Transform the byte array <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  473.      *
  474.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  475.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  476.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  477.      */
  478.     public SpecificaSicurezza readSpecificaSicurezza(byte[] in) throws DeserializerException {
  479.         return (SpecificaSicurezza) this.xmlToObj(in, SpecificaSicurezza.class);
  480.     }  
  481.    
  482.     /**
  483.      * Transform the String <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  484.      *
  485.      * @param in String to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  486.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  487.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  488.      */
  489.     public SpecificaSicurezza readSpecificaSicurezzaFromString(String in) throws DeserializerException {
  490.         return (SpecificaSicurezza) this.xmlToObj(in.getBytes(), SpecificaSicurezza.class);
  491.     }  
  492.    
  493.    
  494.    
  495.     /*
  496.      =================================================================================
  497.      Object: SpecificaLivelliServizio
  498.      =================================================================================
  499.     */
  500.    
  501.     /**
  502.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  503.      *
  504.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  505.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  506.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  507.      */
  508.     public SpecificaLivelliServizio readSpecificaLivelliServizio(String fileName) throws DeserializerException {
  509.         return (SpecificaLivelliServizio) this.xmlToObj(fileName, SpecificaLivelliServizio.class);
  510.     }
  511.    
  512.     /**
  513.      * Transform the xml in <var>file</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  514.      *
  515.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  516.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  517.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  518.      */
  519.     public SpecificaLivelliServizio readSpecificaLivelliServizio(File file) throws DeserializerException {
  520.         return (SpecificaLivelliServizio) this.xmlToObj(file, SpecificaLivelliServizio.class);
  521.     }
  522.    
  523.     /**
  524.      * Transform the input stream <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  525.      *
  526.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  527.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  528.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  529.      */
  530.     public SpecificaLivelliServizio readSpecificaLivelliServizio(InputStream in) throws DeserializerException {
  531.         return (SpecificaLivelliServizio) this.xmlToObj(in, SpecificaLivelliServizio.class);
  532.     }  
  533.    
  534.     /**
  535.      * Transform the byte array <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  536.      *
  537.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  538.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  539.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  540.      */
  541.     public SpecificaLivelliServizio readSpecificaLivelliServizio(byte[] in) throws DeserializerException {
  542.         return (SpecificaLivelliServizio) this.xmlToObj(in, SpecificaLivelliServizio.class);
  543.     }  
  544.    
  545.     /**
  546.      * Transform the String <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  547.      *
  548.      * @param in String to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  549.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  550.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  551.      */
  552.     public SpecificaLivelliServizio readSpecificaLivelliServizioFromString(String in) throws DeserializerException {
  553.         return (SpecificaLivelliServizio) this.xmlToObj(in.getBytes(), SpecificaLivelliServizio.class);
  554.     }  
  555.    
  556.    
  557.    
  558.     /*
  559.      =================================================================================
  560.      Object: SpecificaInterfaccia
  561.      =================================================================================
  562.     */
  563.    
  564.     /**
  565.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  566.      *
  567.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  568.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  569.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  570.      */
  571.     public SpecificaInterfaccia readSpecificaInterfaccia(String fileName) throws DeserializerException {
  572.         return (SpecificaInterfaccia) this.xmlToObj(fileName, SpecificaInterfaccia.class);
  573.     }
  574.    
  575.     /**
  576.      * Transform the xml in <var>file</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  577.      *
  578.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  579.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  580.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  581.      */
  582.     public SpecificaInterfaccia readSpecificaInterfaccia(File file) throws DeserializerException {
  583.         return (SpecificaInterfaccia) this.xmlToObj(file, SpecificaInterfaccia.class);
  584.     }
  585.    
  586.     /**
  587.      * Transform the input stream <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  588.      *
  589.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  590.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  591.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  592.      */
  593.     public SpecificaInterfaccia readSpecificaInterfaccia(InputStream in) throws DeserializerException {
  594.         return (SpecificaInterfaccia) this.xmlToObj(in, SpecificaInterfaccia.class);
  595.     }  
  596.    
  597.     /**
  598.      * Transform the byte array <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  599.      *
  600.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  601.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  602.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  603.      */
  604.     public SpecificaInterfaccia readSpecificaInterfaccia(byte[] in) throws DeserializerException {
  605.         return (SpecificaInterfaccia) this.xmlToObj(in, SpecificaInterfaccia.class);
  606.     }  
  607.    
  608.     /**
  609.      * Transform the String <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  610.      *
  611.      * @param in String to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  612.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  613.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  614.      */
  615.     public SpecificaInterfaccia readSpecificaInterfacciaFromString(String in) throws DeserializerException {
  616.         return (SpecificaInterfaccia) this.xmlToObj(in.getBytes(), SpecificaInterfaccia.class);
  617.     }  
  618.    
  619.    
  620.    
  621.     /*
  622.      =================================================================================
  623.      Object: accordoServizioParteComune
  624.      =================================================================================
  625.     */
  626.    
  627.     /**
  628.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  629.      *
  630.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  631.      * @return Object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  632.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  633.      */
  634.     public AccordoServizioParteComune readAccordoServizioParteComune(String fileName) throws DeserializerException {
  635.         return (AccordoServizioParteComune) this.xmlToObj(fileName, AccordoServizioParteComune.class);
  636.     }
  637.    
  638.     /**
  639.      * Transform the xml in <var>file</var> in the object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  640.      *
  641.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  642.      * @return Object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  643.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  644.      */
  645.     public AccordoServizioParteComune readAccordoServizioParteComune(File file) throws DeserializerException {
  646.         return (AccordoServizioParteComune) this.xmlToObj(file, AccordoServizioParteComune.class);
  647.     }
  648.    
  649.     /**
  650.      * Transform the input stream <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  651.      *
  652.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  653.      * @return Object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  654.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  655.      */
  656.     public AccordoServizioParteComune readAccordoServizioParteComune(InputStream in) throws DeserializerException {
  657.         return (AccordoServizioParteComune) this.xmlToObj(in, AccordoServizioParteComune.class);
  658.     }  
  659.    
  660.     /**
  661.      * Transform the byte array <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  662.      *
  663.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  664.      * @return Object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  665.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  666.      */
  667.     public AccordoServizioParteComune readAccordoServizioParteComune(byte[] in) throws DeserializerException {
  668.         return (AccordoServizioParteComune) this.xmlToObj(in, AccordoServizioParteComune.class);
  669.     }  
  670.    
  671.     /**
  672.      * Transform the String <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  673.      *
  674.      * @param in String to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  675.      * @return Object type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  676.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  677.      */
  678.     public AccordoServizioParteComune readAccordoServizioParteComuneFromString(String in) throws DeserializerException {
  679.         return (AccordoServizioParteComune) this.xmlToObj(in.getBytes(), AccordoServizioParteComune.class);
  680.     }  
  681.    
  682.    
  683.    
  684.     /*
  685.      =================================================================================
  686.      Object: SpecificaConversazione
  687.      =================================================================================
  688.     */
  689.    
  690.     /**
  691.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  692.      *
  693.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  694.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  695.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  696.      */
  697.     public SpecificaConversazione readSpecificaConversazione(String fileName) throws DeserializerException {
  698.         return (SpecificaConversazione) this.xmlToObj(fileName, SpecificaConversazione.class);
  699.     }
  700.    
  701.     /**
  702.      * Transform the xml in <var>file</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  703.      *
  704.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  705.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  706.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  707.      */
  708.     public SpecificaConversazione readSpecificaConversazione(File file) throws DeserializerException {
  709.         return (SpecificaConversazione) this.xmlToObj(file, SpecificaConversazione.class);
  710.     }
  711.    
  712.     /**
  713.      * Transform the input stream <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  714.      *
  715.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  716.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  717.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  718.      */
  719.     public SpecificaConversazione readSpecificaConversazione(InputStream in) throws DeserializerException {
  720.         return (SpecificaConversazione) this.xmlToObj(in, SpecificaConversazione.class);
  721.     }  
  722.    
  723.     /**
  724.      * Transform the byte array <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  725.      *
  726.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  727.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  728.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  729.      */
  730.     public SpecificaConversazione readSpecificaConversazione(byte[] in) throws DeserializerException {
  731.         return (SpecificaConversazione) this.xmlToObj(in, SpecificaConversazione.class);
  732.     }  
  733.    
  734.     /**
  735.      * Transform the String <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  736.      *
  737.      * @param in String to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  738.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  739.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  740.      */
  741.     public SpecificaConversazione readSpecificaConversazioneFromString(String in) throws DeserializerException {
  742.         return (SpecificaConversazione) this.xmlToObj(in.getBytes(), SpecificaConversazione.class);
  743.     }  
  744.    
  745.    
  746.    
  747.     /*
  748.      =================================================================================
  749.      Object: DocumentoConversazione
  750.      =================================================================================
  751.     */
  752.    
  753.     /**
  754.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  755.      *
  756.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  757.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  758.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  759.      */
  760.     public DocumentoConversazione readDocumentoConversazione(String fileName) throws DeserializerException {
  761.         return (DocumentoConversazione) this.xmlToObj(fileName, DocumentoConversazione.class);
  762.     }
  763.    
  764.     /**
  765.      * Transform the xml in <var>file</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  766.      *
  767.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  768.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  769.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  770.      */
  771.     public DocumentoConversazione readDocumentoConversazione(File file) throws DeserializerException {
  772.         return (DocumentoConversazione) this.xmlToObj(file, DocumentoConversazione.class);
  773.     }
  774.    
  775.     /**
  776.      * Transform the input stream <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  777.      *
  778.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  779.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  780.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  781.      */
  782.     public DocumentoConversazione readDocumentoConversazione(InputStream in) throws DeserializerException {
  783.         return (DocumentoConversazione) this.xmlToObj(in, DocumentoConversazione.class);
  784.     }  
  785.    
  786.     /**
  787.      * Transform the byte array <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  788.      *
  789.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  790.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  791.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  792.      */
  793.     public DocumentoConversazione readDocumentoConversazione(byte[] in) throws DeserializerException {
  794.         return (DocumentoConversazione) this.xmlToObj(in, DocumentoConversazione.class);
  795.     }  
  796.    
  797.     /**
  798.      * Transform the String <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  799.      *
  800.      * @param in String to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  801.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  802.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  803.      */
  804.     public DocumentoConversazione readDocumentoConversazioneFromString(String in) throws DeserializerException {
  805.         return (DocumentoConversazione) this.xmlToObj(in.getBytes(), DocumentoConversazione.class);
  806.     }  
  807.    
  808.    
  809.    
  810.     /*
  811.      =================================================================================
  812.      Object: DocumentoInterfaccia
  813.      =================================================================================
  814.     */
  815.    
  816.     /**
  817.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  818.      *
  819.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  820.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  821.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  822.      */
  823.     public DocumentoInterfaccia readDocumentoInterfaccia(String fileName) throws DeserializerException {
  824.         return (DocumentoInterfaccia) this.xmlToObj(fileName, DocumentoInterfaccia.class);
  825.     }
  826.    
  827.     /**
  828.      * Transform the xml in <var>file</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  829.      *
  830.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  831.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  832.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  833.      */
  834.     public DocumentoInterfaccia readDocumentoInterfaccia(File file) throws DeserializerException {
  835.         return (DocumentoInterfaccia) this.xmlToObj(file, DocumentoInterfaccia.class);
  836.     }
  837.    
  838.     /**
  839.      * Transform the input stream <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  840.      *
  841.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  842.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  843.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  844.      */
  845.     public DocumentoInterfaccia readDocumentoInterfaccia(InputStream in) throws DeserializerException {
  846.         return (DocumentoInterfaccia) this.xmlToObj(in, DocumentoInterfaccia.class);
  847.     }  
  848.    
  849.     /**
  850.      * Transform the byte array <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  851.      *
  852.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  853.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  854.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  855.      */
  856.     public DocumentoInterfaccia readDocumentoInterfaccia(byte[] in) throws DeserializerException {
  857.         return (DocumentoInterfaccia) this.xmlToObj(in, DocumentoInterfaccia.class);
  858.     }  
  859.    
  860.     /**
  861.      * Transform the String <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  862.      *
  863.      * @param in String to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  864.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  865.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  866.      */
  867.     public DocumentoInterfaccia readDocumentoInterfacciaFromString(String in) throws DeserializerException {
  868.         return (DocumentoInterfaccia) this.xmlToObj(in.getBytes(), DocumentoInterfaccia.class);
  869.     }  
  870.    
  871.    
  872.    
  873.     /*
  874.      =================================================================================
  875.      Object: ElencoPartecipanti
  876.      =================================================================================
  877.     */
  878.    
  879.     /**
  880.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  881.      *
  882.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  883.      * @return Object type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  884.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  885.      */
  886.     public ElencoPartecipanti readElencoPartecipanti(String fileName) throws DeserializerException {
  887.         return (ElencoPartecipanti) this.xmlToObj(fileName, ElencoPartecipanti.class);
  888.     }
  889.    
  890.     /**
  891.      * Transform the xml in <var>file</var> in the object type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  892.      *
  893.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  894.      * @return Object type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  895.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  896.      */
  897.     public ElencoPartecipanti readElencoPartecipanti(File file) throws DeserializerException {
  898.         return (ElencoPartecipanti) this.xmlToObj(file, ElencoPartecipanti.class);
  899.     }
  900.    
  901.     /**
  902.      * Transform the input stream <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  903.      *
  904.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  905.      * @return Object type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  906.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  907.      */
  908.     public ElencoPartecipanti readElencoPartecipanti(InputStream in) throws DeserializerException {
  909.         return (ElencoPartecipanti) this.xmlToObj(in, ElencoPartecipanti.class);
  910.     }  
  911.    
  912.     /**
  913.      * Transform the byte array <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  914.      *
  915.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  916.      * @return Object type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  917.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  918.      */
  919.     public ElencoPartecipanti readElencoPartecipanti(byte[] in) throws DeserializerException {
  920.         return (ElencoPartecipanti) this.xmlToObj(in, ElencoPartecipanti.class);
  921.     }  
  922.    
  923.     /**
  924.      * Transform the String <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  925.      *
  926.      * @param in String to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  927.      * @return Object type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  928.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  929.      */
  930.     public ElencoPartecipanti readElencoPartecipantiFromString(String in) throws DeserializerException {
  931.         return (ElencoPartecipanti) this.xmlToObj(in.getBytes(), ElencoPartecipanti.class);
  932.     }  
  933.    
  934.    
  935.    
  936.     /*
  937.      =================================================================================
  938.      Object: servizioComposto
  939.      =================================================================================
  940.     */
  941.    
  942.     /**
  943.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  944.      *
  945.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  946.      * @return Object type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  947.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  948.      */
  949.     public ServizioComposto readServizioComposto(String fileName) throws DeserializerException {
  950.         return (ServizioComposto) this.xmlToObj(fileName, ServizioComposto.class);
  951.     }
  952.    
  953.     /**
  954.      * Transform the xml in <var>file</var> in the object type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  955.      *
  956.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  957.      * @return Object type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  958.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  959.      */
  960.     public ServizioComposto readServizioComposto(File file) throws DeserializerException {
  961.         return (ServizioComposto) this.xmlToObj(file, ServizioComposto.class);
  962.     }
  963.    
  964.     /**
  965.      * Transform the input stream <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  966.      *
  967.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  968.      * @return Object type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  969.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  970.      */
  971.     public ServizioComposto readServizioComposto(InputStream in) throws DeserializerException {
  972.         return (ServizioComposto) this.xmlToObj(in, ServizioComposto.class);
  973.     }  
  974.    
  975.     /**
  976.      * Transform the byte array <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  977.      *
  978.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  979.      * @return Object type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  980.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  981.      */
  982.     public ServizioComposto readServizioComposto(byte[] in) throws DeserializerException {
  983.         return (ServizioComposto) this.xmlToObj(in, ServizioComposto.class);
  984.     }  
  985.    
  986.     /**
  987.      * Transform the String <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  988.      *
  989.      * @param in String to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  990.      * @return Object type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  991.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  992.      */
  993.     public ServizioComposto readServizioCompostoFromString(String in) throws DeserializerException {
  994.         return (ServizioComposto) this.xmlToObj(in.getBytes(), ServizioComposto.class);
  995.     }  
  996.    
  997.    
  998.    
  999.     /*
  1000.      =================================================================================
  1001.      Object: ElencoAllegati
  1002.      =================================================================================
  1003.     */
  1004.    
  1005.     /**
  1006.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  1007.      *
  1008.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  1009.      * @return Object type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  1010.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1011.      */
  1012.     public ElencoAllegati readElencoAllegati(String fileName) throws DeserializerException {
  1013.         return (ElencoAllegati) this.xmlToObj(fileName, ElencoAllegati.class);
  1014.     }
  1015.    
  1016.     /**
  1017.      * Transform the xml in <var>file</var> in the object type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  1018.      *
  1019.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  1020.      * @return Object type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  1021.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1022.      */
  1023.     public ElencoAllegati readElencoAllegati(File file) throws DeserializerException {
  1024.         return (ElencoAllegati) this.xmlToObj(file, ElencoAllegati.class);
  1025.     }
  1026.    
  1027.     /**
  1028.      * Transform the input stream <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  1029.      *
  1030.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  1031.      * @return Object type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  1032.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1033.      */
  1034.     public ElencoAllegati readElencoAllegati(InputStream in) throws DeserializerException {
  1035.         return (ElencoAllegati) this.xmlToObj(in, ElencoAllegati.class);
  1036.     }  
  1037.    
  1038.     /**
  1039.      * Transform the byte array <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  1040.      *
  1041.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  1042.      * @return Object type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  1043.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1044.      */
  1045.     public ElencoAllegati readElencoAllegati(byte[] in) throws DeserializerException {
  1046.         return (ElencoAllegati) this.xmlToObj(in, ElencoAllegati.class);
  1047.     }  
  1048.    
  1049.     /**
  1050.      * Transform the String <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  1051.      *
  1052.      * @param in String to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  1053.      * @return Object type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  1054.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1055.      */
  1056.     public ElencoAllegati readElencoAllegatiFromString(String in) throws DeserializerException {
  1057.         return (ElencoAllegati) this.xmlToObj(in.getBytes(), ElencoAllegati.class);
  1058.     }  
  1059.    
  1060.    
  1061.    
  1062.     /*
  1063.      =================================================================================
  1064.      Object: SpecificaCoordinamento
  1065.      =================================================================================
  1066.     */
  1067.    
  1068.     /**
  1069.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  1070.      *
  1071.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  1072.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  1073.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1074.      */
  1075.     public SpecificaCoordinamento readSpecificaCoordinamento(String fileName) throws DeserializerException {
  1076.         return (SpecificaCoordinamento) this.xmlToObj(fileName, SpecificaCoordinamento.class);
  1077.     }
  1078.    
  1079.     /**
  1080.      * Transform the xml in <var>file</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  1081.      *
  1082.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  1083.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  1084.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1085.      */
  1086.     public SpecificaCoordinamento readSpecificaCoordinamento(File file) throws DeserializerException {
  1087.         return (SpecificaCoordinamento) this.xmlToObj(file, SpecificaCoordinamento.class);
  1088.     }
  1089.    
  1090.     /**
  1091.      * Transform the input stream <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  1092.      *
  1093.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  1094.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  1095.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1096.      */
  1097.     public SpecificaCoordinamento readSpecificaCoordinamento(InputStream in) throws DeserializerException {
  1098.         return (SpecificaCoordinamento) this.xmlToObj(in, SpecificaCoordinamento.class);
  1099.     }  
  1100.    
  1101.     /**
  1102.      * Transform the byte array <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  1103.      *
  1104.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  1105.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  1106.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1107.      */
  1108.     public SpecificaCoordinamento readSpecificaCoordinamento(byte[] in) throws DeserializerException {
  1109.         return (SpecificaCoordinamento) this.xmlToObj(in, SpecificaCoordinamento.class);
  1110.     }  
  1111.    
  1112.     /**
  1113.      * Transform the String <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  1114.      *
  1115.      * @param in String to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  1116.      * @return Object type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  1117.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1118.      */
  1119.     public SpecificaCoordinamento readSpecificaCoordinamentoFromString(String in) throws DeserializerException {
  1120.         return (SpecificaCoordinamento) this.xmlToObj(in.getBytes(), SpecificaCoordinamento.class);
  1121.     }  
  1122.    
  1123.    
  1124.    
  1125.     /*
  1126.      =================================================================================
  1127.      Object: DocumentoLivelloServizio
  1128.      =================================================================================
  1129.     */
  1130.    
  1131.     /**
  1132.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  1133.      *
  1134.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  1135.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  1136.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1137.      */
  1138.     public DocumentoLivelloServizio readDocumentoLivelloServizio(String fileName) throws DeserializerException {
  1139.         return (DocumentoLivelloServizio) this.xmlToObj(fileName, DocumentoLivelloServizio.class);
  1140.     }
  1141.    
  1142.     /**
  1143.      * Transform the xml in <var>file</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  1144.      *
  1145.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  1146.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  1147.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1148.      */
  1149.     public DocumentoLivelloServizio readDocumentoLivelloServizio(File file) throws DeserializerException {
  1150.         return (DocumentoLivelloServizio) this.xmlToObj(file, DocumentoLivelloServizio.class);
  1151.     }
  1152.    
  1153.     /**
  1154.      * Transform the input stream <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  1155.      *
  1156.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  1157.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  1158.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1159.      */
  1160.     public DocumentoLivelloServizio readDocumentoLivelloServizio(InputStream in) throws DeserializerException {
  1161.         return (DocumentoLivelloServizio) this.xmlToObj(in, DocumentoLivelloServizio.class);
  1162.     }  
  1163.    
  1164.     /**
  1165.      * Transform the byte array <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  1166.      *
  1167.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  1168.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  1169.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1170.      */
  1171.     public DocumentoLivelloServizio readDocumentoLivelloServizio(byte[] in) throws DeserializerException {
  1172.         return (DocumentoLivelloServizio) this.xmlToObj(in, DocumentoLivelloServizio.class);
  1173.     }  
  1174.    
  1175.     /**
  1176.      * Transform the String <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  1177.      *
  1178.      * @param in String to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  1179.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  1180.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1181.      */
  1182.     public DocumentoLivelloServizio readDocumentoLivelloServizioFromString(String in) throws DeserializerException {
  1183.         return (DocumentoLivelloServizio) this.xmlToObj(in.getBytes(), DocumentoLivelloServizio.class);
  1184.     }  
  1185.    
  1186.    
  1187.    
  1188.     /*
  1189.      =================================================================================
  1190.      Object: accordoCooperazione
  1191.      =================================================================================
  1192.     */
  1193.    
  1194.     /**
  1195.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  1196.      *
  1197.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  1198.      * @return Object type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  1199.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1200.      */
  1201.     public AccordoCooperazione readAccordoCooperazione(String fileName) throws DeserializerException {
  1202.         return (AccordoCooperazione) this.xmlToObj(fileName, AccordoCooperazione.class);
  1203.     }
  1204.    
  1205.     /**
  1206.      * Transform the xml in <var>file</var> in the object type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  1207.      *
  1208.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  1209.      * @return Object type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  1210.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1211.      */
  1212.     public AccordoCooperazione readAccordoCooperazione(File file) throws DeserializerException {
  1213.         return (AccordoCooperazione) this.xmlToObj(file, AccordoCooperazione.class);
  1214.     }
  1215.    
  1216.     /**
  1217.      * Transform the input stream <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  1218.      *
  1219.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  1220.      * @return Object type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  1221.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1222.      */
  1223.     public AccordoCooperazione readAccordoCooperazione(InputStream in) throws DeserializerException {
  1224.         return (AccordoCooperazione) this.xmlToObj(in, AccordoCooperazione.class);
  1225.     }  
  1226.    
  1227.     /**
  1228.      * Transform the byte array <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  1229.      *
  1230.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  1231.      * @return Object type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  1232.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1233.      */
  1234.     public AccordoCooperazione readAccordoCooperazione(byte[] in) throws DeserializerException {
  1235.         return (AccordoCooperazione) this.xmlToObj(in, AccordoCooperazione.class);
  1236.     }  
  1237.    
  1238.     /**
  1239.      * Transform the String <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  1240.      *
  1241.      * @param in String to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  1242.      * @return Object type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  1243.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1244.      */
  1245.     public AccordoCooperazione readAccordoCooperazioneFromString(String in) throws DeserializerException {
  1246.         return (AccordoCooperazione) this.xmlToObj(in.getBytes(), AccordoCooperazione.class);
  1247.     }  
  1248.    
  1249.    
  1250.    
  1251.     /*
  1252.      =================================================================================
  1253.      Object: ElencoServiziComposti
  1254.      =================================================================================
  1255.     */
  1256.    
  1257.     /**
  1258.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  1259.      *
  1260.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  1261.      * @return Object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  1262.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1263.      */
  1264.     public ElencoServiziComposti readElencoServiziComposti(String fileName) throws DeserializerException {
  1265.         return (ElencoServiziComposti) this.xmlToObj(fileName, ElencoServiziComposti.class);
  1266.     }
  1267.    
  1268.     /**
  1269.      * Transform the xml in <var>file</var> in the object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  1270.      *
  1271.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  1272.      * @return Object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  1273.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1274.      */
  1275.     public ElencoServiziComposti readElencoServiziComposti(File file) throws DeserializerException {
  1276.         return (ElencoServiziComposti) this.xmlToObj(file, ElencoServiziComposti.class);
  1277.     }
  1278.    
  1279.     /**
  1280.      * Transform the input stream <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  1281.      *
  1282.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  1283.      * @return Object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  1284.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1285.      */
  1286.     public ElencoServiziComposti readElencoServiziComposti(InputStream in) throws DeserializerException {
  1287.         return (ElencoServiziComposti) this.xmlToObj(in, ElencoServiziComposti.class);
  1288.     }  
  1289.    
  1290.     /**
  1291.      * Transform the byte array <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  1292.      *
  1293.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  1294.      * @return Object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  1295.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1296.      */
  1297.     public ElencoServiziComposti readElencoServiziComposti(byte[] in) throws DeserializerException {
  1298.         return (ElencoServiziComposti) this.xmlToObj(in, ElencoServiziComposti.class);
  1299.     }  
  1300.    
  1301.     /**
  1302.      * Transform the String <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  1303.      *
  1304.      * @param in String to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  1305.      * @return Object type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  1306.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1307.      */
  1308.     public ElencoServiziComposti readElencoServiziCompostiFromString(String in) throws DeserializerException {
  1309.         return (ElencoServiziComposti) this.xmlToObj(in.getBytes(), ElencoServiziComposti.class);
  1310.     }  
  1311.    
  1312.    
  1313.    
  1314.     /*
  1315.      =================================================================================
  1316.      Object: DocumentoCoordinamento
  1317.      =================================================================================
  1318.     */
  1319.    
  1320.     /**
  1321.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  1322.      *
  1323.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  1324.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  1325.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1326.      */
  1327.     public DocumentoCoordinamento readDocumentoCoordinamento(String fileName) throws DeserializerException {
  1328.         return (DocumentoCoordinamento) this.xmlToObj(fileName, DocumentoCoordinamento.class);
  1329.     }
  1330.    
  1331.     /**
  1332.      * Transform the xml in <var>file</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  1333.      *
  1334.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  1335.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  1336.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1337.      */
  1338.     public DocumentoCoordinamento readDocumentoCoordinamento(File file) throws DeserializerException {
  1339.         return (DocumentoCoordinamento) this.xmlToObj(file, DocumentoCoordinamento.class);
  1340.     }
  1341.    
  1342.     /**
  1343.      * Transform the input stream <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  1344.      *
  1345.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  1346.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  1347.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1348.      */
  1349.     public DocumentoCoordinamento readDocumentoCoordinamento(InputStream in) throws DeserializerException {
  1350.         return (DocumentoCoordinamento) this.xmlToObj(in, DocumentoCoordinamento.class);
  1351.     }  
  1352.    
  1353.     /**
  1354.      * Transform the byte array <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  1355.      *
  1356.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  1357.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  1358.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1359.      */
  1360.     public DocumentoCoordinamento readDocumentoCoordinamento(byte[] in) throws DeserializerException {
  1361.         return (DocumentoCoordinamento) this.xmlToObj(in, DocumentoCoordinamento.class);
  1362.     }  
  1363.    
  1364.     /**
  1365.      * Transform the String <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  1366.      *
  1367.      * @param in String to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  1368.      * @return Object type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  1369.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1370.      */
  1371.     public DocumentoCoordinamento readDocumentoCoordinamentoFromString(String in) throws DeserializerException {
  1372.         return (DocumentoCoordinamento) this.xmlToObj(in.getBytes(), DocumentoCoordinamento.class);
  1373.     }  
  1374.    
  1375.    
  1376.    
  1377.     /*
  1378.      =================================================================================
  1379.      Object: accordoServizio
  1380.      =================================================================================
  1381.     */
  1382.    
  1383.     /**
  1384.      * Transform the xml in <var>fileName</var> in the object type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  1385.      *
  1386.      * @param fileName Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  1387.      * @return Object type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  1388.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1389.      */
  1390.     public AccordoServizio readAccordoServizio(String fileName) throws DeserializerException {
  1391.         return (AccordoServizio) this.xmlToObj(fileName, AccordoServizio.class);
  1392.     }
  1393.    
  1394.     /**
  1395.      * Transform the xml in <var>file</var> in the object type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  1396.      *
  1397.      * @param file Xml file to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  1398.      * @return Object type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  1399.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1400.      */
  1401.     public AccordoServizio readAccordoServizio(File file) throws DeserializerException {
  1402.         return (AccordoServizio) this.xmlToObj(file, AccordoServizio.class);
  1403.     }
  1404.    
  1405.     /**
  1406.      * Transform the input stream <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  1407.      *
  1408.      * @param in InputStream to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  1409.      * @return Object type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  1410.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1411.      */
  1412.     public AccordoServizio readAccordoServizio(InputStream in) throws DeserializerException {
  1413.         return (AccordoServizio) this.xmlToObj(in, AccordoServizio.class);
  1414.     }  
  1415.    
  1416.     /**
  1417.      * Transform the byte array <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  1418.      *
  1419.      * @param in Byte array to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  1420.      * @return Object type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  1421.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1422.      */
  1423.     public AccordoServizio readAccordoServizio(byte[] in) throws DeserializerException {
  1424.         return (AccordoServizio) this.xmlToObj(in, AccordoServizio.class);
  1425.     }  
  1426.    
  1427.     /**
  1428.      * Transform the String <var>in</var> in the object type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  1429.      *
  1430.      * @param in String to use for the reconstruction of the object type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  1431.      * @return Object type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  1432.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1433.      */
  1434.     public AccordoServizio readAccordoServizioFromString(String in) throws DeserializerException {
  1435.         return (AccordoServizio) this.xmlToObj(in.getBytes(), AccordoServizio.class);
  1436.     }  
  1437.    
  1438.    
  1439.    

  1440. }