AbstractSerializer.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.SerializerException;
  22. import org.openspcoop2.utils.beans.WriteToSerializerType;
  23. import org.openspcoop2.utils.xml.JaxbUtils;

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

  46. import java.io.ByteArrayOutputStream;
  47. import java.io.FileOutputStream;
  48. import java.io.OutputStream;
  49. import java.io.File;
  50. import java.lang.reflect.Method;

  51. import javax.xml.bind.JAXBElement;

  52. /**    
  53.  * XML Serializer of beans
  54.  *
  55.  * @author Poli Andrea (poli@link.it)
  56.  * @author $Author$
  57.  * @version $Rev$, $Date$
  58.  */
  59. public abstract class AbstractSerializer {


  60.     protected abstract WriteToSerializerType getType();
  61.    
  62.     protected void _objToXml(OutputStream out, Class<?> c, Object object,
  63.             boolean prettyPrint) throws Exception {
  64.         if(object instanceof JAXBElement){
  65.             // solo per il tipo WriteToSerializerType.JAXB
  66.             JaxbUtils.objToXml(out, c, object, prettyPrint);
  67.         }else{
  68.             Method m = c.getMethod("writeTo", OutputStream.class, WriteToSerializerType.class);
  69.             m.invoke(object, out, this.getType());
  70.         }
  71.     }
  72.    
  73.     protected void objToXml(OutputStream out,Class<?> c,Object object,boolean prettyPrint) throws SerializerException{
  74.         try{
  75.             this._objToXml(out, c, object, prettyPrint);
  76.         }catch(Exception e){
  77.             throw new SerializerException(e.getMessage(), e);
  78.         }
  79.         finally{
  80.             try{
  81.                 out.flush();
  82.             }catch(Exception e){
  83.                 // ignore
  84.             }
  85.         }
  86.     }
  87.     protected void objToXml(String fileName,Class<?> c,Object object,boolean prettyPrint) throws SerializerException{
  88.         try{
  89.             this.objToXml(new File(fileName), c, object, prettyPrint);
  90.         }catch(Exception e){
  91.             throw new SerializerException(e.getMessage(), e);
  92.         }
  93.     }
  94.     protected void objToXml(File file,Class<?> c,Object object,boolean prettyPrint) throws SerializerException{
  95.         FileOutputStream fout = null;
  96.         try{
  97.             fout = new FileOutputStream(file);
  98.             this._objToXml(fout, c, object, prettyPrint);
  99.         }catch(Exception e){
  100.             throw new SerializerException(e.getMessage(), e);
  101.         }
  102.         finally{
  103.             try{
  104.                 if(fout!=null){
  105.                     fout.flush();
  106.                 }
  107.             }catch(Exception e){
  108.                 // ignore
  109.             }
  110.             try{
  111.                 if(fout!=null){
  112.                     fout.close();
  113.                 }
  114.             }catch(Exception e){
  115.                 // ignore
  116.             }
  117.         }
  118.     }
  119.     protected ByteArrayOutputStream objToXml(Class<?> c,Object object,boolean prettyPrint) throws SerializerException{
  120.         ByteArrayOutputStream bout = null;
  121.         try{
  122.             bout = new ByteArrayOutputStream();
  123.             this._objToXml(bout, c, object, prettyPrint);
  124.         }catch(Exception e){
  125.             throw new SerializerException(e.getMessage(), e);
  126.         }
  127.         finally{
  128.             try{
  129.                 if(bout!=null){
  130.                     bout.flush();
  131.                 }
  132.             }catch(Exception e){
  133.                 // ignore
  134.             }
  135.             try{
  136.                 if(bout!=null){
  137.                     bout.close();
  138.                 }
  139.             }catch(Exception e){
  140.                 // ignore
  141.             }
  142.         }
  143.         return bout;
  144.     }




  145.     /*
  146.      =================================================================================
  147.      Object: DocumentoSicurezza
  148.      =================================================================================
  149.     */
  150.    
  151.     /**
  152.      * Serialize to file system in <var>fileName</var> the object <var>documentoSicurezza</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  153.      *
  154.      * @param fileName Xml file to serialize the object <var>documentoSicurezza</var>
  155.      * @param documentoSicurezza Object to be serialized in xml file <var>fileName</var>
  156.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  157.      */
  158.     public void write(String fileName,DocumentoSicurezza documentoSicurezza) throws SerializerException {
  159.         this.objToXml(fileName, DocumentoSicurezza.class, documentoSicurezza, false);
  160.     }
  161.     /**
  162.      * Serialize to file system in <var>fileName</var> the object <var>documentoSicurezza</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  163.      *
  164.      * @param fileName Xml file to serialize the object <var>documentoSicurezza</var>
  165.      * @param documentoSicurezza Object to be serialized in xml file <var>fileName</var>
  166.      * @param prettyPrint if true output the XML with indenting
  167.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  168.      */
  169.     public void write(String fileName,DocumentoSicurezza documentoSicurezza,boolean prettyPrint) throws SerializerException {
  170.         this.objToXml(fileName, DocumentoSicurezza.class, documentoSicurezza, prettyPrint);
  171.     }
  172.    
  173.     /**
  174.      * Serialize to file system in <var>file</var> the object <var>documentoSicurezza</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  175.      *
  176.      * @param file Xml file to serialize the object <var>documentoSicurezza</var>
  177.      * @param documentoSicurezza Object to be serialized in xml file <var>fileName</var>
  178.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  179.      */
  180.     public void write(File file,DocumentoSicurezza documentoSicurezza) throws SerializerException {
  181.         this.objToXml(file, DocumentoSicurezza.class, documentoSicurezza, false);
  182.     }
  183.     /**
  184.      * Serialize to file system in <var>file</var> the object <var>documentoSicurezza</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  185.      *
  186.      * @param file Xml file to serialize the object <var>documentoSicurezza</var>
  187.      * @param documentoSicurezza Object to be serialized in xml file <var>fileName</var>
  188.      * @param prettyPrint if true output the XML with indenting
  189.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  190.      */
  191.     public void write(File file,DocumentoSicurezza documentoSicurezza,boolean prettyPrint) throws SerializerException {
  192.         this.objToXml(file, DocumentoSicurezza.class, documentoSicurezza, prettyPrint);
  193.     }
  194.    
  195.     /**
  196.      * Serialize to output stream <var>out</var> the object <var>documentoSicurezza</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  197.      *
  198.      * @param out OutputStream to serialize the object <var>documentoSicurezza</var>
  199.      * @param documentoSicurezza Object to be serialized in xml file <var>fileName</var>
  200.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  201.      */
  202.     public void write(OutputStream out,DocumentoSicurezza documentoSicurezza) throws SerializerException {
  203.         this.objToXml(out, DocumentoSicurezza.class, documentoSicurezza, false);
  204.     }
  205.     /**
  206.      * Serialize to output stream <var>out</var> the object <var>documentoSicurezza</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  207.      *
  208.      * @param out OutputStream to serialize the object <var>documentoSicurezza</var>
  209.      * @param documentoSicurezza Object to be serialized in xml file <var>fileName</var>
  210.      * @param prettyPrint if true output the XML with indenting
  211.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  212.      */
  213.     public void write(OutputStream out,DocumentoSicurezza documentoSicurezza,boolean prettyPrint) throws SerializerException {
  214.         this.objToXml(out, DocumentoSicurezza.class, documentoSicurezza, prettyPrint);
  215.     }
  216.            
  217.     /**
  218.      * Serialize to byte array the object <var>documentoSicurezza</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  219.      *
  220.      * @param documentoSicurezza Object to be serialized
  221.      * @return Object to be serialized in byte array
  222.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  223.      */
  224.     public byte[] toByteArray(DocumentoSicurezza documentoSicurezza) throws SerializerException {
  225.         return this.objToXml(DocumentoSicurezza.class, documentoSicurezza, false).toByteArray();
  226.     }
  227.     /**
  228.      * Serialize to byte array the object <var>documentoSicurezza</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  229.      *
  230.      * @param documentoSicurezza Object to be serialized
  231.      * @param prettyPrint if true output the XML with indenting
  232.      * @return Object to be serialized in byte array
  233.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  234.      */
  235.     public byte[] toByteArray(DocumentoSicurezza documentoSicurezza,boolean prettyPrint) throws SerializerException {
  236.         return this.objToXml(DocumentoSicurezza.class, documentoSicurezza, prettyPrint).toByteArray();
  237.     }
  238.    
  239.     /**
  240.      * Serialize to String the object <var>documentoSicurezza</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  241.      *
  242.      * @param documentoSicurezza Object to be serialized
  243.      * @return Object to be serialized as String
  244.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  245.      */
  246.     public String toString(DocumentoSicurezza documentoSicurezza) throws SerializerException {
  247.         return this.objToXml(DocumentoSicurezza.class, documentoSicurezza, false).toString();
  248.     }
  249.     /**
  250.      * Serialize to String the object <var>documentoSicurezza</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoSicurezza}
  251.      *
  252.      * @param documentoSicurezza Object to be serialized
  253.      * @param prettyPrint if true output the XML with indenting
  254.      * @return Object to be serialized as String
  255.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  256.      */
  257.     public String toString(DocumentoSicurezza documentoSicurezza,boolean prettyPrint) throws SerializerException {
  258.         return this.objToXml(DocumentoSicurezza.class, documentoSicurezza, prettyPrint).toString();
  259.     }
  260.    
  261.    
  262.    
  263.     /*
  264.      =================================================================================
  265.      Object: ElencoServiziComponenti
  266.      =================================================================================
  267.     */
  268.    
  269.     /**
  270.      * Serialize to file system in <var>fileName</var> the object <var>elencoServiziComponenti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  271.      *
  272.      * @param fileName Xml file to serialize the object <var>elencoServiziComponenti</var>
  273.      * @param elencoServiziComponenti Object to be serialized in xml file <var>fileName</var>
  274.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  275.      */
  276.     public void write(String fileName,ElencoServiziComponenti elencoServiziComponenti) throws SerializerException {
  277.         this.objToXml(fileName, ElencoServiziComponenti.class, elencoServiziComponenti, false);
  278.     }
  279.     /**
  280.      * Serialize to file system in <var>fileName</var> the object <var>elencoServiziComponenti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  281.      *
  282.      * @param fileName Xml file to serialize the object <var>elencoServiziComponenti</var>
  283.      * @param elencoServiziComponenti Object to be serialized in xml file <var>fileName</var>
  284.      * @param prettyPrint if true output the XML with indenting
  285.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  286.      */
  287.     public void write(String fileName,ElencoServiziComponenti elencoServiziComponenti,boolean prettyPrint) throws SerializerException {
  288.         this.objToXml(fileName, ElencoServiziComponenti.class, elencoServiziComponenti, prettyPrint);
  289.     }
  290.    
  291.     /**
  292.      * Serialize to file system in <var>file</var> the object <var>elencoServiziComponenti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  293.      *
  294.      * @param file Xml file to serialize the object <var>elencoServiziComponenti</var>
  295.      * @param elencoServiziComponenti Object to be serialized in xml file <var>fileName</var>
  296.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  297.      */
  298.     public void write(File file,ElencoServiziComponenti elencoServiziComponenti) throws SerializerException {
  299.         this.objToXml(file, ElencoServiziComponenti.class, elencoServiziComponenti, false);
  300.     }
  301.     /**
  302.      * Serialize to file system in <var>file</var> the object <var>elencoServiziComponenti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  303.      *
  304.      * @param file Xml file to serialize the object <var>elencoServiziComponenti</var>
  305.      * @param elencoServiziComponenti Object to be serialized in xml file <var>fileName</var>
  306.      * @param prettyPrint if true output the XML with indenting
  307.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  308.      */
  309.     public void write(File file,ElencoServiziComponenti elencoServiziComponenti,boolean prettyPrint) throws SerializerException {
  310.         this.objToXml(file, ElencoServiziComponenti.class, elencoServiziComponenti, prettyPrint);
  311.     }
  312.    
  313.     /**
  314.      * Serialize to output stream <var>out</var> the object <var>elencoServiziComponenti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  315.      *
  316.      * @param out OutputStream to serialize the object <var>elencoServiziComponenti</var>
  317.      * @param elencoServiziComponenti Object to be serialized in xml file <var>fileName</var>
  318.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  319.      */
  320.     public void write(OutputStream out,ElencoServiziComponenti elencoServiziComponenti) throws SerializerException {
  321.         this.objToXml(out, ElencoServiziComponenti.class, elencoServiziComponenti, false);
  322.     }
  323.     /**
  324.      * Serialize to output stream <var>out</var> the object <var>elencoServiziComponenti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  325.      *
  326.      * @param out OutputStream to serialize the object <var>elencoServiziComponenti</var>
  327.      * @param elencoServiziComponenti Object to be serialized in xml file <var>fileName</var>
  328.      * @param prettyPrint if true output the XML with indenting
  329.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  330.      */
  331.     public void write(OutputStream out,ElencoServiziComponenti elencoServiziComponenti,boolean prettyPrint) throws SerializerException {
  332.         this.objToXml(out, ElencoServiziComponenti.class, elencoServiziComponenti, prettyPrint);
  333.     }
  334.            
  335.     /**
  336.      * Serialize to byte array the object <var>elencoServiziComponenti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  337.      *
  338.      * @param elencoServiziComponenti Object to be serialized
  339.      * @return Object to be serialized in byte array
  340.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  341.      */
  342.     public byte[] toByteArray(ElencoServiziComponenti elencoServiziComponenti) throws SerializerException {
  343.         return this.objToXml(ElencoServiziComponenti.class, elencoServiziComponenti, false).toByteArray();
  344.     }
  345.     /**
  346.      * Serialize to byte array the object <var>elencoServiziComponenti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  347.      *
  348.      * @param elencoServiziComponenti Object to be serialized
  349.      * @param prettyPrint if true output the XML with indenting
  350.      * @return Object to be serialized in byte array
  351.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  352.      */
  353.     public byte[] toByteArray(ElencoServiziComponenti elencoServiziComponenti,boolean prettyPrint) throws SerializerException {
  354.         return this.objToXml(ElencoServiziComponenti.class, elencoServiziComponenti, prettyPrint).toByteArray();
  355.     }
  356.    
  357.     /**
  358.      * Serialize to String the object <var>elencoServiziComponenti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  359.      *
  360.      * @param elencoServiziComponenti Object to be serialized
  361.      * @return Object to be serialized as String
  362.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  363.      */
  364.     public String toString(ElencoServiziComponenti elencoServiziComponenti) throws SerializerException {
  365.         return this.objToXml(ElencoServiziComponenti.class, elencoServiziComponenti, false).toString();
  366.     }
  367.     /**
  368.      * Serialize to String the object <var>elencoServiziComponenti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoServiziComponenti}
  369.      *
  370.      * @param elencoServiziComponenti Object to be serialized
  371.      * @param prettyPrint if true output the XML with indenting
  372.      * @return Object to be serialized as String
  373.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  374.      */
  375.     public String toString(ElencoServiziComponenti elencoServiziComponenti,boolean prettyPrint) throws SerializerException {
  376.         return this.objToXml(ElencoServiziComponenti.class, elencoServiziComponenti, prettyPrint).toString();
  377.     }
  378.    
  379.    
  380.    
  381.     /*
  382.      =================================================================================
  383.      Object: DocumentoSemiformale
  384.      =================================================================================
  385.     */
  386.    
  387.     /**
  388.      * Serialize to file system in <var>fileName</var> the object <var>documentoSemiformale</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  389.      *
  390.      * @param fileName Xml file to serialize the object <var>documentoSemiformale</var>
  391.      * @param documentoSemiformale Object to be serialized in xml file <var>fileName</var>
  392.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  393.      */
  394.     public void write(String fileName,DocumentoSemiformale documentoSemiformale) throws SerializerException {
  395.         this.objToXml(fileName, DocumentoSemiformale.class, documentoSemiformale, false);
  396.     }
  397.     /**
  398.      * Serialize to file system in <var>fileName</var> the object <var>documentoSemiformale</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  399.      *
  400.      * @param fileName Xml file to serialize the object <var>documentoSemiformale</var>
  401.      * @param documentoSemiformale Object to be serialized in xml file <var>fileName</var>
  402.      * @param prettyPrint if true output the XML with indenting
  403.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  404.      */
  405.     public void write(String fileName,DocumentoSemiformale documentoSemiformale,boolean prettyPrint) throws SerializerException {
  406.         this.objToXml(fileName, DocumentoSemiformale.class, documentoSemiformale, prettyPrint);
  407.     }
  408.    
  409.     /**
  410.      * Serialize to file system in <var>file</var> the object <var>documentoSemiformale</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  411.      *
  412.      * @param file Xml file to serialize the object <var>documentoSemiformale</var>
  413.      * @param documentoSemiformale Object to be serialized in xml file <var>fileName</var>
  414.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  415.      */
  416.     public void write(File file,DocumentoSemiformale documentoSemiformale) throws SerializerException {
  417.         this.objToXml(file, DocumentoSemiformale.class, documentoSemiformale, false);
  418.     }
  419.     /**
  420.      * Serialize to file system in <var>file</var> the object <var>documentoSemiformale</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  421.      *
  422.      * @param file Xml file to serialize the object <var>documentoSemiformale</var>
  423.      * @param documentoSemiformale Object to be serialized in xml file <var>fileName</var>
  424.      * @param prettyPrint if true output the XML with indenting
  425.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  426.      */
  427.     public void write(File file,DocumentoSemiformale documentoSemiformale,boolean prettyPrint) throws SerializerException {
  428.         this.objToXml(file, DocumentoSemiformale.class, documentoSemiformale, prettyPrint);
  429.     }
  430.    
  431.     /**
  432.      * Serialize to output stream <var>out</var> the object <var>documentoSemiformale</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  433.      *
  434.      * @param out OutputStream to serialize the object <var>documentoSemiformale</var>
  435.      * @param documentoSemiformale Object to be serialized in xml file <var>fileName</var>
  436.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  437.      */
  438.     public void write(OutputStream out,DocumentoSemiformale documentoSemiformale) throws SerializerException {
  439.         this.objToXml(out, DocumentoSemiformale.class, documentoSemiformale, false);
  440.     }
  441.     /**
  442.      * Serialize to output stream <var>out</var> the object <var>documentoSemiformale</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  443.      *
  444.      * @param out OutputStream to serialize the object <var>documentoSemiformale</var>
  445.      * @param documentoSemiformale Object to be serialized in xml file <var>fileName</var>
  446.      * @param prettyPrint if true output the XML with indenting
  447.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  448.      */
  449.     public void write(OutputStream out,DocumentoSemiformale documentoSemiformale,boolean prettyPrint) throws SerializerException {
  450.         this.objToXml(out, DocumentoSemiformale.class, documentoSemiformale, prettyPrint);
  451.     }
  452.            
  453.     /**
  454.      * Serialize to byte array the object <var>documentoSemiformale</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  455.      *
  456.      * @param documentoSemiformale Object to be serialized
  457.      * @return Object to be serialized in byte array
  458.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  459.      */
  460.     public byte[] toByteArray(DocumentoSemiformale documentoSemiformale) throws SerializerException {
  461.         return this.objToXml(DocumentoSemiformale.class, documentoSemiformale, false).toByteArray();
  462.     }
  463.     /**
  464.      * Serialize to byte array the object <var>documentoSemiformale</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  465.      *
  466.      * @param documentoSemiformale Object to be serialized
  467.      * @param prettyPrint if true output the XML with indenting
  468.      * @return Object to be serialized in byte array
  469.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  470.      */
  471.     public byte[] toByteArray(DocumentoSemiformale documentoSemiformale,boolean prettyPrint) throws SerializerException {
  472.         return this.objToXml(DocumentoSemiformale.class, documentoSemiformale, prettyPrint).toByteArray();
  473.     }
  474.    
  475.     /**
  476.      * Serialize to String the object <var>documentoSemiformale</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  477.      *
  478.      * @param documentoSemiformale Object to be serialized
  479.      * @return Object to be serialized as String
  480.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  481.      */
  482.     public String toString(DocumentoSemiformale documentoSemiformale) throws SerializerException {
  483.         return this.objToXml(DocumentoSemiformale.class, documentoSemiformale, false).toString();
  484.     }
  485.     /**
  486.      * Serialize to String the object <var>documentoSemiformale</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoSemiformale}
  487.      *
  488.      * @param documentoSemiformale Object to be serialized
  489.      * @param prettyPrint if true output the XML with indenting
  490.      * @return Object to be serialized as String
  491.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  492.      */
  493.     public String toString(DocumentoSemiformale documentoSemiformale,boolean prettyPrint) throws SerializerException {
  494.         return this.objToXml(DocumentoSemiformale.class, documentoSemiformale, prettyPrint).toString();
  495.     }
  496.    
  497.    
  498.    
  499.     /*
  500.      =================================================================================
  501.      Object: SpecificaSemiformale
  502.      =================================================================================
  503.     */
  504.    
  505.     /**
  506.      * Serialize to file system in <var>fileName</var> the object <var>specificaSemiformale</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  507.      *
  508.      * @param fileName Xml file to serialize the object <var>specificaSemiformale</var>
  509.      * @param specificaSemiformale Object to be serialized in xml file <var>fileName</var>
  510.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  511.      */
  512.     public void write(String fileName,SpecificaSemiformale specificaSemiformale) throws SerializerException {
  513.         this.objToXml(fileName, SpecificaSemiformale.class, specificaSemiformale, false);
  514.     }
  515.     /**
  516.      * Serialize to file system in <var>fileName</var> the object <var>specificaSemiformale</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  517.      *
  518.      * @param fileName Xml file to serialize the object <var>specificaSemiformale</var>
  519.      * @param specificaSemiformale Object to be serialized in xml file <var>fileName</var>
  520.      * @param prettyPrint if true output the XML with indenting
  521.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  522.      */
  523.     public void write(String fileName,SpecificaSemiformale specificaSemiformale,boolean prettyPrint) throws SerializerException {
  524.         this.objToXml(fileName, SpecificaSemiformale.class, specificaSemiformale, prettyPrint);
  525.     }
  526.    
  527.     /**
  528.      * Serialize to file system in <var>file</var> the object <var>specificaSemiformale</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  529.      *
  530.      * @param file Xml file to serialize the object <var>specificaSemiformale</var>
  531.      * @param specificaSemiformale Object to be serialized in xml file <var>fileName</var>
  532.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  533.      */
  534.     public void write(File file,SpecificaSemiformale specificaSemiformale) throws SerializerException {
  535.         this.objToXml(file, SpecificaSemiformale.class, specificaSemiformale, false);
  536.     }
  537.     /**
  538.      * Serialize to file system in <var>file</var> the object <var>specificaSemiformale</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  539.      *
  540.      * @param file Xml file to serialize the object <var>specificaSemiformale</var>
  541.      * @param specificaSemiformale Object to be serialized in xml file <var>fileName</var>
  542.      * @param prettyPrint if true output the XML with indenting
  543.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  544.      */
  545.     public void write(File file,SpecificaSemiformale specificaSemiformale,boolean prettyPrint) throws SerializerException {
  546.         this.objToXml(file, SpecificaSemiformale.class, specificaSemiformale, prettyPrint);
  547.     }
  548.    
  549.     /**
  550.      * Serialize to output stream <var>out</var> the object <var>specificaSemiformale</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  551.      *
  552.      * @param out OutputStream to serialize the object <var>specificaSemiformale</var>
  553.      * @param specificaSemiformale Object to be serialized in xml file <var>fileName</var>
  554.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  555.      */
  556.     public void write(OutputStream out,SpecificaSemiformale specificaSemiformale) throws SerializerException {
  557.         this.objToXml(out, SpecificaSemiformale.class, specificaSemiformale, false);
  558.     }
  559.     /**
  560.      * Serialize to output stream <var>out</var> the object <var>specificaSemiformale</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  561.      *
  562.      * @param out OutputStream to serialize the object <var>specificaSemiformale</var>
  563.      * @param specificaSemiformale Object to be serialized in xml file <var>fileName</var>
  564.      * @param prettyPrint if true output the XML with indenting
  565.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  566.      */
  567.     public void write(OutputStream out,SpecificaSemiformale specificaSemiformale,boolean prettyPrint) throws SerializerException {
  568.         this.objToXml(out, SpecificaSemiformale.class, specificaSemiformale, prettyPrint);
  569.     }
  570.            
  571.     /**
  572.      * Serialize to byte array the object <var>specificaSemiformale</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  573.      *
  574.      * @param specificaSemiformale Object to be serialized
  575.      * @return Object to be serialized in byte array
  576.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  577.      */
  578.     public byte[] toByteArray(SpecificaSemiformale specificaSemiformale) throws SerializerException {
  579.         return this.objToXml(SpecificaSemiformale.class, specificaSemiformale, false).toByteArray();
  580.     }
  581.     /**
  582.      * Serialize to byte array the object <var>specificaSemiformale</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  583.      *
  584.      * @param specificaSemiformale Object to be serialized
  585.      * @param prettyPrint if true output the XML with indenting
  586.      * @return Object to be serialized in byte array
  587.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  588.      */
  589.     public byte[] toByteArray(SpecificaSemiformale specificaSemiformale,boolean prettyPrint) throws SerializerException {
  590.         return this.objToXml(SpecificaSemiformale.class, specificaSemiformale, prettyPrint).toByteArray();
  591.     }
  592.    
  593.     /**
  594.      * Serialize to String the object <var>specificaSemiformale</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  595.      *
  596.      * @param specificaSemiformale Object to be serialized
  597.      * @return Object to be serialized as String
  598.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  599.      */
  600.     public String toString(SpecificaSemiformale specificaSemiformale) throws SerializerException {
  601.         return this.objToXml(SpecificaSemiformale.class, specificaSemiformale, false).toString();
  602.     }
  603.     /**
  604.      * Serialize to String the object <var>specificaSemiformale</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaSemiformale}
  605.      *
  606.      * @param specificaSemiformale Object to be serialized
  607.      * @param prettyPrint if true output the XML with indenting
  608.      * @return Object to be serialized as String
  609.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  610.      */
  611.     public String toString(SpecificaSemiformale specificaSemiformale,boolean prettyPrint) throws SerializerException {
  612.         return this.objToXml(SpecificaSemiformale.class, specificaSemiformale, prettyPrint).toString();
  613.     }
  614.    
  615.    
  616.    
  617.     /*
  618.      =================================================================================
  619.      Object: accordoServizioParteSpecifica
  620.      =================================================================================
  621.     */
  622.    
  623.     /**
  624.      * Serialize to file system in <var>fileName</var> the object <var>accordoServizioParteSpecifica</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  625.      *
  626.      * @param fileName Xml file to serialize the object <var>accordoServizioParteSpecifica</var>
  627.      * @param accordoServizioParteSpecifica Object to be serialized in xml file <var>fileName</var>
  628.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  629.      */
  630.     public void write(String fileName,AccordoServizioParteSpecifica accordoServizioParteSpecifica) throws SerializerException {
  631.         this.objToXml(fileName, AccordoServizioParteSpecifica.class, accordoServizioParteSpecifica, false);
  632.     }
  633.     /**
  634.      * Serialize to file system in <var>fileName</var> the object <var>accordoServizioParteSpecifica</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  635.      *
  636.      * @param fileName Xml file to serialize the object <var>accordoServizioParteSpecifica</var>
  637.      * @param accordoServizioParteSpecifica Object to be serialized in xml file <var>fileName</var>
  638.      * @param prettyPrint if true output the XML with indenting
  639.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  640.      */
  641.     public void write(String fileName,AccordoServizioParteSpecifica accordoServizioParteSpecifica,boolean prettyPrint) throws SerializerException {
  642.         this.objToXml(fileName, AccordoServizioParteSpecifica.class, accordoServizioParteSpecifica, prettyPrint);
  643.     }
  644.    
  645.     /**
  646.      * Serialize to file system in <var>file</var> the object <var>accordoServizioParteSpecifica</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  647.      *
  648.      * @param file Xml file to serialize the object <var>accordoServizioParteSpecifica</var>
  649.      * @param accordoServizioParteSpecifica Object to be serialized in xml file <var>fileName</var>
  650.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  651.      */
  652.     public void write(File file,AccordoServizioParteSpecifica accordoServizioParteSpecifica) throws SerializerException {
  653.         this.objToXml(file, AccordoServizioParteSpecifica.class, accordoServizioParteSpecifica, false);
  654.     }
  655.     /**
  656.      * Serialize to file system in <var>file</var> the object <var>accordoServizioParteSpecifica</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  657.      *
  658.      * @param file Xml file to serialize the object <var>accordoServizioParteSpecifica</var>
  659.      * @param accordoServizioParteSpecifica Object to be serialized in xml file <var>fileName</var>
  660.      * @param prettyPrint if true output the XML with indenting
  661.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  662.      */
  663.     public void write(File file,AccordoServizioParteSpecifica accordoServizioParteSpecifica,boolean prettyPrint) throws SerializerException {
  664.         this.objToXml(file, AccordoServizioParteSpecifica.class, accordoServizioParteSpecifica, prettyPrint);
  665.     }
  666.    
  667.     /**
  668.      * Serialize to output stream <var>out</var> the object <var>accordoServizioParteSpecifica</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  669.      *
  670.      * @param out OutputStream to serialize the object <var>accordoServizioParteSpecifica</var>
  671.      * @param accordoServizioParteSpecifica Object to be serialized in xml file <var>fileName</var>
  672.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  673.      */
  674.     public void write(OutputStream out,AccordoServizioParteSpecifica accordoServizioParteSpecifica) throws SerializerException {
  675.         this.objToXml(out, AccordoServizioParteSpecifica.class, accordoServizioParteSpecifica, false);
  676.     }
  677.     /**
  678.      * Serialize to output stream <var>out</var> the object <var>accordoServizioParteSpecifica</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  679.      *
  680.      * @param out OutputStream to serialize the object <var>accordoServizioParteSpecifica</var>
  681.      * @param accordoServizioParteSpecifica Object to be serialized in xml file <var>fileName</var>
  682.      * @param prettyPrint if true output the XML with indenting
  683.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  684.      */
  685.     public void write(OutputStream out,AccordoServizioParteSpecifica accordoServizioParteSpecifica,boolean prettyPrint) throws SerializerException {
  686.         this.objToXml(out, AccordoServizioParteSpecifica.class, accordoServizioParteSpecifica, prettyPrint);
  687.     }
  688.            
  689.     /**
  690.      * Serialize to byte array the object <var>accordoServizioParteSpecifica</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  691.      *
  692.      * @param accordoServizioParteSpecifica Object to be serialized
  693.      * @return Object to be serialized in byte array
  694.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  695.      */
  696.     public byte[] toByteArray(AccordoServizioParteSpecifica accordoServizioParteSpecifica) throws SerializerException {
  697.         return this.objToXml(AccordoServizioParteSpecifica.class, accordoServizioParteSpecifica, false).toByteArray();
  698.     }
  699.     /**
  700.      * Serialize to byte array the object <var>accordoServizioParteSpecifica</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  701.      *
  702.      * @param accordoServizioParteSpecifica Object to be serialized
  703.      * @param prettyPrint if true output the XML with indenting
  704.      * @return Object to be serialized in byte array
  705.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  706.      */
  707.     public byte[] toByteArray(AccordoServizioParteSpecifica accordoServizioParteSpecifica,boolean prettyPrint) throws SerializerException {
  708.         return this.objToXml(AccordoServizioParteSpecifica.class, accordoServizioParteSpecifica, prettyPrint).toByteArray();
  709.     }
  710.    
  711.     /**
  712.      * Serialize to String the object <var>accordoServizioParteSpecifica</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  713.      *
  714.      * @param accordoServizioParteSpecifica Object to be serialized
  715.      * @return Object to be serialized as String
  716.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  717.      */
  718.     public String toString(AccordoServizioParteSpecifica accordoServizioParteSpecifica) throws SerializerException {
  719.         return this.objToXml(AccordoServizioParteSpecifica.class, accordoServizioParteSpecifica, false).toString();
  720.     }
  721.     /**
  722.      * Serialize to String the object <var>accordoServizioParteSpecifica</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteSpecifica}
  723.      *
  724.      * @param accordoServizioParteSpecifica Object to be serialized
  725.      * @param prettyPrint if true output the XML with indenting
  726.      * @return Object to be serialized as String
  727.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  728.      */
  729.     public String toString(AccordoServizioParteSpecifica accordoServizioParteSpecifica,boolean prettyPrint) throws SerializerException {
  730.         return this.objToXml(AccordoServizioParteSpecifica.class, accordoServizioParteSpecifica, prettyPrint).toString();
  731.     }
  732.    
  733.    
  734.    
  735.     /*
  736.      =================================================================================
  737.      Object: SpecificaPortiAccesso
  738.      =================================================================================
  739.     */
  740.    
  741.     /**
  742.      * Serialize to file system in <var>fileName</var> the object <var>specificaPortiAccesso</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  743.      *
  744.      * @param fileName Xml file to serialize the object <var>specificaPortiAccesso</var>
  745.      * @param specificaPortiAccesso Object to be serialized in xml file <var>fileName</var>
  746.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  747.      */
  748.     public void write(String fileName,SpecificaPortiAccesso specificaPortiAccesso) throws SerializerException {
  749.         this.objToXml(fileName, SpecificaPortiAccesso.class, specificaPortiAccesso, false);
  750.     }
  751.     /**
  752.      * Serialize to file system in <var>fileName</var> the object <var>specificaPortiAccesso</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  753.      *
  754.      * @param fileName Xml file to serialize the object <var>specificaPortiAccesso</var>
  755.      * @param specificaPortiAccesso Object to be serialized in xml file <var>fileName</var>
  756.      * @param prettyPrint if true output the XML with indenting
  757.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  758.      */
  759.     public void write(String fileName,SpecificaPortiAccesso specificaPortiAccesso,boolean prettyPrint) throws SerializerException {
  760.         this.objToXml(fileName, SpecificaPortiAccesso.class, specificaPortiAccesso, prettyPrint);
  761.     }
  762.    
  763.     /**
  764.      * Serialize to file system in <var>file</var> the object <var>specificaPortiAccesso</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  765.      *
  766.      * @param file Xml file to serialize the object <var>specificaPortiAccesso</var>
  767.      * @param specificaPortiAccesso Object to be serialized in xml file <var>fileName</var>
  768.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  769.      */
  770.     public void write(File file,SpecificaPortiAccesso specificaPortiAccesso) throws SerializerException {
  771.         this.objToXml(file, SpecificaPortiAccesso.class, specificaPortiAccesso, false);
  772.     }
  773.     /**
  774.      * Serialize to file system in <var>file</var> the object <var>specificaPortiAccesso</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  775.      *
  776.      * @param file Xml file to serialize the object <var>specificaPortiAccesso</var>
  777.      * @param specificaPortiAccesso Object to be serialized in xml file <var>fileName</var>
  778.      * @param prettyPrint if true output the XML with indenting
  779.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  780.      */
  781.     public void write(File file,SpecificaPortiAccesso specificaPortiAccesso,boolean prettyPrint) throws SerializerException {
  782.         this.objToXml(file, SpecificaPortiAccesso.class, specificaPortiAccesso, prettyPrint);
  783.     }
  784.    
  785.     /**
  786.      * Serialize to output stream <var>out</var> the object <var>specificaPortiAccesso</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  787.      *
  788.      * @param out OutputStream to serialize the object <var>specificaPortiAccesso</var>
  789.      * @param specificaPortiAccesso Object to be serialized in xml file <var>fileName</var>
  790.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  791.      */
  792.     public void write(OutputStream out,SpecificaPortiAccesso specificaPortiAccesso) throws SerializerException {
  793.         this.objToXml(out, SpecificaPortiAccesso.class, specificaPortiAccesso, false);
  794.     }
  795.     /**
  796.      * Serialize to output stream <var>out</var> the object <var>specificaPortiAccesso</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  797.      *
  798.      * @param out OutputStream to serialize the object <var>specificaPortiAccesso</var>
  799.      * @param specificaPortiAccesso Object to be serialized in xml file <var>fileName</var>
  800.      * @param prettyPrint if true output the XML with indenting
  801.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  802.      */
  803.     public void write(OutputStream out,SpecificaPortiAccesso specificaPortiAccesso,boolean prettyPrint) throws SerializerException {
  804.         this.objToXml(out, SpecificaPortiAccesso.class, specificaPortiAccesso, prettyPrint);
  805.     }
  806.            
  807.     /**
  808.      * Serialize to byte array the object <var>specificaPortiAccesso</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  809.      *
  810.      * @param specificaPortiAccesso Object to be serialized
  811.      * @return Object to be serialized in byte array
  812.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  813.      */
  814.     public byte[] toByteArray(SpecificaPortiAccesso specificaPortiAccesso) throws SerializerException {
  815.         return this.objToXml(SpecificaPortiAccesso.class, specificaPortiAccesso, false).toByteArray();
  816.     }
  817.     /**
  818.      * Serialize to byte array the object <var>specificaPortiAccesso</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  819.      *
  820.      * @param specificaPortiAccesso Object to be serialized
  821.      * @param prettyPrint if true output the XML with indenting
  822.      * @return Object to be serialized in byte array
  823.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  824.      */
  825.     public byte[] toByteArray(SpecificaPortiAccesso specificaPortiAccesso,boolean prettyPrint) throws SerializerException {
  826.         return this.objToXml(SpecificaPortiAccesso.class, specificaPortiAccesso, prettyPrint).toByteArray();
  827.     }
  828.    
  829.     /**
  830.      * Serialize to String the object <var>specificaPortiAccesso</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  831.      *
  832.      * @param specificaPortiAccesso Object to be serialized
  833.      * @return Object to be serialized as String
  834.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  835.      */
  836.     public String toString(SpecificaPortiAccesso specificaPortiAccesso) throws SerializerException {
  837.         return this.objToXml(SpecificaPortiAccesso.class, specificaPortiAccesso, false).toString();
  838.     }
  839.     /**
  840.      * Serialize to String the object <var>specificaPortiAccesso</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaPortiAccesso}
  841.      *
  842.      * @param specificaPortiAccesso Object to be serialized
  843.      * @param prettyPrint if true output the XML with indenting
  844.      * @return Object to be serialized as String
  845.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  846.      */
  847.     public String toString(SpecificaPortiAccesso specificaPortiAccesso,boolean prettyPrint) throws SerializerException {
  848.         return this.objToXml(SpecificaPortiAccesso.class, specificaPortiAccesso, prettyPrint).toString();
  849.     }
  850.    
  851.    
  852.    
  853.     /*
  854.      =================================================================================
  855.      Object: SpecificaSicurezza
  856.      =================================================================================
  857.     */
  858.    
  859.     /**
  860.      * Serialize to file system in <var>fileName</var> the object <var>specificaSicurezza</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  861.      *
  862.      * @param fileName Xml file to serialize the object <var>specificaSicurezza</var>
  863.      * @param specificaSicurezza Object to be serialized in xml file <var>fileName</var>
  864.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  865.      */
  866.     public void write(String fileName,SpecificaSicurezza specificaSicurezza) throws SerializerException {
  867.         this.objToXml(fileName, SpecificaSicurezza.class, specificaSicurezza, false);
  868.     }
  869.     /**
  870.      * Serialize to file system in <var>fileName</var> the object <var>specificaSicurezza</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  871.      *
  872.      * @param fileName Xml file to serialize the object <var>specificaSicurezza</var>
  873.      * @param specificaSicurezza Object to be serialized in xml file <var>fileName</var>
  874.      * @param prettyPrint if true output the XML with indenting
  875.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  876.      */
  877.     public void write(String fileName,SpecificaSicurezza specificaSicurezza,boolean prettyPrint) throws SerializerException {
  878.         this.objToXml(fileName, SpecificaSicurezza.class, specificaSicurezza, prettyPrint);
  879.     }
  880.    
  881.     /**
  882.      * Serialize to file system in <var>file</var> the object <var>specificaSicurezza</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  883.      *
  884.      * @param file Xml file to serialize the object <var>specificaSicurezza</var>
  885.      * @param specificaSicurezza Object to be serialized in xml file <var>fileName</var>
  886.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  887.      */
  888.     public void write(File file,SpecificaSicurezza specificaSicurezza) throws SerializerException {
  889.         this.objToXml(file, SpecificaSicurezza.class, specificaSicurezza, false);
  890.     }
  891.     /**
  892.      * Serialize to file system in <var>file</var> the object <var>specificaSicurezza</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  893.      *
  894.      * @param file Xml file to serialize the object <var>specificaSicurezza</var>
  895.      * @param specificaSicurezza Object to be serialized in xml file <var>fileName</var>
  896.      * @param prettyPrint if true output the XML with indenting
  897.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  898.      */
  899.     public void write(File file,SpecificaSicurezza specificaSicurezza,boolean prettyPrint) throws SerializerException {
  900.         this.objToXml(file, SpecificaSicurezza.class, specificaSicurezza, prettyPrint);
  901.     }
  902.    
  903.     /**
  904.      * Serialize to output stream <var>out</var> the object <var>specificaSicurezza</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  905.      *
  906.      * @param out OutputStream to serialize the object <var>specificaSicurezza</var>
  907.      * @param specificaSicurezza Object to be serialized in xml file <var>fileName</var>
  908.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  909.      */
  910.     public void write(OutputStream out,SpecificaSicurezza specificaSicurezza) throws SerializerException {
  911.         this.objToXml(out, SpecificaSicurezza.class, specificaSicurezza, false);
  912.     }
  913.     /**
  914.      * Serialize to output stream <var>out</var> the object <var>specificaSicurezza</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  915.      *
  916.      * @param out OutputStream to serialize the object <var>specificaSicurezza</var>
  917.      * @param specificaSicurezza Object to be serialized in xml file <var>fileName</var>
  918.      * @param prettyPrint if true output the XML with indenting
  919.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  920.      */
  921.     public void write(OutputStream out,SpecificaSicurezza specificaSicurezza,boolean prettyPrint) throws SerializerException {
  922.         this.objToXml(out, SpecificaSicurezza.class, specificaSicurezza, prettyPrint);
  923.     }
  924.            
  925.     /**
  926.      * Serialize to byte array the object <var>specificaSicurezza</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  927.      *
  928.      * @param specificaSicurezza Object to be serialized
  929.      * @return Object to be serialized in byte array
  930.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  931.      */
  932.     public byte[] toByteArray(SpecificaSicurezza specificaSicurezza) throws SerializerException {
  933.         return this.objToXml(SpecificaSicurezza.class, specificaSicurezza, false).toByteArray();
  934.     }
  935.     /**
  936.      * Serialize to byte array the object <var>specificaSicurezza</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  937.      *
  938.      * @param specificaSicurezza Object to be serialized
  939.      * @param prettyPrint if true output the XML with indenting
  940.      * @return Object to be serialized in byte array
  941.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  942.      */
  943.     public byte[] toByteArray(SpecificaSicurezza specificaSicurezza,boolean prettyPrint) throws SerializerException {
  944.         return this.objToXml(SpecificaSicurezza.class, specificaSicurezza, prettyPrint).toByteArray();
  945.     }
  946.    
  947.     /**
  948.      * Serialize to String the object <var>specificaSicurezza</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  949.      *
  950.      * @param specificaSicurezza Object to be serialized
  951.      * @return Object to be serialized as String
  952.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  953.      */
  954.     public String toString(SpecificaSicurezza specificaSicurezza) throws SerializerException {
  955.         return this.objToXml(SpecificaSicurezza.class, specificaSicurezza, false).toString();
  956.     }
  957.     /**
  958.      * Serialize to String the object <var>specificaSicurezza</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaSicurezza}
  959.      *
  960.      * @param specificaSicurezza Object to be serialized
  961.      * @param prettyPrint if true output the XML with indenting
  962.      * @return Object to be serialized as String
  963.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  964.      */
  965.     public String toString(SpecificaSicurezza specificaSicurezza,boolean prettyPrint) throws SerializerException {
  966.         return this.objToXml(SpecificaSicurezza.class, specificaSicurezza, prettyPrint).toString();
  967.     }
  968.    
  969.    
  970.    
  971.     /*
  972.      =================================================================================
  973.      Object: SpecificaLivelliServizio
  974.      =================================================================================
  975.     */
  976.    
  977.     /**
  978.      * Serialize to file system in <var>fileName</var> the object <var>specificaLivelliServizio</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  979.      *
  980.      * @param fileName Xml file to serialize the object <var>specificaLivelliServizio</var>
  981.      * @param specificaLivelliServizio Object to be serialized in xml file <var>fileName</var>
  982.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  983.      */
  984.     public void write(String fileName,SpecificaLivelliServizio specificaLivelliServizio) throws SerializerException {
  985.         this.objToXml(fileName, SpecificaLivelliServizio.class, specificaLivelliServizio, false);
  986.     }
  987.     /**
  988.      * Serialize to file system in <var>fileName</var> the object <var>specificaLivelliServizio</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  989.      *
  990.      * @param fileName Xml file to serialize the object <var>specificaLivelliServizio</var>
  991.      * @param specificaLivelliServizio Object to be serialized in xml file <var>fileName</var>
  992.      * @param prettyPrint if true output the XML with indenting
  993.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  994.      */
  995.     public void write(String fileName,SpecificaLivelliServizio specificaLivelliServizio,boolean prettyPrint) throws SerializerException {
  996.         this.objToXml(fileName, SpecificaLivelliServizio.class, specificaLivelliServizio, prettyPrint);
  997.     }
  998.    
  999.     /**
  1000.      * Serialize to file system in <var>file</var> the object <var>specificaLivelliServizio</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  1001.      *
  1002.      * @param file Xml file to serialize the object <var>specificaLivelliServizio</var>
  1003.      * @param specificaLivelliServizio Object to be serialized in xml file <var>fileName</var>
  1004.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1005.      */
  1006.     public void write(File file,SpecificaLivelliServizio specificaLivelliServizio) throws SerializerException {
  1007.         this.objToXml(file, SpecificaLivelliServizio.class, specificaLivelliServizio, false);
  1008.     }
  1009.     /**
  1010.      * Serialize to file system in <var>file</var> the object <var>specificaLivelliServizio</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  1011.      *
  1012.      * @param file Xml file to serialize the object <var>specificaLivelliServizio</var>
  1013.      * @param specificaLivelliServizio Object to be serialized in xml file <var>fileName</var>
  1014.      * @param prettyPrint if true output the XML with indenting
  1015.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1016.      */
  1017.     public void write(File file,SpecificaLivelliServizio specificaLivelliServizio,boolean prettyPrint) throws SerializerException {
  1018.         this.objToXml(file, SpecificaLivelliServizio.class, specificaLivelliServizio, prettyPrint);
  1019.     }
  1020.    
  1021.     /**
  1022.      * Serialize to output stream <var>out</var> the object <var>specificaLivelliServizio</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  1023.      *
  1024.      * @param out OutputStream to serialize the object <var>specificaLivelliServizio</var>
  1025.      * @param specificaLivelliServizio Object to be serialized in xml file <var>fileName</var>
  1026.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1027.      */
  1028.     public void write(OutputStream out,SpecificaLivelliServizio specificaLivelliServizio) throws SerializerException {
  1029.         this.objToXml(out, SpecificaLivelliServizio.class, specificaLivelliServizio, false);
  1030.     }
  1031.     /**
  1032.      * Serialize to output stream <var>out</var> the object <var>specificaLivelliServizio</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  1033.      *
  1034.      * @param out OutputStream to serialize the object <var>specificaLivelliServizio</var>
  1035.      * @param specificaLivelliServizio Object to be serialized in xml file <var>fileName</var>
  1036.      * @param prettyPrint if true output the XML with indenting
  1037.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1038.      */
  1039.     public void write(OutputStream out,SpecificaLivelliServizio specificaLivelliServizio,boolean prettyPrint) throws SerializerException {
  1040.         this.objToXml(out, SpecificaLivelliServizio.class, specificaLivelliServizio, prettyPrint);
  1041.     }
  1042.            
  1043.     /**
  1044.      * Serialize to byte array the object <var>specificaLivelliServizio</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  1045.      *
  1046.      * @param specificaLivelliServizio Object to be serialized
  1047.      * @return Object to be serialized in byte array
  1048.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1049.      */
  1050.     public byte[] toByteArray(SpecificaLivelliServizio specificaLivelliServizio) throws SerializerException {
  1051.         return this.objToXml(SpecificaLivelliServizio.class, specificaLivelliServizio, false).toByteArray();
  1052.     }
  1053.     /**
  1054.      * Serialize to byte array the object <var>specificaLivelliServizio</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  1055.      *
  1056.      * @param specificaLivelliServizio Object to be serialized
  1057.      * @param prettyPrint if true output the XML with indenting
  1058.      * @return Object to be serialized in byte array
  1059.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1060.      */
  1061.     public byte[] toByteArray(SpecificaLivelliServizio specificaLivelliServizio,boolean prettyPrint) throws SerializerException {
  1062.         return this.objToXml(SpecificaLivelliServizio.class, specificaLivelliServizio, prettyPrint).toByteArray();
  1063.     }
  1064.    
  1065.     /**
  1066.      * Serialize to String the object <var>specificaLivelliServizio</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  1067.      *
  1068.      * @param specificaLivelliServizio Object to be serialized
  1069.      * @return Object to be serialized as String
  1070.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1071.      */
  1072.     public String toString(SpecificaLivelliServizio specificaLivelliServizio) throws SerializerException {
  1073.         return this.objToXml(SpecificaLivelliServizio.class, specificaLivelliServizio, false).toString();
  1074.     }
  1075.     /**
  1076.      * Serialize to String the object <var>specificaLivelliServizio</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaLivelliServizio}
  1077.      *
  1078.      * @param specificaLivelliServizio Object to be serialized
  1079.      * @param prettyPrint if true output the XML with indenting
  1080.      * @return Object to be serialized as String
  1081.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1082.      */
  1083.     public String toString(SpecificaLivelliServizio specificaLivelliServizio,boolean prettyPrint) throws SerializerException {
  1084.         return this.objToXml(SpecificaLivelliServizio.class, specificaLivelliServizio, prettyPrint).toString();
  1085.     }
  1086.    
  1087.    
  1088.    
  1089.     /*
  1090.      =================================================================================
  1091.      Object: SpecificaInterfaccia
  1092.      =================================================================================
  1093.     */
  1094.    
  1095.     /**
  1096.      * Serialize to file system in <var>fileName</var> the object <var>specificaInterfaccia</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  1097.      *
  1098.      * @param fileName Xml file to serialize the object <var>specificaInterfaccia</var>
  1099.      * @param specificaInterfaccia Object to be serialized in xml file <var>fileName</var>
  1100.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1101.      */
  1102.     public void write(String fileName,SpecificaInterfaccia specificaInterfaccia) throws SerializerException {
  1103.         this.objToXml(fileName, SpecificaInterfaccia.class, specificaInterfaccia, false);
  1104.     }
  1105.     /**
  1106.      * Serialize to file system in <var>fileName</var> the object <var>specificaInterfaccia</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  1107.      *
  1108.      * @param fileName Xml file to serialize the object <var>specificaInterfaccia</var>
  1109.      * @param specificaInterfaccia Object to be serialized in xml file <var>fileName</var>
  1110.      * @param prettyPrint if true output the XML with indenting
  1111.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1112.      */
  1113.     public void write(String fileName,SpecificaInterfaccia specificaInterfaccia,boolean prettyPrint) throws SerializerException {
  1114.         this.objToXml(fileName, SpecificaInterfaccia.class, specificaInterfaccia, prettyPrint);
  1115.     }
  1116.    
  1117.     /**
  1118.      * Serialize to file system in <var>file</var> the object <var>specificaInterfaccia</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  1119.      *
  1120.      * @param file Xml file to serialize the object <var>specificaInterfaccia</var>
  1121.      * @param specificaInterfaccia Object to be serialized in xml file <var>fileName</var>
  1122.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1123.      */
  1124.     public void write(File file,SpecificaInterfaccia specificaInterfaccia) throws SerializerException {
  1125.         this.objToXml(file, SpecificaInterfaccia.class, specificaInterfaccia, false);
  1126.     }
  1127.     /**
  1128.      * Serialize to file system in <var>file</var> the object <var>specificaInterfaccia</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  1129.      *
  1130.      * @param file Xml file to serialize the object <var>specificaInterfaccia</var>
  1131.      * @param specificaInterfaccia Object to be serialized in xml file <var>fileName</var>
  1132.      * @param prettyPrint if true output the XML with indenting
  1133.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1134.      */
  1135.     public void write(File file,SpecificaInterfaccia specificaInterfaccia,boolean prettyPrint) throws SerializerException {
  1136.         this.objToXml(file, SpecificaInterfaccia.class, specificaInterfaccia, prettyPrint);
  1137.     }
  1138.    
  1139.     /**
  1140.      * Serialize to output stream <var>out</var> the object <var>specificaInterfaccia</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  1141.      *
  1142.      * @param out OutputStream to serialize the object <var>specificaInterfaccia</var>
  1143.      * @param specificaInterfaccia Object to be serialized in xml file <var>fileName</var>
  1144.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1145.      */
  1146.     public void write(OutputStream out,SpecificaInterfaccia specificaInterfaccia) throws SerializerException {
  1147.         this.objToXml(out, SpecificaInterfaccia.class, specificaInterfaccia, false);
  1148.     }
  1149.     /**
  1150.      * Serialize to output stream <var>out</var> the object <var>specificaInterfaccia</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  1151.      *
  1152.      * @param out OutputStream to serialize the object <var>specificaInterfaccia</var>
  1153.      * @param specificaInterfaccia Object to be serialized in xml file <var>fileName</var>
  1154.      * @param prettyPrint if true output the XML with indenting
  1155.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1156.      */
  1157.     public void write(OutputStream out,SpecificaInterfaccia specificaInterfaccia,boolean prettyPrint) throws SerializerException {
  1158.         this.objToXml(out, SpecificaInterfaccia.class, specificaInterfaccia, prettyPrint);
  1159.     }
  1160.            
  1161.     /**
  1162.      * Serialize to byte array the object <var>specificaInterfaccia</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  1163.      *
  1164.      * @param specificaInterfaccia Object to be serialized
  1165.      * @return Object to be serialized in byte array
  1166.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1167.      */
  1168.     public byte[] toByteArray(SpecificaInterfaccia specificaInterfaccia) throws SerializerException {
  1169.         return this.objToXml(SpecificaInterfaccia.class, specificaInterfaccia, false).toByteArray();
  1170.     }
  1171.     /**
  1172.      * Serialize to byte array the object <var>specificaInterfaccia</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  1173.      *
  1174.      * @param specificaInterfaccia Object to be serialized
  1175.      * @param prettyPrint if true output the XML with indenting
  1176.      * @return Object to be serialized in byte array
  1177.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1178.      */
  1179.     public byte[] toByteArray(SpecificaInterfaccia specificaInterfaccia,boolean prettyPrint) throws SerializerException {
  1180.         return this.objToXml(SpecificaInterfaccia.class, specificaInterfaccia, prettyPrint).toByteArray();
  1181.     }
  1182.    
  1183.     /**
  1184.      * Serialize to String the object <var>specificaInterfaccia</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  1185.      *
  1186.      * @param specificaInterfaccia Object to be serialized
  1187.      * @return Object to be serialized as String
  1188.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1189.      */
  1190.     public String toString(SpecificaInterfaccia specificaInterfaccia) throws SerializerException {
  1191.         return this.objToXml(SpecificaInterfaccia.class, specificaInterfaccia, false).toString();
  1192.     }
  1193.     /**
  1194.      * Serialize to String the object <var>specificaInterfaccia</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaInterfaccia}
  1195.      *
  1196.      * @param specificaInterfaccia Object to be serialized
  1197.      * @param prettyPrint if true output the XML with indenting
  1198.      * @return Object to be serialized as String
  1199.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1200.      */
  1201.     public String toString(SpecificaInterfaccia specificaInterfaccia,boolean prettyPrint) throws SerializerException {
  1202.         return this.objToXml(SpecificaInterfaccia.class, specificaInterfaccia, prettyPrint).toString();
  1203.     }
  1204.    
  1205.    
  1206.    
  1207.     /*
  1208.      =================================================================================
  1209.      Object: accordoServizioParteComune
  1210.      =================================================================================
  1211.     */
  1212.    
  1213.     /**
  1214.      * Serialize to file system in <var>fileName</var> the object <var>accordoServizioParteComune</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  1215.      *
  1216.      * @param fileName Xml file to serialize the object <var>accordoServizioParteComune</var>
  1217.      * @param accordoServizioParteComune Object to be serialized in xml file <var>fileName</var>
  1218.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1219.      */
  1220.     public void write(String fileName,AccordoServizioParteComune accordoServizioParteComune) throws SerializerException {
  1221.         this.objToXml(fileName, AccordoServizioParteComune.class, accordoServizioParteComune, false);
  1222.     }
  1223.     /**
  1224.      * Serialize to file system in <var>fileName</var> the object <var>accordoServizioParteComune</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  1225.      *
  1226.      * @param fileName Xml file to serialize the object <var>accordoServizioParteComune</var>
  1227.      * @param accordoServizioParteComune Object to be serialized in xml file <var>fileName</var>
  1228.      * @param prettyPrint if true output the XML with indenting
  1229.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1230.      */
  1231.     public void write(String fileName,AccordoServizioParteComune accordoServizioParteComune,boolean prettyPrint) throws SerializerException {
  1232.         this.objToXml(fileName, AccordoServizioParteComune.class, accordoServizioParteComune, prettyPrint);
  1233.     }
  1234.    
  1235.     /**
  1236.      * Serialize to file system in <var>file</var> the object <var>accordoServizioParteComune</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  1237.      *
  1238.      * @param file Xml file to serialize the object <var>accordoServizioParteComune</var>
  1239.      * @param accordoServizioParteComune Object to be serialized in xml file <var>fileName</var>
  1240.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1241.      */
  1242.     public void write(File file,AccordoServizioParteComune accordoServizioParteComune) throws SerializerException {
  1243.         this.objToXml(file, AccordoServizioParteComune.class, accordoServizioParteComune, false);
  1244.     }
  1245.     /**
  1246.      * Serialize to file system in <var>file</var> the object <var>accordoServizioParteComune</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  1247.      *
  1248.      * @param file Xml file to serialize the object <var>accordoServizioParteComune</var>
  1249.      * @param accordoServizioParteComune Object to be serialized in xml file <var>fileName</var>
  1250.      * @param prettyPrint if true output the XML with indenting
  1251.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1252.      */
  1253.     public void write(File file,AccordoServizioParteComune accordoServizioParteComune,boolean prettyPrint) throws SerializerException {
  1254.         this.objToXml(file, AccordoServizioParteComune.class, accordoServizioParteComune, prettyPrint);
  1255.     }
  1256.    
  1257.     /**
  1258.      * Serialize to output stream <var>out</var> the object <var>accordoServizioParteComune</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  1259.      *
  1260.      * @param out OutputStream to serialize the object <var>accordoServizioParteComune</var>
  1261.      * @param accordoServizioParteComune Object to be serialized in xml file <var>fileName</var>
  1262.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1263.      */
  1264.     public void write(OutputStream out,AccordoServizioParteComune accordoServizioParteComune) throws SerializerException {
  1265.         this.objToXml(out, AccordoServizioParteComune.class, accordoServizioParteComune, false);
  1266.     }
  1267.     /**
  1268.      * Serialize to output stream <var>out</var> the object <var>accordoServizioParteComune</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  1269.      *
  1270.      * @param out OutputStream to serialize the object <var>accordoServizioParteComune</var>
  1271.      * @param accordoServizioParteComune Object to be serialized in xml file <var>fileName</var>
  1272.      * @param prettyPrint if true output the XML with indenting
  1273.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1274.      */
  1275.     public void write(OutputStream out,AccordoServizioParteComune accordoServizioParteComune,boolean prettyPrint) throws SerializerException {
  1276.         this.objToXml(out, AccordoServizioParteComune.class, accordoServizioParteComune, prettyPrint);
  1277.     }
  1278.            
  1279.     /**
  1280.      * Serialize to byte array the object <var>accordoServizioParteComune</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  1281.      *
  1282.      * @param accordoServizioParteComune Object to be serialized
  1283.      * @return Object to be serialized in byte array
  1284.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1285.      */
  1286.     public byte[] toByteArray(AccordoServizioParteComune accordoServizioParteComune) throws SerializerException {
  1287.         return this.objToXml(AccordoServizioParteComune.class, accordoServizioParteComune, false).toByteArray();
  1288.     }
  1289.     /**
  1290.      * Serialize to byte array the object <var>accordoServizioParteComune</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  1291.      *
  1292.      * @param accordoServizioParteComune Object to be serialized
  1293.      * @param prettyPrint if true output the XML with indenting
  1294.      * @return Object to be serialized in byte array
  1295.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1296.      */
  1297.     public byte[] toByteArray(AccordoServizioParteComune accordoServizioParteComune,boolean prettyPrint) throws SerializerException {
  1298.         return this.objToXml(AccordoServizioParteComune.class, accordoServizioParteComune, prettyPrint).toByteArray();
  1299.     }
  1300.    
  1301.     /**
  1302.      * Serialize to String the object <var>accordoServizioParteComune</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  1303.      *
  1304.      * @param accordoServizioParteComune Object to be serialized
  1305.      * @return Object to be serialized as String
  1306.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1307.      */
  1308.     public String toString(AccordoServizioParteComune accordoServizioParteComune) throws SerializerException {
  1309.         return this.objToXml(AccordoServizioParteComune.class, accordoServizioParteComune, false).toString();
  1310.     }
  1311.     /**
  1312.      * Serialize to String the object <var>accordoServizioParteComune</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizioParteComune}
  1313.      *
  1314.      * @param accordoServizioParteComune Object to be serialized
  1315.      * @param prettyPrint if true output the XML with indenting
  1316.      * @return Object to be serialized as String
  1317.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1318.      */
  1319.     public String toString(AccordoServizioParteComune accordoServizioParteComune,boolean prettyPrint) throws SerializerException {
  1320.         return this.objToXml(AccordoServizioParteComune.class, accordoServizioParteComune, prettyPrint).toString();
  1321.     }
  1322.    
  1323.    
  1324.    
  1325.     /*
  1326.      =================================================================================
  1327.      Object: SpecificaConversazione
  1328.      =================================================================================
  1329.     */
  1330.    
  1331.     /**
  1332.      * Serialize to file system in <var>fileName</var> the object <var>specificaConversazione</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  1333.      *
  1334.      * @param fileName Xml file to serialize the object <var>specificaConversazione</var>
  1335.      * @param specificaConversazione Object to be serialized in xml file <var>fileName</var>
  1336.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1337.      */
  1338.     public void write(String fileName,SpecificaConversazione specificaConversazione) throws SerializerException {
  1339.         this.objToXml(fileName, SpecificaConversazione.class, specificaConversazione, false);
  1340.     }
  1341.     /**
  1342.      * Serialize to file system in <var>fileName</var> the object <var>specificaConversazione</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  1343.      *
  1344.      * @param fileName Xml file to serialize the object <var>specificaConversazione</var>
  1345.      * @param specificaConversazione Object to be serialized in xml file <var>fileName</var>
  1346.      * @param prettyPrint if true output the XML with indenting
  1347.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1348.      */
  1349.     public void write(String fileName,SpecificaConversazione specificaConversazione,boolean prettyPrint) throws SerializerException {
  1350.         this.objToXml(fileName, SpecificaConversazione.class, specificaConversazione, prettyPrint);
  1351.     }
  1352.    
  1353.     /**
  1354.      * Serialize to file system in <var>file</var> the object <var>specificaConversazione</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  1355.      *
  1356.      * @param file Xml file to serialize the object <var>specificaConversazione</var>
  1357.      * @param specificaConversazione Object to be serialized in xml file <var>fileName</var>
  1358.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1359.      */
  1360.     public void write(File file,SpecificaConversazione specificaConversazione) throws SerializerException {
  1361.         this.objToXml(file, SpecificaConversazione.class, specificaConversazione, false);
  1362.     }
  1363.     /**
  1364.      * Serialize to file system in <var>file</var> the object <var>specificaConversazione</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  1365.      *
  1366.      * @param file Xml file to serialize the object <var>specificaConversazione</var>
  1367.      * @param specificaConversazione Object to be serialized in xml file <var>fileName</var>
  1368.      * @param prettyPrint if true output the XML with indenting
  1369.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1370.      */
  1371.     public void write(File file,SpecificaConversazione specificaConversazione,boolean prettyPrint) throws SerializerException {
  1372.         this.objToXml(file, SpecificaConversazione.class, specificaConversazione, prettyPrint);
  1373.     }
  1374.    
  1375.     /**
  1376.      * Serialize to output stream <var>out</var> the object <var>specificaConversazione</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  1377.      *
  1378.      * @param out OutputStream to serialize the object <var>specificaConversazione</var>
  1379.      * @param specificaConversazione Object to be serialized in xml file <var>fileName</var>
  1380.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1381.      */
  1382.     public void write(OutputStream out,SpecificaConversazione specificaConversazione) throws SerializerException {
  1383.         this.objToXml(out, SpecificaConversazione.class, specificaConversazione, false);
  1384.     }
  1385.     /**
  1386.      * Serialize to output stream <var>out</var> the object <var>specificaConversazione</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  1387.      *
  1388.      * @param out OutputStream to serialize the object <var>specificaConversazione</var>
  1389.      * @param specificaConversazione Object to be serialized in xml file <var>fileName</var>
  1390.      * @param prettyPrint if true output the XML with indenting
  1391.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1392.      */
  1393.     public void write(OutputStream out,SpecificaConversazione specificaConversazione,boolean prettyPrint) throws SerializerException {
  1394.         this.objToXml(out, SpecificaConversazione.class, specificaConversazione, prettyPrint);
  1395.     }
  1396.            
  1397.     /**
  1398.      * Serialize to byte array the object <var>specificaConversazione</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  1399.      *
  1400.      * @param specificaConversazione Object to be serialized
  1401.      * @return Object to be serialized in byte array
  1402.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1403.      */
  1404.     public byte[] toByteArray(SpecificaConversazione specificaConversazione) throws SerializerException {
  1405.         return this.objToXml(SpecificaConversazione.class, specificaConversazione, false).toByteArray();
  1406.     }
  1407.     /**
  1408.      * Serialize to byte array the object <var>specificaConversazione</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  1409.      *
  1410.      * @param specificaConversazione Object to be serialized
  1411.      * @param prettyPrint if true output the XML with indenting
  1412.      * @return Object to be serialized in byte array
  1413.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1414.      */
  1415.     public byte[] toByteArray(SpecificaConversazione specificaConversazione,boolean prettyPrint) throws SerializerException {
  1416.         return this.objToXml(SpecificaConversazione.class, specificaConversazione, prettyPrint).toByteArray();
  1417.     }
  1418.    
  1419.     /**
  1420.      * Serialize to String the object <var>specificaConversazione</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  1421.      *
  1422.      * @param specificaConversazione Object to be serialized
  1423.      * @return Object to be serialized as String
  1424.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1425.      */
  1426.     public String toString(SpecificaConversazione specificaConversazione) throws SerializerException {
  1427.         return this.objToXml(SpecificaConversazione.class, specificaConversazione, false).toString();
  1428.     }
  1429.     /**
  1430.      * Serialize to String the object <var>specificaConversazione</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaConversazione}
  1431.      *
  1432.      * @param specificaConversazione Object to be serialized
  1433.      * @param prettyPrint if true output the XML with indenting
  1434.      * @return Object to be serialized as String
  1435.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1436.      */
  1437.     public String toString(SpecificaConversazione specificaConversazione,boolean prettyPrint) throws SerializerException {
  1438.         return this.objToXml(SpecificaConversazione.class, specificaConversazione, prettyPrint).toString();
  1439.     }
  1440.    
  1441.    
  1442.    
  1443.     /*
  1444.      =================================================================================
  1445.      Object: DocumentoConversazione
  1446.      =================================================================================
  1447.     */
  1448.    
  1449.     /**
  1450.      * Serialize to file system in <var>fileName</var> the object <var>documentoConversazione</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  1451.      *
  1452.      * @param fileName Xml file to serialize the object <var>documentoConversazione</var>
  1453.      * @param documentoConversazione Object to be serialized in xml file <var>fileName</var>
  1454.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1455.      */
  1456.     public void write(String fileName,DocumentoConversazione documentoConversazione) throws SerializerException {
  1457.         this.objToXml(fileName, DocumentoConversazione.class, documentoConversazione, false);
  1458.     }
  1459.     /**
  1460.      * Serialize to file system in <var>fileName</var> the object <var>documentoConversazione</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  1461.      *
  1462.      * @param fileName Xml file to serialize the object <var>documentoConversazione</var>
  1463.      * @param documentoConversazione Object to be serialized in xml file <var>fileName</var>
  1464.      * @param prettyPrint if true output the XML with indenting
  1465.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1466.      */
  1467.     public void write(String fileName,DocumentoConversazione documentoConversazione,boolean prettyPrint) throws SerializerException {
  1468.         this.objToXml(fileName, DocumentoConversazione.class, documentoConversazione, prettyPrint);
  1469.     }
  1470.    
  1471.     /**
  1472.      * Serialize to file system in <var>file</var> the object <var>documentoConversazione</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  1473.      *
  1474.      * @param file Xml file to serialize the object <var>documentoConversazione</var>
  1475.      * @param documentoConversazione Object to be serialized in xml file <var>fileName</var>
  1476.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1477.      */
  1478.     public void write(File file,DocumentoConversazione documentoConversazione) throws SerializerException {
  1479.         this.objToXml(file, DocumentoConversazione.class, documentoConversazione, false);
  1480.     }
  1481.     /**
  1482.      * Serialize to file system in <var>file</var> the object <var>documentoConversazione</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  1483.      *
  1484.      * @param file Xml file to serialize the object <var>documentoConversazione</var>
  1485.      * @param documentoConversazione Object to be serialized in xml file <var>fileName</var>
  1486.      * @param prettyPrint if true output the XML with indenting
  1487.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1488.      */
  1489.     public void write(File file,DocumentoConversazione documentoConversazione,boolean prettyPrint) throws SerializerException {
  1490.         this.objToXml(file, DocumentoConversazione.class, documentoConversazione, prettyPrint);
  1491.     }
  1492.    
  1493.     /**
  1494.      * Serialize to output stream <var>out</var> the object <var>documentoConversazione</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  1495.      *
  1496.      * @param out OutputStream to serialize the object <var>documentoConversazione</var>
  1497.      * @param documentoConversazione Object to be serialized in xml file <var>fileName</var>
  1498.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1499.      */
  1500.     public void write(OutputStream out,DocumentoConversazione documentoConversazione) throws SerializerException {
  1501.         this.objToXml(out, DocumentoConversazione.class, documentoConversazione, false);
  1502.     }
  1503.     /**
  1504.      * Serialize to output stream <var>out</var> the object <var>documentoConversazione</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  1505.      *
  1506.      * @param out OutputStream to serialize the object <var>documentoConversazione</var>
  1507.      * @param documentoConversazione Object to be serialized in xml file <var>fileName</var>
  1508.      * @param prettyPrint if true output the XML with indenting
  1509.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1510.      */
  1511.     public void write(OutputStream out,DocumentoConversazione documentoConversazione,boolean prettyPrint) throws SerializerException {
  1512.         this.objToXml(out, DocumentoConversazione.class, documentoConversazione, prettyPrint);
  1513.     }
  1514.            
  1515.     /**
  1516.      * Serialize to byte array the object <var>documentoConversazione</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  1517.      *
  1518.      * @param documentoConversazione Object to be serialized
  1519.      * @return Object to be serialized in byte array
  1520.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1521.      */
  1522.     public byte[] toByteArray(DocumentoConversazione documentoConversazione) throws SerializerException {
  1523.         return this.objToXml(DocumentoConversazione.class, documentoConversazione, false).toByteArray();
  1524.     }
  1525.     /**
  1526.      * Serialize to byte array the object <var>documentoConversazione</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  1527.      *
  1528.      * @param documentoConversazione Object to be serialized
  1529.      * @param prettyPrint if true output the XML with indenting
  1530.      * @return Object to be serialized in byte array
  1531.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1532.      */
  1533.     public byte[] toByteArray(DocumentoConversazione documentoConversazione,boolean prettyPrint) throws SerializerException {
  1534.         return this.objToXml(DocumentoConversazione.class, documentoConversazione, prettyPrint).toByteArray();
  1535.     }
  1536.    
  1537.     /**
  1538.      * Serialize to String the object <var>documentoConversazione</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  1539.      *
  1540.      * @param documentoConversazione Object to be serialized
  1541.      * @return Object to be serialized as String
  1542.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1543.      */
  1544.     public String toString(DocumentoConversazione documentoConversazione) throws SerializerException {
  1545.         return this.objToXml(DocumentoConversazione.class, documentoConversazione, false).toString();
  1546.     }
  1547.     /**
  1548.      * Serialize to String the object <var>documentoConversazione</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoConversazione}
  1549.      *
  1550.      * @param documentoConversazione Object to be serialized
  1551.      * @param prettyPrint if true output the XML with indenting
  1552.      * @return Object to be serialized as String
  1553.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1554.      */
  1555.     public String toString(DocumentoConversazione documentoConversazione,boolean prettyPrint) throws SerializerException {
  1556.         return this.objToXml(DocumentoConversazione.class, documentoConversazione, prettyPrint).toString();
  1557.     }
  1558.    
  1559.    
  1560.    
  1561.     /*
  1562.      =================================================================================
  1563.      Object: DocumentoInterfaccia
  1564.      =================================================================================
  1565.     */
  1566.    
  1567.     /**
  1568.      * Serialize to file system in <var>fileName</var> the object <var>documentoInterfaccia</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  1569.      *
  1570.      * @param fileName Xml file to serialize the object <var>documentoInterfaccia</var>
  1571.      * @param documentoInterfaccia Object to be serialized in xml file <var>fileName</var>
  1572.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1573.      */
  1574.     public void write(String fileName,DocumentoInterfaccia documentoInterfaccia) throws SerializerException {
  1575.         this.objToXml(fileName, DocumentoInterfaccia.class, documentoInterfaccia, false);
  1576.     }
  1577.     /**
  1578.      * Serialize to file system in <var>fileName</var> the object <var>documentoInterfaccia</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  1579.      *
  1580.      * @param fileName Xml file to serialize the object <var>documentoInterfaccia</var>
  1581.      * @param documentoInterfaccia Object to be serialized in xml file <var>fileName</var>
  1582.      * @param prettyPrint if true output the XML with indenting
  1583.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1584.      */
  1585.     public void write(String fileName,DocumentoInterfaccia documentoInterfaccia,boolean prettyPrint) throws SerializerException {
  1586.         this.objToXml(fileName, DocumentoInterfaccia.class, documentoInterfaccia, prettyPrint);
  1587.     }
  1588.    
  1589.     /**
  1590.      * Serialize to file system in <var>file</var> the object <var>documentoInterfaccia</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  1591.      *
  1592.      * @param file Xml file to serialize the object <var>documentoInterfaccia</var>
  1593.      * @param documentoInterfaccia Object to be serialized in xml file <var>fileName</var>
  1594.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1595.      */
  1596.     public void write(File file,DocumentoInterfaccia documentoInterfaccia) throws SerializerException {
  1597.         this.objToXml(file, DocumentoInterfaccia.class, documentoInterfaccia, false);
  1598.     }
  1599.     /**
  1600.      * Serialize to file system in <var>file</var> the object <var>documentoInterfaccia</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  1601.      *
  1602.      * @param file Xml file to serialize the object <var>documentoInterfaccia</var>
  1603.      * @param documentoInterfaccia Object to be serialized in xml file <var>fileName</var>
  1604.      * @param prettyPrint if true output the XML with indenting
  1605.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1606.      */
  1607.     public void write(File file,DocumentoInterfaccia documentoInterfaccia,boolean prettyPrint) throws SerializerException {
  1608.         this.objToXml(file, DocumentoInterfaccia.class, documentoInterfaccia, prettyPrint);
  1609.     }
  1610.    
  1611.     /**
  1612.      * Serialize to output stream <var>out</var> the object <var>documentoInterfaccia</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  1613.      *
  1614.      * @param out OutputStream to serialize the object <var>documentoInterfaccia</var>
  1615.      * @param documentoInterfaccia Object to be serialized in xml file <var>fileName</var>
  1616.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1617.      */
  1618.     public void write(OutputStream out,DocumentoInterfaccia documentoInterfaccia) throws SerializerException {
  1619.         this.objToXml(out, DocumentoInterfaccia.class, documentoInterfaccia, false);
  1620.     }
  1621.     /**
  1622.      * Serialize to output stream <var>out</var> the object <var>documentoInterfaccia</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  1623.      *
  1624.      * @param out OutputStream to serialize the object <var>documentoInterfaccia</var>
  1625.      * @param documentoInterfaccia Object to be serialized in xml file <var>fileName</var>
  1626.      * @param prettyPrint if true output the XML with indenting
  1627.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1628.      */
  1629.     public void write(OutputStream out,DocumentoInterfaccia documentoInterfaccia,boolean prettyPrint) throws SerializerException {
  1630.         this.objToXml(out, DocumentoInterfaccia.class, documentoInterfaccia, prettyPrint);
  1631.     }
  1632.            
  1633.     /**
  1634.      * Serialize to byte array the object <var>documentoInterfaccia</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  1635.      *
  1636.      * @param documentoInterfaccia Object to be serialized
  1637.      * @return Object to be serialized in byte array
  1638.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1639.      */
  1640.     public byte[] toByteArray(DocumentoInterfaccia documentoInterfaccia) throws SerializerException {
  1641.         return this.objToXml(DocumentoInterfaccia.class, documentoInterfaccia, false).toByteArray();
  1642.     }
  1643.     /**
  1644.      * Serialize to byte array the object <var>documentoInterfaccia</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  1645.      *
  1646.      * @param documentoInterfaccia Object to be serialized
  1647.      * @param prettyPrint if true output the XML with indenting
  1648.      * @return Object to be serialized in byte array
  1649.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1650.      */
  1651.     public byte[] toByteArray(DocumentoInterfaccia documentoInterfaccia,boolean prettyPrint) throws SerializerException {
  1652.         return this.objToXml(DocumentoInterfaccia.class, documentoInterfaccia, prettyPrint).toByteArray();
  1653.     }
  1654.    
  1655.     /**
  1656.      * Serialize to String the object <var>documentoInterfaccia</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  1657.      *
  1658.      * @param documentoInterfaccia Object to be serialized
  1659.      * @return Object to be serialized as String
  1660.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1661.      */
  1662.     public String toString(DocumentoInterfaccia documentoInterfaccia) throws SerializerException {
  1663.         return this.objToXml(DocumentoInterfaccia.class, documentoInterfaccia, false).toString();
  1664.     }
  1665.     /**
  1666.      * Serialize to String the object <var>documentoInterfaccia</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoInterfaccia}
  1667.      *
  1668.      * @param documentoInterfaccia Object to be serialized
  1669.      * @param prettyPrint if true output the XML with indenting
  1670.      * @return Object to be serialized as String
  1671.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1672.      */
  1673.     public String toString(DocumentoInterfaccia documentoInterfaccia,boolean prettyPrint) throws SerializerException {
  1674.         return this.objToXml(DocumentoInterfaccia.class, documentoInterfaccia, prettyPrint).toString();
  1675.     }
  1676.    
  1677.    
  1678.    
  1679.     /*
  1680.      =================================================================================
  1681.      Object: ElencoPartecipanti
  1682.      =================================================================================
  1683.     */
  1684.    
  1685.     /**
  1686.      * Serialize to file system in <var>fileName</var> the object <var>elencoPartecipanti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  1687.      *
  1688.      * @param fileName Xml file to serialize the object <var>elencoPartecipanti</var>
  1689.      * @param elencoPartecipanti Object to be serialized in xml file <var>fileName</var>
  1690.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1691.      */
  1692.     public void write(String fileName,ElencoPartecipanti elencoPartecipanti) throws SerializerException {
  1693.         this.objToXml(fileName, ElencoPartecipanti.class, elencoPartecipanti, false);
  1694.     }
  1695.     /**
  1696.      * Serialize to file system in <var>fileName</var> the object <var>elencoPartecipanti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  1697.      *
  1698.      * @param fileName Xml file to serialize the object <var>elencoPartecipanti</var>
  1699.      * @param elencoPartecipanti Object to be serialized in xml file <var>fileName</var>
  1700.      * @param prettyPrint if true output the XML with indenting
  1701.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1702.      */
  1703.     public void write(String fileName,ElencoPartecipanti elencoPartecipanti,boolean prettyPrint) throws SerializerException {
  1704.         this.objToXml(fileName, ElencoPartecipanti.class, elencoPartecipanti, prettyPrint);
  1705.     }
  1706.    
  1707.     /**
  1708.      * Serialize to file system in <var>file</var> the object <var>elencoPartecipanti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  1709.      *
  1710.      * @param file Xml file to serialize the object <var>elencoPartecipanti</var>
  1711.      * @param elencoPartecipanti Object to be serialized in xml file <var>fileName</var>
  1712.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1713.      */
  1714.     public void write(File file,ElencoPartecipanti elencoPartecipanti) throws SerializerException {
  1715.         this.objToXml(file, ElencoPartecipanti.class, elencoPartecipanti, false);
  1716.     }
  1717.     /**
  1718.      * Serialize to file system in <var>file</var> the object <var>elencoPartecipanti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  1719.      *
  1720.      * @param file Xml file to serialize the object <var>elencoPartecipanti</var>
  1721.      * @param elencoPartecipanti Object to be serialized in xml file <var>fileName</var>
  1722.      * @param prettyPrint if true output the XML with indenting
  1723.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1724.      */
  1725.     public void write(File file,ElencoPartecipanti elencoPartecipanti,boolean prettyPrint) throws SerializerException {
  1726.         this.objToXml(file, ElencoPartecipanti.class, elencoPartecipanti, prettyPrint);
  1727.     }
  1728.    
  1729.     /**
  1730.      * Serialize to output stream <var>out</var> the object <var>elencoPartecipanti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  1731.      *
  1732.      * @param out OutputStream to serialize the object <var>elencoPartecipanti</var>
  1733.      * @param elencoPartecipanti Object to be serialized in xml file <var>fileName</var>
  1734.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1735.      */
  1736.     public void write(OutputStream out,ElencoPartecipanti elencoPartecipanti) throws SerializerException {
  1737.         this.objToXml(out, ElencoPartecipanti.class, elencoPartecipanti, false);
  1738.     }
  1739.     /**
  1740.      * Serialize to output stream <var>out</var> the object <var>elencoPartecipanti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  1741.      *
  1742.      * @param out OutputStream to serialize the object <var>elencoPartecipanti</var>
  1743.      * @param elencoPartecipanti Object to be serialized in xml file <var>fileName</var>
  1744.      * @param prettyPrint if true output the XML with indenting
  1745.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1746.      */
  1747.     public void write(OutputStream out,ElencoPartecipanti elencoPartecipanti,boolean prettyPrint) throws SerializerException {
  1748.         this.objToXml(out, ElencoPartecipanti.class, elencoPartecipanti, prettyPrint);
  1749.     }
  1750.            
  1751.     /**
  1752.      * Serialize to byte array the object <var>elencoPartecipanti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  1753.      *
  1754.      * @param elencoPartecipanti Object to be serialized
  1755.      * @return Object to be serialized in byte array
  1756.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1757.      */
  1758.     public byte[] toByteArray(ElencoPartecipanti elencoPartecipanti) throws SerializerException {
  1759.         return this.objToXml(ElencoPartecipanti.class, elencoPartecipanti, false).toByteArray();
  1760.     }
  1761.     /**
  1762.      * Serialize to byte array the object <var>elencoPartecipanti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  1763.      *
  1764.      * @param elencoPartecipanti Object to be serialized
  1765.      * @param prettyPrint if true output the XML with indenting
  1766.      * @return Object to be serialized in byte array
  1767.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1768.      */
  1769.     public byte[] toByteArray(ElencoPartecipanti elencoPartecipanti,boolean prettyPrint) throws SerializerException {
  1770.         return this.objToXml(ElencoPartecipanti.class, elencoPartecipanti, prettyPrint).toByteArray();
  1771.     }
  1772.    
  1773.     /**
  1774.      * Serialize to String the object <var>elencoPartecipanti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  1775.      *
  1776.      * @param elencoPartecipanti Object to be serialized
  1777.      * @return Object to be serialized as String
  1778.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1779.      */
  1780.     public String toString(ElencoPartecipanti elencoPartecipanti) throws SerializerException {
  1781.         return this.objToXml(ElencoPartecipanti.class, elencoPartecipanti, false).toString();
  1782.     }
  1783.     /**
  1784.      * Serialize to String the object <var>elencoPartecipanti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoPartecipanti}
  1785.      *
  1786.      * @param elencoPartecipanti Object to be serialized
  1787.      * @param prettyPrint if true output the XML with indenting
  1788.      * @return Object to be serialized as String
  1789.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1790.      */
  1791.     public String toString(ElencoPartecipanti elencoPartecipanti,boolean prettyPrint) throws SerializerException {
  1792.         return this.objToXml(ElencoPartecipanti.class, elencoPartecipanti, prettyPrint).toString();
  1793.     }
  1794.    
  1795.    
  1796.    
  1797.     /*
  1798.      =================================================================================
  1799.      Object: servizioComposto
  1800.      =================================================================================
  1801.     */
  1802.    
  1803.     /**
  1804.      * Serialize to file system in <var>fileName</var> the object <var>servizioComposto</var> of type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  1805.      *
  1806.      * @param fileName Xml file to serialize the object <var>servizioComposto</var>
  1807.      * @param servizioComposto Object to be serialized in xml file <var>fileName</var>
  1808.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1809.      */
  1810.     public void write(String fileName,ServizioComposto servizioComposto) throws SerializerException {
  1811.         this.objToXml(fileName, ServizioComposto.class, servizioComposto, false);
  1812.     }
  1813.     /**
  1814.      * Serialize to file system in <var>fileName</var> the object <var>servizioComposto</var> of type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  1815.      *
  1816.      * @param fileName Xml file to serialize the object <var>servizioComposto</var>
  1817.      * @param servizioComposto Object to be serialized in xml file <var>fileName</var>
  1818.      * @param prettyPrint if true output the XML with indenting
  1819.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1820.      */
  1821.     public void write(String fileName,ServizioComposto servizioComposto,boolean prettyPrint) throws SerializerException {
  1822.         this.objToXml(fileName, ServizioComposto.class, servizioComposto, prettyPrint);
  1823.     }
  1824.    
  1825.     /**
  1826.      * Serialize to file system in <var>file</var> the object <var>servizioComposto</var> of type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  1827.      *
  1828.      * @param file Xml file to serialize the object <var>servizioComposto</var>
  1829.      * @param servizioComposto Object to be serialized in xml file <var>fileName</var>
  1830.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1831.      */
  1832.     public void write(File file,ServizioComposto servizioComposto) throws SerializerException {
  1833.         this.objToXml(file, ServizioComposto.class, servizioComposto, false);
  1834.     }
  1835.     /**
  1836.      * Serialize to file system in <var>file</var> the object <var>servizioComposto</var> of type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  1837.      *
  1838.      * @param file Xml file to serialize the object <var>servizioComposto</var>
  1839.      * @param servizioComposto Object to be serialized in xml file <var>fileName</var>
  1840.      * @param prettyPrint if true output the XML with indenting
  1841.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1842.      */
  1843.     public void write(File file,ServizioComposto servizioComposto,boolean prettyPrint) throws SerializerException {
  1844.         this.objToXml(file, ServizioComposto.class, servizioComposto, prettyPrint);
  1845.     }
  1846.    
  1847.     /**
  1848.      * Serialize to output stream <var>out</var> the object <var>servizioComposto</var> of type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  1849.      *
  1850.      * @param out OutputStream to serialize the object <var>servizioComposto</var>
  1851.      * @param servizioComposto Object to be serialized in xml file <var>fileName</var>
  1852.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1853.      */
  1854.     public void write(OutputStream out,ServizioComposto servizioComposto) throws SerializerException {
  1855.         this.objToXml(out, ServizioComposto.class, servizioComposto, false);
  1856.     }
  1857.     /**
  1858.      * Serialize to output stream <var>out</var> the object <var>servizioComposto</var> of type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  1859.      *
  1860.      * @param out OutputStream to serialize the object <var>servizioComposto</var>
  1861.      * @param servizioComposto Object to be serialized in xml file <var>fileName</var>
  1862.      * @param prettyPrint if true output the XML with indenting
  1863.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1864.      */
  1865.     public void write(OutputStream out,ServizioComposto servizioComposto,boolean prettyPrint) throws SerializerException {
  1866.         this.objToXml(out, ServizioComposto.class, servizioComposto, prettyPrint);
  1867.     }
  1868.            
  1869.     /**
  1870.      * Serialize to byte array the object <var>servizioComposto</var> of type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  1871.      *
  1872.      * @param servizioComposto Object to be serialized
  1873.      * @return Object to be serialized in byte array
  1874.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1875.      */
  1876.     public byte[] toByteArray(ServizioComposto servizioComposto) throws SerializerException {
  1877.         return this.objToXml(ServizioComposto.class, servizioComposto, false).toByteArray();
  1878.     }
  1879.     /**
  1880.      * Serialize to byte array the object <var>servizioComposto</var> of type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  1881.      *
  1882.      * @param servizioComposto Object to be serialized
  1883.      * @param prettyPrint if true output the XML with indenting
  1884.      * @return Object to be serialized in byte array
  1885.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1886.      */
  1887.     public byte[] toByteArray(ServizioComposto servizioComposto,boolean prettyPrint) throws SerializerException {
  1888.         return this.objToXml(ServizioComposto.class, servizioComposto, prettyPrint).toByteArray();
  1889.     }
  1890.    
  1891.     /**
  1892.      * Serialize to String the object <var>servizioComposto</var> of type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  1893.      *
  1894.      * @param servizioComposto Object to be serialized
  1895.      * @return Object to be serialized as String
  1896.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1897.      */
  1898.     public String toString(ServizioComposto servizioComposto) throws SerializerException {
  1899.         return this.objToXml(ServizioComposto.class, servizioComposto, false).toString();
  1900.     }
  1901.     /**
  1902.      * Serialize to String the object <var>servizioComposto</var> of type {@link it.gov.spcoop.sica.manifest.ServizioComposto}
  1903.      *
  1904.      * @param servizioComposto Object to be serialized
  1905.      * @param prettyPrint if true output the XML with indenting
  1906.      * @return Object to be serialized as String
  1907.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1908.      */
  1909.     public String toString(ServizioComposto servizioComposto,boolean prettyPrint) throws SerializerException {
  1910.         return this.objToXml(ServizioComposto.class, servizioComposto, prettyPrint).toString();
  1911.     }
  1912.    
  1913.    
  1914.    
  1915.     /*
  1916.      =================================================================================
  1917.      Object: ElencoAllegati
  1918.      =================================================================================
  1919.     */
  1920.    
  1921.     /**
  1922.      * Serialize to file system in <var>fileName</var> the object <var>elencoAllegati</var> of type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  1923.      *
  1924.      * @param fileName Xml file to serialize the object <var>elencoAllegati</var>
  1925.      * @param elencoAllegati Object to be serialized in xml file <var>fileName</var>
  1926.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1927.      */
  1928.     public void write(String fileName,ElencoAllegati elencoAllegati) throws SerializerException {
  1929.         this.objToXml(fileName, ElencoAllegati.class, elencoAllegati, false);
  1930.     }
  1931.     /**
  1932.      * Serialize to file system in <var>fileName</var> the object <var>elencoAllegati</var> of type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  1933.      *
  1934.      * @param fileName Xml file to serialize the object <var>elencoAllegati</var>
  1935.      * @param elencoAllegati Object to be serialized in xml file <var>fileName</var>
  1936.      * @param prettyPrint if true output the XML with indenting
  1937.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1938.      */
  1939.     public void write(String fileName,ElencoAllegati elencoAllegati,boolean prettyPrint) throws SerializerException {
  1940.         this.objToXml(fileName, ElencoAllegati.class, elencoAllegati, prettyPrint);
  1941.     }
  1942.    
  1943.     /**
  1944.      * Serialize to file system in <var>file</var> the object <var>elencoAllegati</var> of type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  1945.      *
  1946.      * @param file Xml file to serialize the object <var>elencoAllegati</var>
  1947.      * @param elencoAllegati Object to be serialized in xml file <var>fileName</var>
  1948.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1949.      */
  1950.     public void write(File file,ElencoAllegati elencoAllegati) throws SerializerException {
  1951.         this.objToXml(file, ElencoAllegati.class, elencoAllegati, false);
  1952.     }
  1953.     /**
  1954.      * Serialize to file system in <var>file</var> the object <var>elencoAllegati</var> of type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  1955.      *
  1956.      * @param file Xml file to serialize the object <var>elencoAllegati</var>
  1957.      * @param elencoAllegati Object to be serialized in xml file <var>fileName</var>
  1958.      * @param prettyPrint if true output the XML with indenting
  1959.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1960.      */
  1961.     public void write(File file,ElencoAllegati elencoAllegati,boolean prettyPrint) throws SerializerException {
  1962.         this.objToXml(file, ElencoAllegati.class, elencoAllegati, prettyPrint);
  1963.     }
  1964.    
  1965.     /**
  1966.      * Serialize to output stream <var>out</var> the object <var>elencoAllegati</var> of type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  1967.      *
  1968.      * @param out OutputStream to serialize the object <var>elencoAllegati</var>
  1969.      * @param elencoAllegati Object to be serialized in xml file <var>fileName</var>
  1970.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1971.      */
  1972.     public void write(OutputStream out,ElencoAllegati elencoAllegati) throws SerializerException {
  1973.         this.objToXml(out, ElencoAllegati.class, elencoAllegati, false);
  1974.     }
  1975.     /**
  1976.      * Serialize to output stream <var>out</var> the object <var>elencoAllegati</var> of type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  1977.      *
  1978.      * @param out OutputStream to serialize the object <var>elencoAllegati</var>
  1979.      * @param elencoAllegati Object to be serialized in xml file <var>fileName</var>
  1980.      * @param prettyPrint if true output the XML with indenting
  1981.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1982.      */
  1983.     public void write(OutputStream out,ElencoAllegati elencoAllegati,boolean prettyPrint) throws SerializerException {
  1984.         this.objToXml(out, ElencoAllegati.class, elencoAllegati, prettyPrint);
  1985.     }
  1986.            
  1987.     /**
  1988.      * Serialize to byte array the object <var>elencoAllegati</var> of type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  1989.      *
  1990.      * @param elencoAllegati Object to be serialized
  1991.      * @return Object to be serialized in byte array
  1992.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1993.      */
  1994.     public byte[] toByteArray(ElencoAllegati elencoAllegati) throws SerializerException {
  1995.         return this.objToXml(ElencoAllegati.class, elencoAllegati, false).toByteArray();
  1996.     }
  1997.     /**
  1998.      * Serialize to byte array the object <var>elencoAllegati</var> of type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  1999.      *
  2000.      * @param elencoAllegati Object to be serialized
  2001.      * @param prettyPrint if true output the XML with indenting
  2002.      * @return Object to be serialized in byte array
  2003.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2004.      */
  2005.     public byte[] toByteArray(ElencoAllegati elencoAllegati,boolean prettyPrint) throws SerializerException {
  2006.         return this.objToXml(ElencoAllegati.class, elencoAllegati, prettyPrint).toByteArray();
  2007.     }
  2008.    
  2009.     /**
  2010.      * Serialize to String the object <var>elencoAllegati</var> of type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  2011.      *
  2012.      * @param elencoAllegati Object to be serialized
  2013.      * @return Object to be serialized as String
  2014.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2015.      */
  2016.     public String toString(ElencoAllegati elencoAllegati) throws SerializerException {
  2017.         return this.objToXml(ElencoAllegati.class, elencoAllegati, false).toString();
  2018.     }
  2019.     /**
  2020.      * Serialize to String the object <var>elencoAllegati</var> of type {@link it.gov.spcoop.sica.manifest.ElencoAllegati}
  2021.      *
  2022.      * @param elencoAllegati Object to be serialized
  2023.      * @param prettyPrint if true output the XML with indenting
  2024.      * @return Object to be serialized as String
  2025.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2026.      */
  2027.     public String toString(ElencoAllegati elencoAllegati,boolean prettyPrint) throws SerializerException {
  2028.         return this.objToXml(ElencoAllegati.class, elencoAllegati, prettyPrint).toString();
  2029.     }
  2030.    
  2031.    
  2032.    
  2033.     /*
  2034.      =================================================================================
  2035.      Object: SpecificaCoordinamento
  2036.      =================================================================================
  2037.     */
  2038.    
  2039.     /**
  2040.      * Serialize to file system in <var>fileName</var> the object <var>specificaCoordinamento</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  2041.      *
  2042.      * @param fileName Xml file to serialize the object <var>specificaCoordinamento</var>
  2043.      * @param specificaCoordinamento Object to be serialized in xml file <var>fileName</var>
  2044.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2045.      */
  2046.     public void write(String fileName,SpecificaCoordinamento specificaCoordinamento) throws SerializerException {
  2047.         this.objToXml(fileName, SpecificaCoordinamento.class, specificaCoordinamento, false);
  2048.     }
  2049.     /**
  2050.      * Serialize to file system in <var>fileName</var> the object <var>specificaCoordinamento</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  2051.      *
  2052.      * @param fileName Xml file to serialize the object <var>specificaCoordinamento</var>
  2053.      * @param specificaCoordinamento Object to be serialized in xml file <var>fileName</var>
  2054.      * @param prettyPrint if true output the XML with indenting
  2055.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2056.      */
  2057.     public void write(String fileName,SpecificaCoordinamento specificaCoordinamento,boolean prettyPrint) throws SerializerException {
  2058.         this.objToXml(fileName, SpecificaCoordinamento.class, specificaCoordinamento, prettyPrint);
  2059.     }
  2060.    
  2061.     /**
  2062.      * Serialize to file system in <var>file</var> the object <var>specificaCoordinamento</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  2063.      *
  2064.      * @param file Xml file to serialize the object <var>specificaCoordinamento</var>
  2065.      * @param specificaCoordinamento Object to be serialized in xml file <var>fileName</var>
  2066.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2067.      */
  2068.     public void write(File file,SpecificaCoordinamento specificaCoordinamento) throws SerializerException {
  2069.         this.objToXml(file, SpecificaCoordinamento.class, specificaCoordinamento, false);
  2070.     }
  2071.     /**
  2072.      * Serialize to file system in <var>file</var> the object <var>specificaCoordinamento</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  2073.      *
  2074.      * @param file Xml file to serialize the object <var>specificaCoordinamento</var>
  2075.      * @param specificaCoordinamento Object to be serialized in xml file <var>fileName</var>
  2076.      * @param prettyPrint if true output the XML with indenting
  2077.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2078.      */
  2079.     public void write(File file,SpecificaCoordinamento specificaCoordinamento,boolean prettyPrint) throws SerializerException {
  2080.         this.objToXml(file, SpecificaCoordinamento.class, specificaCoordinamento, prettyPrint);
  2081.     }
  2082.    
  2083.     /**
  2084.      * Serialize to output stream <var>out</var> the object <var>specificaCoordinamento</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  2085.      *
  2086.      * @param out OutputStream to serialize the object <var>specificaCoordinamento</var>
  2087.      * @param specificaCoordinamento Object to be serialized in xml file <var>fileName</var>
  2088.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2089.      */
  2090.     public void write(OutputStream out,SpecificaCoordinamento specificaCoordinamento) throws SerializerException {
  2091.         this.objToXml(out, SpecificaCoordinamento.class, specificaCoordinamento, false);
  2092.     }
  2093.     /**
  2094.      * Serialize to output stream <var>out</var> the object <var>specificaCoordinamento</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  2095.      *
  2096.      * @param out OutputStream to serialize the object <var>specificaCoordinamento</var>
  2097.      * @param specificaCoordinamento Object to be serialized in xml file <var>fileName</var>
  2098.      * @param prettyPrint if true output the XML with indenting
  2099.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2100.      */
  2101.     public void write(OutputStream out,SpecificaCoordinamento specificaCoordinamento,boolean prettyPrint) throws SerializerException {
  2102.         this.objToXml(out, SpecificaCoordinamento.class, specificaCoordinamento, prettyPrint);
  2103.     }
  2104.            
  2105.     /**
  2106.      * Serialize to byte array the object <var>specificaCoordinamento</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  2107.      *
  2108.      * @param specificaCoordinamento Object to be serialized
  2109.      * @return Object to be serialized in byte array
  2110.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2111.      */
  2112.     public byte[] toByteArray(SpecificaCoordinamento specificaCoordinamento) throws SerializerException {
  2113.         return this.objToXml(SpecificaCoordinamento.class, specificaCoordinamento, false).toByteArray();
  2114.     }
  2115.     /**
  2116.      * Serialize to byte array the object <var>specificaCoordinamento</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  2117.      *
  2118.      * @param specificaCoordinamento Object to be serialized
  2119.      * @param prettyPrint if true output the XML with indenting
  2120.      * @return Object to be serialized in byte array
  2121.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2122.      */
  2123.     public byte[] toByteArray(SpecificaCoordinamento specificaCoordinamento,boolean prettyPrint) throws SerializerException {
  2124.         return this.objToXml(SpecificaCoordinamento.class, specificaCoordinamento, prettyPrint).toByteArray();
  2125.     }
  2126.    
  2127.     /**
  2128.      * Serialize to String the object <var>specificaCoordinamento</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  2129.      *
  2130.      * @param specificaCoordinamento Object to be serialized
  2131.      * @return Object to be serialized as String
  2132.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2133.      */
  2134.     public String toString(SpecificaCoordinamento specificaCoordinamento) throws SerializerException {
  2135.         return this.objToXml(SpecificaCoordinamento.class, specificaCoordinamento, false).toString();
  2136.     }
  2137.     /**
  2138.      * Serialize to String the object <var>specificaCoordinamento</var> of type {@link it.gov.spcoop.sica.manifest.SpecificaCoordinamento}
  2139.      *
  2140.      * @param specificaCoordinamento Object to be serialized
  2141.      * @param prettyPrint if true output the XML with indenting
  2142.      * @return Object to be serialized as String
  2143.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2144.      */
  2145.     public String toString(SpecificaCoordinamento specificaCoordinamento,boolean prettyPrint) throws SerializerException {
  2146.         return this.objToXml(SpecificaCoordinamento.class, specificaCoordinamento, prettyPrint).toString();
  2147.     }
  2148.    
  2149.    
  2150.    
  2151.     /*
  2152.      =================================================================================
  2153.      Object: DocumentoLivelloServizio
  2154.      =================================================================================
  2155.     */
  2156.    
  2157.     /**
  2158.      * Serialize to file system in <var>fileName</var> the object <var>documentoLivelloServizio</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  2159.      *
  2160.      * @param fileName Xml file to serialize the object <var>documentoLivelloServizio</var>
  2161.      * @param documentoLivelloServizio Object to be serialized in xml file <var>fileName</var>
  2162.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2163.      */
  2164.     public void write(String fileName,DocumentoLivelloServizio documentoLivelloServizio) throws SerializerException {
  2165.         this.objToXml(fileName, DocumentoLivelloServizio.class, documentoLivelloServizio, false);
  2166.     }
  2167.     /**
  2168.      * Serialize to file system in <var>fileName</var> the object <var>documentoLivelloServizio</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  2169.      *
  2170.      * @param fileName Xml file to serialize the object <var>documentoLivelloServizio</var>
  2171.      * @param documentoLivelloServizio Object to be serialized in xml file <var>fileName</var>
  2172.      * @param prettyPrint if true output the XML with indenting
  2173.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2174.      */
  2175.     public void write(String fileName,DocumentoLivelloServizio documentoLivelloServizio,boolean prettyPrint) throws SerializerException {
  2176.         this.objToXml(fileName, DocumentoLivelloServizio.class, documentoLivelloServizio, prettyPrint);
  2177.     }
  2178.    
  2179.     /**
  2180.      * Serialize to file system in <var>file</var> the object <var>documentoLivelloServizio</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  2181.      *
  2182.      * @param file Xml file to serialize the object <var>documentoLivelloServizio</var>
  2183.      * @param documentoLivelloServizio Object to be serialized in xml file <var>fileName</var>
  2184.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2185.      */
  2186.     public void write(File file,DocumentoLivelloServizio documentoLivelloServizio) throws SerializerException {
  2187.         this.objToXml(file, DocumentoLivelloServizio.class, documentoLivelloServizio, false);
  2188.     }
  2189.     /**
  2190.      * Serialize to file system in <var>file</var> the object <var>documentoLivelloServizio</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  2191.      *
  2192.      * @param file Xml file to serialize the object <var>documentoLivelloServizio</var>
  2193.      * @param documentoLivelloServizio Object to be serialized in xml file <var>fileName</var>
  2194.      * @param prettyPrint if true output the XML with indenting
  2195.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2196.      */
  2197.     public void write(File file,DocumentoLivelloServizio documentoLivelloServizio,boolean prettyPrint) throws SerializerException {
  2198.         this.objToXml(file, DocumentoLivelloServizio.class, documentoLivelloServizio, prettyPrint);
  2199.     }
  2200.    
  2201.     /**
  2202.      * Serialize to output stream <var>out</var> the object <var>documentoLivelloServizio</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  2203.      *
  2204.      * @param out OutputStream to serialize the object <var>documentoLivelloServizio</var>
  2205.      * @param documentoLivelloServizio Object to be serialized in xml file <var>fileName</var>
  2206.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2207.      */
  2208.     public void write(OutputStream out,DocumentoLivelloServizio documentoLivelloServizio) throws SerializerException {
  2209.         this.objToXml(out, DocumentoLivelloServizio.class, documentoLivelloServizio, false);
  2210.     }
  2211.     /**
  2212.      * Serialize to output stream <var>out</var> the object <var>documentoLivelloServizio</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  2213.      *
  2214.      * @param out OutputStream to serialize the object <var>documentoLivelloServizio</var>
  2215.      * @param documentoLivelloServizio Object to be serialized in xml file <var>fileName</var>
  2216.      * @param prettyPrint if true output the XML with indenting
  2217.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2218.      */
  2219.     public void write(OutputStream out,DocumentoLivelloServizio documentoLivelloServizio,boolean prettyPrint) throws SerializerException {
  2220.         this.objToXml(out, DocumentoLivelloServizio.class, documentoLivelloServizio, prettyPrint);
  2221.     }
  2222.            
  2223.     /**
  2224.      * Serialize to byte array the object <var>documentoLivelloServizio</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  2225.      *
  2226.      * @param documentoLivelloServizio Object to be serialized
  2227.      * @return Object to be serialized in byte array
  2228.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2229.      */
  2230.     public byte[] toByteArray(DocumentoLivelloServizio documentoLivelloServizio) throws SerializerException {
  2231.         return this.objToXml(DocumentoLivelloServizio.class, documentoLivelloServizio, false).toByteArray();
  2232.     }
  2233.     /**
  2234.      * Serialize to byte array the object <var>documentoLivelloServizio</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  2235.      *
  2236.      * @param documentoLivelloServizio Object to be serialized
  2237.      * @param prettyPrint if true output the XML with indenting
  2238.      * @return Object to be serialized in byte array
  2239.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2240.      */
  2241.     public byte[] toByteArray(DocumentoLivelloServizio documentoLivelloServizio,boolean prettyPrint) throws SerializerException {
  2242.         return this.objToXml(DocumentoLivelloServizio.class, documentoLivelloServizio, prettyPrint).toByteArray();
  2243.     }
  2244.    
  2245.     /**
  2246.      * Serialize to String the object <var>documentoLivelloServizio</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  2247.      *
  2248.      * @param documentoLivelloServizio Object to be serialized
  2249.      * @return Object to be serialized as String
  2250.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2251.      */
  2252.     public String toString(DocumentoLivelloServizio documentoLivelloServizio) throws SerializerException {
  2253.         return this.objToXml(DocumentoLivelloServizio.class, documentoLivelloServizio, false).toString();
  2254.     }
  2255.     /**
  2256.      * Serialize to String the object <var>documentoLivelloServizio</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoLivelloServizio}
  2257.      *
  2258.      * @param documentoLivelloServizio Object to be serialized
  2259.      * @param prettyPrint if true output the XML with indenting
  2260.      * @return Object to be serialized as String
  2261.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2262.      */
  2263.     public String toString(DocumentoLivelloServizio documentoLivelloServizio,boolean prettyPrint) throws SerializerException {
  2264.         return this.objToXml(DocumentoLivelloServizio.class, documentoLivelloServizio, prettyPrint).toString();
  2265.     }
  2266.    
  2267.    
  2268.    
  2269.     /*
  2270.      =================================================================================
  2271.      Object: accordoCooperazione
  2272.      =================================================================================
  2273.     */
  2274.    
  2275.     /**
  2276.      * Serialize to file system in <var>fileName</var> the object <var>accordoCooperazione</var> of type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  2277.      *
  2278.      * @param fileName Xml file to serialize the object <var>accordoCooperazione</var>
  2279.      * @param accordoCooperazione Object to be serialized in xml file <var>fileName</var>
  2280.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2281.      */
  2282.     public void write(String fileName,AccordoCooperazione accordoCooperazione) throws SerializerException {
  2283.         this.objToXml(fileName, AccordoCooperazione.class, accordoCooperazione, false);
  2284.     }
  2285.     /**
  2286.      * Serialize to file system in <var>fileName</var> the object <var>accordoCooperazione</var> of type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  2287.      *
  2288.      * @param fileName Xml file to serialize the object <var>accordoCooperazione</var>
  2289.      * @param accordoCooperazione Object to be serialized in xml file <var>fileName</var>
  2290.      * @param prettyPrint if true output the XML with indenting
  2291.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2292.      */
  2293.     public void write(String fileName,AccordoCooperazione accordoCooperazione,boolean prettyPrint) throws SerializerException {
  2294.         this.objToXml(fileName, AccordoCooperazione.class, accordoCooperazione, prettyPrint);
  2295.     }
  2296.    
  2297.     /**
  2298.      * Serialize to file system in <var>file</var> the object <var>accordoCooperazione</var> of type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  2299.      *
  2300.      * @param file Xml file to serialize the object <var>accordoCooperazione</var>
  2301.      * @param accordoCooperazione Object to be serialized in xml file <var>fileName</var>
  2302.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2303.      */
  2304.     public void write(File file,AccordoCooperazione accordoCooperazione) throws SerializerException {
  2305.         this.objToXml(file, AccordoCooperazione.class, accordoCooperazione, false);
  2306.     }
  2307.     /**
  2308.      * Serialize to file system in <var>file</var> the object <var>accordoCooperazione</var> of type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  2309.      *
  2310.      * @param file Xml file to serialize the object <var>accordoCooperazione</var>
  2311.      * @param accordoCooperazione Object to be serialized in xml file <var>fileName</var>
  2312.      * @param prettyPrint if true output the XML with indenting
  2313.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2314.      */
  2315.     public void write(File file,AccordoCooperazione accordoCooperazione,boolean prettyPrint) throws SerializerException {
  2316.         this.objToXml(file, AccordoCooperazione.class, accordoCooperazione, prettyPrint);
  2317.     }
  2318.    
  2319.     /**
  2320.      * Serialize to output stream <var>out</var> the object <var>accordoCooperazione</var> of type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  2321.      *
  2322.      * @param out OutputStream to serialize the object <var>accordoCooperazione</var>
  2323.      * @param accordoCooperazione Object to be serialized in xml file <var>fileName</var>
  2324.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2325.      */
  2326.     public void write(OutputStream out,AccordoCooperazione accordoCooperazione) throws SerializerException {
  2327.         this.objToXml(out, AccordoCooperazione.class, accordoCooperazione, false);
  2328.     }
  2329.     /**
  2330.      * Serialize to output stream <var>out</var> the object <var>accordoCooperazione</var> of type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  2331.      *
  2332.      * @param out OutputStream to serialize the object <var>accordoCooperazione</var>
  2333.      * @param accordoCooperazione Object to be serialized in xml file <var>fileName</var>
  2334.      * @param prettyPrint if true output the XML with indenting
  2335.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2336.      */
  2337.     public void write(OutputStream out,AccordoCooperazione accordoCooperazione,boolean prettyPrint) throws SerializerException {
  2338.         this.objToXml(out, AccordoCooperazione.class, accordoCooperazione, prettyPrint);
  2339.     }
  2340.            
  2341.     /**
  2342.      * Serialize to byte array the object <var>accordoCooperazione</var> of type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  2343.      *
  2344.      * @param accordoCooperazione Object to be serialized
  2345.      * @return Object to be serialized in byte array
  2346.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2347.      */
  2348.     public byte[] toByteArray(AccordoCooperazione accordoCooperazione) throws SerializerException {
  2349.         return this.objToXml(AccordoCooperazione.class, accordoCooperazione, false).toByteArray();
  2350.     }
  2351.     /**
  2352.      * Serialize to byte array the object <var>accordoCooperazione</var> of type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  2353.      *
  2354.      * @param accordoCooperazione Object to be serialized
  2355.      * @param prettyPrint if true output the XML with indenting
  2356.      * @return Object to be serialized in byte array
  2357.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2358.      */
  2359.     public byte[] toByteArray(AccordoCooperazione accordoCooperazione,boolean prettyPrint) throws SerializerException {
  2360.         return this.objToXml(AccordoCooperazione.class, accordoCooperazione, prettyPrint).toByteArray();
  2361.     }
  2362.    
  2363.     /**
  2364.      * Serialize to String the object <var>accordoCooperazione</var> of type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  2365.      *
  2366.      * @param accordoCooperazione Object to be serialized
  2367.      * @return Object to be serialized as String
  2368.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2369.      */
  2370.     public String toString(AccordoCooperazione accordoCooperazione) throws SerializerException {
  2371.         return this.objToXml(AccordoCooperazione.class, accordoCooperazione, false).toString();
  2372.     }
  2373.     /**
  2374.      * Serialize to String the object <var>accordoCooperazione</var> of type {@link it.gov.spcoop.sica.manifest.AccordoCooperazione}
  2375.      *
  2376.      * @param accordoCooperazione Object to be serialized
  2377.      * @param prettyPrint if true output the XML with indenting
  2378.      * @return Object to be serialized as String
  2379.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2380.      */
  2381.     public String toString(AccordoCooperazione accordoCooperazione,boolean prettyPrint) throws SerializerException {
  2382.         return this.objToXml(AccordoCooperazione.class, accordoCooperazione, prettyPrint).toString();
  2383.     }
  2384.    
  2385.    
  2386.    
  2387.     /*
  2388.      =================================================================================
  2389.      Object: ElencoServiziComposti
  2390.      =================================================================================
  2391.     */
  2392.    
  2393.     /**
  2394.      * Serialize to file system in <var>fileName</var> the object <var>elencoServiziComposti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  2395.      *
  2396.      * @param fileName Xml file to serialize the object <var>elencoServiziComposti</var>
  2397.      * @param elencoServiziComposti Object to be serialized in xml file <var>fileName</var>
  2398.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2399.      */
  2400.     public void write(String fileName,ElencoServiziComposti elencoServiziComposti) throws SerializerException {
  2401.         this.objToXml(fileName, ElencoServiziComposti.class, elencoServiziComposti, false);
  2402.     }
  2403.     /**
  2404.      * Serialize to file system in <var>fileName</var> the object <var>elencoServiziComposti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  2405.      *
  2406.      * @param fileName Xml file to serialize the object <var>elencoServiziComposti</var>
  2407.      * @param elencoServiziComposti Object to be serialized in xml file <var>fileName</var>
  2408.      * @param prettyPrint if true output the XML with indenting
  2409.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2410.      */
  2411.     public void write(String fileName,ElencoServiziComposti elencoServiziComposti,boolean prettyPrint) throws SerializerException {
  2412.         this.objToXml(fileName, ElencoServiziComposti.class, elencoServiziComposti, prettyPrint);
  2413.     }
  2414.    
  2415.     /**
  2416.      * Serialize to file system in <var>file</var> the object <var>elencoServiziComposti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  2417.      *
  2418.      * @param file Xml file to serialize the object <var>elencoServiziComposti</var>
  2419.      * @param elencoServiziComposti Object to be serialized in xml file <var>fileName</var>
  2420.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2421.      */
  2422.     public void write(File file,ElencoServiziComposti elencoServiziComposti) throws SerializerException {
  2423.         this.objToXml(file, ElencoServiziComposti.class, elencoServiziComposti, false);
  2424.     }
  2425.     /**
  2426.      * Serialize to file system in <var>file</var> the object <var>elencoServiziComposti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  2427.      *
  2428.      * @param file Xml file to serialize the object <var>elencoServiziComposti</var>
  2429.      * @param elencoServiziComposti Object to be serialized in xml file <var>fileName</var>
  2430.      * @param prettyPrint if true output the XML with indenting
  2431.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2432.      */
  2433.     public void write(File file,ElencoServiziComposti elencoServiziComposti,boolean prettyPrint) throws SerializerException {
  2434.         this.objToXml(file, ElencoServiziComposti.class, elencoServiziComposti, prettyPrint);
  2435.     }
  2436.    
  2437.     /**
  2438.      * Serialize to output stream <var>out</var> the object <var>elencoServiziComposti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  2439.      *
  2440.      * @param out OutputStream to serialize the object <var>elencoServiziComposti</var>
  2441.      * @param elencoServiziComposti Object to be serialized in xml file <var>fileName</var>
  2442.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2443.      */
  2444.     public void write(OutputStream out,ElencoServiziComposti elencoServiziComposti) throws SerializerException {
  2445.         this.objToXml(out, ElencoServiziComposti.class, elencoServiziComposti, false);
  2446.     }
  2447.     /**
  2448.      * Serialize to output stream <var>out</var> the object <var>elencoServiziComposti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  2449.      *
  2450.      * @param out OutputStream to serialize the object <var>elencoServiziComposti</var>
  2451.      * @param elencoServiziComposti Object to be serialized in xml file <var>fileName</var>
  2452.      * @param prettyPrint if true output the XML with indenting
  2453.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2454.      */
  2455.     public void write(OutputStream out,ElencoServiziComposti elencoServiziComposti,boolean prettyPrint) throws SerializerException {
  2456.         this.objToXml(out, ElencoServiziComposti.class, elencoServiziComposti, prettyPrint);
  2457.     }
  2458.            
  2459.     /**
  2460.      * Serialize to byte array the object <var>elencoServiziComposti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  2461.      *
  2462.      * @param elencoServiziComposti Object to be serialized
  2463.      * @return Object to be serialized in byte array
  2464.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2465.      */
  2466.     public byte[] toByteArray(ElencoServiziComposti elencoServiziComposti) throws SerializerException {
  2467.         return this.objToXml(ElencoServiziComposti.class, elencoServiziComposti, false).toByteArray();
  2468.     }
  2469.     /**
  2470.      * Serialize to byte array the object <var>elencoServiziComposti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  2471.      *
  2472.      * @param elencoServiziComposti Object to be serialized
  2473.      * @param prettyPrint if true output the XML with indenting
  2474.      * @return Object to be serialized in byte array
  2475.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2476.      */
  2477.     public byte[] toByteArray(ElencoServiziComposti elencoServiziComposti,boolean prettyPrint) throws SerializerException {
  2478.         return this.objToXml(ElencoServiziComposti.class, elencoServiziComposti, prettyPrint).toByteArray();
  2479.     }
  2480.    
  2481.     /**
  2482.      * Serialize to String the object <var>elencoServiziComposti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  2483.      *
  2484.      * @param elencoServiziComposti Object to be serialized
  2485.      * @return Object to be serialized as String
  2486.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2487.      */
  2488.     public String toString(ElencoServiziComposti elencoServiziComposti) throws SerializerException {
  2489.         return this.objToXml(ElencoServiziComposti.class, elencoServiziComposti, false).toString();
  2490.     }
  2491.     /**
  2492.      * Serialize to String the object <var>elencoServiziComposti</var> of type {@link it.gov.spcoop.sica.manifest.ElencoServiziComposti}
  2493.      *
  2494.      * @param elencoServiziComposti Object to be serialized
  2495.      * @param prettyPrint if true output the XML with indenting
  2496.      * @return Object to be serialized as String
  2497.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2498.      */
  2499.     public String toString(ElencoServiziComposti elencoServiziComposti,boolean prettyPrint) throws SerializerException {
  2500.         return this.objToXml(ElencoServiziComposti.class, elencoServiziComposti, prettyPrint).toString();
  2501.     }
  2502.    
  2503.    
  2504.    
  2505.     /*
  2506.      =================================================================================
  2507.      Object: DocumentoCoordinamento
  2508.      =================================================================================
  2509.     */
  2510.    
  2511.     /**
  2512.      * Serialize to file system in <var>fileName</var> the object <var>documentoCoordinamento</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  2513.      *
  2514.      * @param fileName Xml file to serialize the object <var>documentoCoordinamento</var>
  2515.      * @param documentoCoordinamento Object to be serialized in xml file <var>fileName</var>
  2516.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2517.      */
  2518.     public void write(String fileName,DocumentoCoordinamento documentoCoordinamento) throws SerializerException {
  2519.         this.objToXml(fileName, DocumentoCoordinamento.class, documentoCoordinamento, false);
  2520.     }
  2521.     /**
  2522.      * Serialize to file system in <var>fileName</var> the object <var>documentoCoordinamento</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  2523.      *
  2524.      * @param fileName Xml file to serialize the object <var>documentoCoordinamento</var>
  2525.      * @param documentoCoordinamento Object to be serialized in xml file <var>fileName</var>
  2526.      * @param prettyPrint if true output the XML with indenting
  2527.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2528.      */
  2529.     public void write(String fileName,DocumentoCoordinamento documentoCoordinamento,boolean prettyPrint) throws SerializerException {
  2530.         this.objToXml(fileName, DocumentoCoordinamento.class, documentoCoordinamento, prettyPrint);
  2531.     }
  2532.    
  2533.     /**
  2534.      * Serialize to file system in <var>file</var> the object <var>documentoCoordinamento</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  2535.      *
  2536.      * @param file Xml file to serialize the object <var>documentoCoordinamento</var>
  2537.      * @param documentoCoordinamento Object to be serialized in xml file <var>fileName</var>
  2538.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2539.      */
  2540.     public void write(File file,DocumentoCoordinamento documentoCoordinamento) throws SerializerException {
  2541.         this.objToXml(file, DocumentoCoordinamento.class, documentoCoordinamento, false);
  2542.     }
  2543.     /**
  2544.      * Serialize to file system in <var>file</var> the object <var>documentoCoordinamento</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  2545.      *
  2546.      * @param file Xml file to serialize the object <var>documentoCoordinamento</var>
  2547.      * @param documentoCoordinamento Object to be serialized in xml file <var>fileName</var>
  2548.      * @param prettyPrint if true output the XML with indenting
  2549.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2550.      */
  2551.     public void write(File file,DocumentoCoordinamento documentoCoordinamento,boolean prettyPrint) throws SerializerException {
  2552.         this.objToXml(file, DocumentoCoordinamento.class, documentoCoordinamento, prettyPrint);
  2553.     }
  2554.    
  2555.     /**
  2556.      * Serialize to output stream <var>out</var> the object <var>documentoCoordinamento</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  2557.      *
  2558.      * @param out OutputStream to serialize the object <var>documentoCoordinamento</var>
  2559.      * @param documentoCoordinamento Object to be serialized in xml file <var>fileName</var>
  2560.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2561.      */
  2562.     public void write(OutputStream out,DocumentoCoordinamento documentoCoordinamento) throws SerializerException {
  2563.         this.objToXml(out, DocumentoCoordinamento.class, documentoCoordinamento, false);
  2564.     }
  2565.     /**
  2566.      * Serialize to output stream <var>out</var> the object <var>documentoCoordinamento</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  2567.      *
  2568.      * @param out OutputStream to serialize the object <var>documentoCoordinamento</var>
  2569.      * @param documentoCoordinamento Object to be serialized in xml file <var>fileName</var>
  2570.      * @param prettyPrint if true output the XML with indenting
  2571.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2572.      */
  2573.     public void write(OutputStream out,DocumentoCoordinamento documentoCoordinamento,boolean prettyPrint) throws SerializerException {
  2574.         this.objToXml(out, DocumentoCoordinamento.class, documentoCoordinamento, prettyPrint);
  2575.     }
  2576.            
  2577.     /**
  2578.      * Serialize to byte array the object <var>documentoCoordinamento</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  2579.      *
  2580.      * @param documentoCoordinamento Object to be serialized
  2581.      * @return Object to be serialized in byte array
  2582.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2583.      */
  2584.     public byte[] toByteArray(DocumentoCoordinamento documentoCoordinamento) throws SerializerException {
  2585.         return this.objToXml(DocumentoCoordinamento.class, documentoCoordinamento, false).toByteArray();
  2586.     }
  2587.     /**
  2588.      * Serialize to byte array the object <var>documentoCoordinamento</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  2589.      *
  2590.      * @param documentoCoordinamento Object to be serialized
  2591.      * @param prettyPrint if true output the XML with indenting
  2592.      * @return Object to be serialized in byte array
  2593.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2594.      */
  2595.     public byte[] toByteArray(DocumentoCoordinamento documentoCoordinamento,boolean prettyPrint) throws SerializerException {
  2596.         return this.objToXml(DocumentoCoordinamento.class, documentoCoordinamento, prettyPrint).toByteArray();
  2597.     }
  2598.    
  2599.     /**
  2600.      * Serialize to String the object <var>documentoCoordinamento</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  2601.      *
  2602.      * @param documentoCoordinamento Object to be serialized
  2603.      * @return Object to be serialized as String
  2604.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2605.      */
  2606.     public String toString(DocumentoCoordinamento documentoCoordinamento) throws SerializerException {
  2607.         return this.objToXml(DocumentoCoordinamento.class, documentoCoordinamento, false).toString();
  2608.     }
  2609.     /**
  2610.      * Serialize to String the object <var>documentoCoordinamento</var> of type {@link it.gov.spcoop.sica.manifest.DocumentoCoordinamento}
  2611.      *
  2612.      * @param documentoCoordinamento Object to be serialized
  2613.      * @param prettyPrint if true output the XML with indenting
  2614.      * @return Object to be serialized as String
  2615.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2616.      */
  2617.     public String toString(DocumentoCoordinamento documentoCoordinamento,boolean prettyPrint) throws SerializerException {
  2618.         return this.objToXml(DocumentoCoordinamento.class, documentoCoordinamento, prettyPrint).toString();
  2619.     }
  2620.    
  2621.    
  2622.    
  2623.     /*
  2624.      =================================================================================
  2625.      Object: accordoServizio
  2626.      =================================================================================
  2627.     */
  2628.    
  2629.     /**
  2630.      * Serialize to file system in <var>fileName</var> the object <var>accordoServizio</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  2631.      *
  2632.      * @param fileName Xml file to serialize the object <var>accordoServizio</var>
  2633.      * @param accordoServizio Object to be serialized in xml file <var>fileName</var>
  2634.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2635.      */
  2636.     public void write(String fileName,AccordoServizio accordoServizio) throws SerializerException {
  2637.         this.objToXml(fileName, AccordoServizio.class, accordoServizio, false);
  2638.     }
  2639.     /**
  2640.      * Serialize to file system in <var>fileName</var> the object <var>accordoServizio</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  2641.      *
  2642.      * @param fileName Xml file to serialize the object <var>accordoServizio</var>
  2643.      * @param accordoServizio Object to be serialized in xml file <var>fileName</var>
  2644.      * @param prettyPrint if true output the XML with indenting
  2645.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2646.      */
  2647.     public void write(String fileName,AccordoServizio accordoServizio,boolean prettyPrint) throws SerializerException {
  2648.         this.objToXml(fileName, AccordoServizio.class, accordoServizio, prettyPrint);
  2649.     }
  2650.    
  2651.     /**
  2652.      * Serialize to file system in <var>file</var> the object <var>accordoServizio</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  2653.      *
  2654.      * @param file Xml file to serialize the object <var>accordoServizio</var>
  2655.      * @param accordoServizio Object to be serialized in xml file <var>fileName</var>
  2656.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2657.      */
  2658.     public void write(File file,AccordoServizio accordoServizio) throws SerializerException {
  2659.         this.objToXml(file, AccordoServizio.class, accordoServizio, false);
  2660.     }
  2661.     /**
  2662.      * Serialize to file system in <var>file</var> the object <var>accordoServizio</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  2663.      *
  2664.      * @param file Xml file to serialize the object <var>accordoServizio</var>
  2665.      * @param accordoServizio Object to be serialized in xml file <var>fileName</var>
  2666.      * @param prettyPrint if true output the XML with indenting
  2667.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2668.      */
  2669.     public void write(File file,AccordoServizio accordoServizio,boolean prettyPrint) throws SerializerException {
  2670.         this.objToXml(file, AccordoServizio.class, accordoServizio, prettyPrint);
  2671.     }
  2672.    
  2673.     /**
  2674.      * Serialize to output stream <var>out</var> the object <var>accordoServizio</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  2675.      *
  2676.      * @param out OutputStream to serialize the object <var>accordoServizio</var>
  2677.      * @param accordoServizio Object to be serialized in xml file <var>fileName</var>
  2678.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2679.      */
  2680.     public void write(OutputStream out,AccordoServizio accordoServizio) throws SerializerException {
  2681.         this.objToXml(out, AccordoServizio.class, accordoServizio, false);
  2682.     }
  2683.     /**
  2684.      * Serialize to output stream <var>out</var> the object <var>accordoServizio</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  2685.      *
  2686.      * @param out OutputStream to serialize the object <var>accordoServizio</var>
  2687.      * @param accordoServizio Object to be serialized in xml file <var>fileName</var>
  2688.      * @param prettyPrint if true output the XML with indenting
  2689.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2690.      */
  2691.     public void write(OutputStream out,AccordoServizio accordoServizio,boolean prettyPrint) throws SerializerException {
  2692.         this.objToXml(out, AccordoServizio.class, accordoServizio, prettyPrint);
  2693.     }
  2694.            
  2695.     /**
  2696.      * Serialize to byte array the object <var>accordoServizio</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  2697.      *
  2698.      * @param accordoServizio Object to be serialized
  2699.      * @return Object to be serialized in byte array
  2700.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2701.      */
  2702.     public byte[] toByteArray(AccordoServizio accordoServizio) throws SerializerException {
  2703.         return this.objToXml(AccordoServizio.class, accordoServizio, false).toByteArray();
  2704.     }
  2705.     /**
  2706.      * Serialize to byte array the object <var>accordoServizio</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  2707.      *
  2708.      * @param accordoServizio Object to be serialized
  2709.      * @param prettyPrint if true output the XML with indenting
  2710.      * @return Object to be serialized in byte array
  2711.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2712.      */
  2713.     public byte[] toByteArray(AccordoServizio accordoServizio,boolean prettyPrint) throws SerializerException {
  2714.         return this.objToXml(AccordoServizio.class, accordoServizio, prettyPrint).toByteArray();
  2715.     }
  2716.    
  2717.     /**
  2718.      * Serialize to String the object <var>accordoServizio</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  2719.      *
  2720.      * @param accordoServizio Object to be serialized
  2721.      * @return Object to be serialized as String
  2722.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2723.      */
  2724.     public String toString(AccordoServizio accordoServizio) throws SerializerException {
  2725.         return this.objToXml(AccordoServizio.class, accordoServizio, false).toString();
  2726.     }
  2727.     /**
  2728.      * Serialize to String the object <var>accordoServizio</var> of type {@link it.gov.spcoop.sica.manifest.AccordoServizio}
  2729.      *
  2730.      * @param accordoServizio Object to be serialized
  2731.      * @param prettyPrint if true output the XML with indenting
  2732.      * @return Object to be serialized as String
  2733.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2734.      */
  2735.     public String toString(AccordoServizio accordoServizio,boolean prettyPrint) throws SerializerException {
  2736.         return this.objToXml(AccordoServizio.class, accordoServizio, prettyPrint).toString();
  2737.     }
  2738.    
  2739.    
  2740.    

  2741. }