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.fatturapa.sdi.fatturapa.v1_1.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.fatturapa.sdi.fatturapa.v1_1.CodiceArticoloType;
  25. import it.gov.fatturapa.sdi.fatturapa.v1_1.DettaglioLineeType;
  26. import it.gov.fatturapa.sdi.fatturapa.v1_1.ScontoMaggiorazioneType;
  27. import it.gov.fatturapa.sdi.fatturapa.v1_1.AltriDatiGestionaliType;
  28. import it.gov.fatturapa.sdi.fatturapa.v1_1.DatiDocumentiCorrelatiType;
  29. import it.gov.fatturapa.sdi.fatturapa.v1_1.DatiRitenutaType;
  30. import it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiTerzoIntermediarioType;
  31. import it.gov.fatturapa.sdi.fatturapa.v1_1.TerzoIntermediarioSoggettoEmittenteType;
  32. import it.gov.fatturapa.sdi.fatturapa.v1_1.DettaglioPagamentoType;
  33. import it.gov.fatturapa.sdi.fatturapa.v1_1.IdFiscaleType;
  34. import it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiRappresentanteType;
  35. import it.gov.fatturapa.sdi.fatturapa.v1_1.AnagraficaType;
  36. import it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiCedenteType;
  37. import it.gov.fatturapa.sdi.fatturapa.v1_1.DatiBeniServiziType;
  38. import it.gov.fatturapa.sdi.fatturapa.v1_1.DatiRiepilogoType;
  39. import it.gov.fatturapa.sdi.fatturapa.v1_1.DatiGeneraliDocumentoType;
  40. import it.gov.fatturapa.sdi.fatturapa.v1_1.DatiGeneraliType;
  41. import it.gov.fatturapa.sdi.fatturapa.v1_1.DatiSALType;
  42. import it.gov.fatturapa.sdi.fatturapa.v1_1.DatiDDTType;
  43. import it.gov.fatturapa.sdi.fatturapa.v1_1.DatiTrasportoType;
  44. import it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaPrincipaleType;
  45. import it.gov.fatturapa.sdi.fatturapa.v1_1.DatiTrasmissioneType;
  46. import it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaHeaderType;
  47. import it.gov.fatturapa.sdi.fatturapa.v1_1.CedentePrestatoreType;
  48. import it.gov.fatturapa.sdi.fatturapa.v1_1.RappresentanteFiscaleType;
  49. import it.gov.fatturapa.sdi.fatturapa.v1_1.CessionarioCommittenteType;
  50. import it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiCessionarioType;
  51. import it.gov.fatturapa.sdi.fatturapa.v1_1.IndirizzoType;
  52. import it.gov.fatturapa.sdi.fatturapa.v1_1.IscrizioneREAType;
  53. import it.gov.fatturapa.sdi.fatturapa.v1_1.ContattiType;
  54. import it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiVettoreType;
  55. import it.gov.fatturapa.sdi.fatturapa.v1_1.DatiVeicoliType;
  56. import it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaType;
  57. import it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaBodyType;
  58. import it.gov.fatturapa.sdi.fatturapa.v1_1.DatiPagamentoType;
  59. import it.gov.fatturapa.sdi.fatturapa.v1_1.AllegatiType;
  60. import it.gov.fatturapa.sdi.fatturapa.v1_1.DatiCassaPrevidenzialeType;
  61. import it.gov.fatturapa.sdi.fatturapa.v1_1.DatiBolloType;
  62. import it.gov.fatturapa.sdi.fatturapa.v1_1.ContattiTrasmittenteType;

  63. import java.io.ByteArrayOutputStream;
  64. import java.io.FileOutputStream;
  65. import java.io.OutputStream;
  66. import java.io.File;
  67. import java.lang.reflect.Method;

  68. import javax.xml.bind.JAXBElement;

  69. /**    
  70.  * XML Serializer of beans
  71.  *
  72.  * @author Poli Andrea (poli@link.it)
  73.  * @author $Author$
  74.  * @version $Rev$, $Date$
  75.  */
  76. public abstract class AbstractSerializer {


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




  162.     /*
  163.      =================================================================================
  164.      Object: CodiceArticoloType
  165.      =================================================================================
  166.     */
  167.    
  168.     /**
  169.      * Serialize to file system in <var>fileName</var> the object <var>codiceArticoloType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CodiceArticoloType}
  170.      *
  171.      * @param fileName Xml file to serialize the object <var>codiceArticoloType</var>
  172.      * @param codiceArticoloType Object to be serialized in xml file <var>fileName</var>
  173.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  174.      */
  175.     public void write(String fileName,CodiceArticoloType codiceArticoloType) throws SerializerException {
  176.         this.objToXml(fileName, CodiceArticoloType.class, codiceArticoloType, false);
  177.     }
  178.     /**
  179.      * Serialize to file system in <var>fileName</var> the object <var>codiceArticoloType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CodiceArticoloType}
  180.      *
  181.      * @param fileName Xml file to serialize the object <var>codiceArticoloType</var>
  182.      * @param codiceArticoloType Object to be serialized in xml file <var>fileName</var>
  183.      * @param prettyPrint if true output the XML with indenting
  184.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  185.      */
  186.     public void write(String fileName,CodiceArticoloType codiceArticoloType,boolean prettyPrint) throws SerializerException {
  187.         this.objToXml(fileName, CodiceArticoloType.class, codiceArticoloType, prettyPrint);
  188.     }
  189.    
  190.     /**
  191.      * Serialize to file system in <var>file</var> the object <var>codiceArticoloType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CodiceArticoloType}
  192.      *
  193.      * @param file Xml file to serialize the object <var>codiceArticoloType</var>
  194.      * @param codiceArticoloType Object to be serialized in xml file <var>fileName</var>
  195.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  196.      */
  197.     public void write(File file,CodiceArticoloType codiceArticoloType) throws SerializerException {
  198.         this.objToXml(file, CodiceArticoloType.class, codiceArticoloType, false);
  199.     }
  200.     /**
  201.      * Serialize to file system in <var>file</var> the object <var>codiceArticoloType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CodiceArticoloType}
  202.      *
  203.      * @param file Xml file to serialize the object <var>codiceArticoloType</var>
  204.      * @param codiceArticoloType Object to be serialized in xml file <var>fileName</var>
  205.      * @param prettyPrint if true output the XML with indenting
  206.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  207.      */
  208.     public void write(File file,CodiceArticoloType codiceArticoloType,boolean prettyPrint) throws SerializerException {
  209.         this.objToXml(file, CodiceArticoloType.class, codiceArticoloType, prettyPrint);
  210.     }
  211.    
  212.     /**
  213.      * Serialize to output stream <var>out</var> the object <var>codiceArticoloType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CodiceArticoloType}
  214.      *
  215.      * @param out OutputStream to serialize the object <var>codiceArticoloType</var>
  216.      * @param codiceArticoloType Object to be serialized in xml file <var>fileName</var>
  217.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  218.      */
  219.     public void write(OutputStream out,CodiceArticoloType codiceArticoloType) throws SerializerException {
  220.         this.objToXml(out, CodiceArticoloType.class, codiceArticoloType, false);
  221.     }
  222.     /**
  223.      * Serialize to output stream <var>out</var> the object <var>codiceArticoloType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CodiceArticoloType}
  224.      *
  225.      * @param out OutputStream to serialize the object <var>codiceArticoloType</var>
  226.      * @param codiceArticoloType Object to be serialized in xml file <var>fileName</var>
  227.      * @param prettyPrint if true output the XML with indenting
  228.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  229.      */
  230.     public void write(OutputStream out,CodiceArticoloType codiceArticoloType,boolean prettyPrint) throws SerializerException {
  231.         this.objToXml(out, CodiceArticoloType.class, codiceArticoloType, prettyPrint);
  232.     }
  233.            
  234.     /**
  235.      * Serialize to byte array the object <var>codiceArticoloType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CodiceArticoloType}
  236.      *
  237.      * @param codiceArticoloType Object to be serialized
  238.      * @return Object to be serialized in byte array
  239.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  240.      */
  241.     public byte[] toByteArray(CodiceArticoloType codiceArticoloType) throws SerializerException {
  242.         return this.objToXml(CodiceArticoloType.class, codiceArticoloType, false).toByteArray();
  243.     }
  244.     /**
  245.      * Serialize to byte array the object <var>codiceArticoloType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CodiceArticoloType}
  246.      *
  247.      * @param codiceArticoloType Object to be serialized
  248.      * @param prettyPrint if true output the XML with indenting
  249.      * @return Object to be serialized in byte array
  250.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  251.      */
  252.     public byte[] toByteArray(CodiceArticoloType codiceArticoloType,boolean prettyPrint) throws SerializerException {
  253.         return this.objToXml(CodiceArticoloType.class, codiceArticoloType, prettyPrint).toByteArray();
  254.     }
  255.    
  256.     /**
  257.      * Serialize to String the object <var>codiceArticoloType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CodiceArticoloType}
  258.      *
  259.      * @param codiceArticoloType Object to be serialized
  260.      * @return Object to be serialized as String
  261.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  262.      */
  263.     public String toString(CodiceArticoloType codiceArticoloType) throws SerializerException {
  264.         return this.objToXml(CodiceArticoloType.class, codiceArticoloType, false).toString();
  265.     }
  266.     /**
  267.      * Serialize to String the object <var>codiceArticoloType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CodiceArticoloType}
  268.      *
  269.      * @param codiceArticoloType Object to be serialized
  270.      * @param prettyPrint if true output the XML with indenting
  271.      * @return Object to be serialized as String
  272.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  273.      */
  274.     public String toString(CodiceArticoloType codiceArticoloType,boolean prettyPrint) throws SerializerException {
  275.         return this.objToXml(CodiceArticoloType.class, codiceArticoloType, prettyPrint).toString();
  276.     }
  277.    
  278.    
  279.    
  280.     /*
  281.      =================================================================================
  282.      Object: DettaglioLineeType
  283.      =================================================================================
  284.     */
  285.    
  286.     /**
  287.      * Serialize to file system in <var>fileName</var> the object <var>dettaglioLineeType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DettaglioLineeType}
  288.      *
  289.      * @param fileName Xml file to serialize the object <var>dettaglioLineeType</var>
  290.      * @param dettaglioLineeType Object to be serialized in xml file <var>fileName</var>
  291.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  292.      */
  293.     public void write(String fileName,DettaglioLineeType dettaglioLineeType) throws SerializerException {
  294.         this.objToXml(fileName, DettaglioLineeType.class, dettaglioLineeType, false);
  295.     }
  296.     /**
  297.      * Serialize to file system in <var>fileName</var> the object <var>dettaglioLineeType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DettaglioLineeType}
  298.      *
  299.      * @param fileName Xml file to serialize the object <var>dettaglioLineeType</var>
  300.      * @param dettaglioLineeType Object to be serialized in xml file <var>fileName</var>
  301.      * @param prettyPrint if true output the XML with indenting
  302.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  303.      */
  304.     public void write(String fileName,DettaglioLineeType dettaglioLineeType,boolean prettyPrint) throws SerializerException {
  305.         this.objToXml(fileName, DettaglioLineeType.class, dettaglioLineeType, prettyPrint);
  306.     }
  307.    
  308.     /**
  309.      * Serialize to file system in <var>file</var> the object <var>dettaglioLineeType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DettaglioLineeType}
  310.      *
  311.      * @param file Xml file to serialize the object <var>dettaglioLineeType</var>
  312.      * @param dettaglioLineeType Object to be serialized in xml file <var>fileName</var>
  313.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  314.      */
  315.     public void write(File file,DettaglioLineeType dettaglioLineeType) throws SerializerException {
  316.         this.objToXml(file, DettaglioLineeType.class, dettaglioLineeType, false);
  317.     }
  318.     /**
  319.      * Serialize to file system in <var>file</var> the object <var>dettaglioLineeType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DettaglioLineeType}
  320.      *
  321.      * @param file Xml file to serialize the object <var>dettaglioLineeType</var>
  322.      * @param dettaglioLineeType Object to be serialized in xml file <var>fileName</var>
  323.      * @param prettyPrint if true output the XML with indenting
  324.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  325.      */
  326.     public void write(File file,DettaglioLineeType dettaglioLineeType,boolean prettyPrint) throws SerializerException {
  327.         this.objToXml(file, DettaglioLineeType.class, dettaglioLineeType, prettyPrint);
  328.     }
  329.    
  330.     /**
  331.      * Serialize to output stream <var>out</var> the object <var>dettaglioLineeType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DettaglioLineeType}
  332.      *
  333.      * @param out OutputStream to serialize the object <var>dettaglioLineeType</var>
  334.      * @param dettaglioLineeType Object to be serialized in xml file <var>fileName</var>
  335.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  336.      */
  337.     public void write(OutputStream out,DettaglioLineeType dettaglioLineeType) throws SerializerException {
  338.         this.objToXml(out, DettaglioLineeType.class, dettaglioLineeType, false);
  339.     }
  340.     /**
  341.      * Serialize to output stream <var>out</var> the object <var>dettaglioLineeType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DettaglioLineeType}
  342.      *
  343.      * @param out OutputStream to serialize the object <var>dettaglioLineeType</var>
  344.      * @param dettaglioLineeType Object to be serialized in xml file <var>fileName</var>
  345.      * @param prettyPrint if true output the XML with indenting
  346.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  347.      */
  348.     public void write(OutputStream out,DettaglioLineeType dettaglioLineeType,boolean prettyPrint) throws SerializerException {
  349.         this.objToXml(out, DettaglioLineeType.class, dettaglioLineeType, prettyPrint);
  350.     }
  351.            
  352.     /**
  353.      * Serialize to byte array the object <var>dettaglioLineeType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DettaglioLineeType}
  354.      *
  355.      * @param dettaglioLineeType Object to be serialized
  356.      * @return Object to be serialized in byte array
  357.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  358.      */
  359.     public byte[] toByteArray(DettaglioLineeType dettaglioLineeType) throws SerializerException {
  360.         return this.objToXml(DettaglioLineeType.class, dettaglioLineeType, false).toByteArray();
  361.     }
  362.     /**
  363.      * Serialize to byte array the object <var>dettaglioLineeType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DettaglioLineeType}
  364.      *
  365.      * @param dettaglioLineeType Object to be serialized
  366.      * @param prettyPrint if true output the XML with indenting
  367.      * @return Object to be serialized in byte array
  368.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  369.      */
  370.     public byte[] toByteArray(DettaglioLineeType dettaglioLineeType,boolean prettyPrint) throws SerializerException {
  371.         return this.objToXml(DettaglioLineeType.class, dettaglioLineeType, prettyPrint).toByteArray();
  372.     }
  373.    
  374.     /**
  375.      * Serialize to String the object <var>dettaglioLineeType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DettaglioLineeType}
  376.      *
  377.      * @param dettaglioLineeType Object to be serialized
  378.      * @return Object to be serialized as String
  379.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  380.      */
  381.     public String toString(DettaglioLineeType dettaglioLineeType) throws SerializerException {
  382.         return this.objToXml(DettaglioLineeType.class, dettaglioLineeType, false).toString();
  383.     }
  384.     /**
  385.      * Serialize to String the object <var>dettaglioLineeType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DettaglioLineeType}
  386.      *
  387.      * @param dettaglioLineeType Object to be serialized
  388.      * @param prettyPrint if true output the XML with indenting
  389.      * @return Object to be serialized as String
  390.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  391.      */
  392.     public String toString(DettaglioLineeType dettaglioLineeType,boolean prettyPrint) throws SerializerException {
  393.         return this.objToXml(DettaglioLineeType.class, dettaglioLineeType, prettyPrint).toString();
  394.     }
  395.    
  396.    
  397.    
  398.     /*
  399.      =================================================================================
  400.      Object: ScontoMaggiorazioneType
  401.      =================================================================================
  402.     */
  403.    
  404.     /**
  405.      * Serialize to file system in <var>fileName</var> the object <var>scontoMaggiorazioneType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ScontoMaggiorazioneType}
  406.      *
  407.      * @param fileName Xml file to serialize the object <var>scontoMaggiorazioneType</var>
  408.      * @param scontoMaggiorazioneType Object to be serialized in xml file <var>fileName</var>
  409.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  410.      */
  411.     public void write(String fileName,ScontoMaggiorazioneType scontoMaggiorazioneType) throws SerializerException {
  412.         this.objToXml(fileName, ScontoMaggiorazioneType.class, scontoMaggiorazioneType, false);
  413.     }
  414.     /**
  415.      * Serialize to file system in <var>fileName</var> the object <var>scontoMaggiorazioneType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ScontoMaggiorazioneType}
  416.      *
  417.      * @param fileName Xml file to serialize the object <var>scontoMaggiorazioneType</var>
  418.      * @param scontoMaggiorazioneType Object to be serialized in xml file <var>fileName</var>
  419.      * @param prettyPrint if true output the XML with indenting
  420.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  421.      */
  422.     public void write(String fileName,ScontoMaggiorazioneType scontoMaggiorazioneType,boolean prettyPrint) throws SerializerException {
  423.         this.objToXml(fileName, ScontoMaggiorazioneType.class, scontoMaggiorazioneType, prettyPrint);
  424.     }
  425.    
  426.     /**
  427.      * Serialize to file system in <var>file</var> the object <var>scontoMaggiorazioneType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ScontoMaggiorazioneType}
  428.      *
  429.      * @param file Xml file to serialize the object <var>scontoMaggiorazioneType</var>
  430.      * @param scontoMaggiorazioneType Object to be serialized in xml file <var>fileName</var>
  431.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  432.      */
  433.     public void write(File file,ScontoMaggiorazioneType scontoMaggiorazioneType) throws SerializerException {
  434.         this.objToXml(file, ScontoMaggiorazioneType.class, scontoMaggiorazioneType, false);
  435.     }
  436.     /**
  437.      * Serialize to file system in <var>file</var> the object <var>scontoMaggiorazioneType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ScontoMaggiorazioneType}
  438.      *
  439.      * @param file Xml file to serialize the object <var>scontoMaggiorazioneType</var>
  440.      * @param scontoMaggiorazioneType Object to be serialized in xml file <var>fileName</var>
  441.      * @param prettyPrint if true output the XML with indenting
  442.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  443.      */
  444.     public void write(File file,ScontoMaggiorazioneType scontoMaggiorazioneType,boolean prettyPrint) throws SerializerException {
  445.         this.objToXml(file, ScontoMaggiorazioneType.class, scontoMaggiorazioneType, prettyPrint);
  446.     }
  447.    
  448.     /**
  449.      * Serialize to output stream <var>out</var> the object <var>scontoMaggiorazioneType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ScontoMaggiorazioneType}
  450.      *
  451.      * @param out OutputStream to serialize the object <var>scontoMaggiorazioneType</var>
  452.      * @param scontoMaggiorazioneType Object to be serialized in xml file <var>fileName</var>
  453.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  454.      */
  455.     public void write(OutputStream out,ScontoMaggiorazioneType scontoMaggiorazioneType) throws SerializerException {
  456.         this.objToXml(out, ScontoMaggiorazioneType.class, scontoMaggiorazioneType, false);
  457.     }
  458.     /**
  459.      * Serialize to output stream <var>out</var> the object <var>scontoMaggiorazioneType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ScontoMaggiorazioneType}
  460.      *
  461.      * @param out OutputStream to serialize the object <var>scontoMaggiorazioneType</var>
  462.      * @param scontoMaggiorazioneType Object to be serialized in xml file <var>fileName</var>
  463.      * @param prettyPrint if true output the XML with indenting
  464.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  465.      */
  466.     public void write(OutputStream out,ScontoMaggiorazioneType scontoMaggiorazioneType,boolean prettyPrint) throws SerializerException {
  467.         this.objToXml(out, ScontoMaggiorazioneType.class, scontoMaggiorazioneType, prettyPrint);
  468.     }
  469.            
  470.     /**
  471.      * Serialize to byte array the object <var>scontoMaggiorazioneType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ScontoMaggiorazioneType}
  472.      *
  473.      * @param scontoMaggiorazioneType Object to be serialized
  474.      * @return Object to be serialized in byte array
  475.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  476.      */
  477.     public byte[] toByteArray(ScontoMaggiorazioneType scontoMaggiorazioneType) throws SerializerException {
  478.         return this.objToXml(ScontoMaggiorazioneType.class, scontoMaggiorazioneType, false).toByteArray();
  479.     }
  480.     /**
  481.      * Serialize to byte array the object <var>scontoMaggiorazioneType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ScontoMaggiorazioneType}
  482.      *
  483.      * @param scontoMaggiorazioneType Object to be serialized
  484.      * @param prettyPrint if true output the XML with indenting
  485.      * @return Object to be serialized in byte array
  486.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  487.      */
  488.     public byte[] toByteArray(ScontoMaggiorazioneType scontoMaggiorazioneType,boolean prettyPrint) throws SerializerException {
  489.         return this.objToXml(ScontoMaggiorazioneType.class, scontoMaggiorazioneType, prettyPrint).toByteArray();
  490.     }
  491.    
  492.     /**
  493.      * Serialize to String the object <var>scontoMaggiorazioneType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ScontoMaggiorazioneType}
  494.      *
  495.      * @param scontoMaggiorazioneType Object to be serialized
  496.      * @return Object to be serialized as String
  497.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  498.      */
  499.     public String toString(ScontoMaggiorazioneType scontoMaggiorazioneType) throws SerializerException {
  500.         return this.objToXml(ScontoMaggiorazioneType.class, scontoMaggiorazioneType, false).toString();
  501.     }
  502.     /**
  503.      * Serialize to String the object <var>scontoMaggiorazioneType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ScontoMaggiorazioneType}
  504.      *
  505.      * @param scontoMaggiorazioneType Object to be serialized
  506.      * @param prettyPrint if true output the XML with indenting
  507.      * @return Object to be serialized as String
  508.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  509.      */
  510.     public String toString(ScontoMaggiorazioneType scontoMaggiorazioneType,boolean prettyPrint) throws SerializerException {
  511.         return this.objToXml(ScontoMaggiorazioneType.class, scontoMaggiorazioneType, prettyPrint).toString();
  512.     }
  513.    
  514.    
  515.    
  516.     /*
  517.      =================================================================================
  518.      Object: AltriDatiGestionaliType
  519.      =================================================================================
  520.     */
  521.    
  522.     /**
  523.      * Serialize to file system in <var>fileName</var> the object <var>altriDatiGestionaliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AltriDatiGestionaliType}
  524.      *
  525.      * @param fileName Xml file to serialize the object <var>altriDatiGestionaliType</var>
  526.      * @param altriDatiGestionaliType Object to be serialized in xml file <var>fileName</var>
  527.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  528.      */
  529.     public void write(String fileName,AltriDatiGestionaliType altriDatiGestionaliType) throws SerializerException {
  530.         this.objToXml(fileName, AltriDatiGestionaliType.class, altriDatiGestionaliType, false);
  531.     }
  532.     /**
  533.      * Serialize to file system in <var>fileName</var> the object <var>altriDatiGestionaliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AltriDatiGestionaliType}
  534.      *
  535.      * @param fileName Xml file to serialize the object <var>altriDatiGestionaliType</var>
  536.      * @param altriDatiGestionaliType Object to be serialized in xml file <var>fileName</var>
  537.      * @param prettyPrint if true output the XML with indenting
  538.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  539.      */
  540.     public void write(String fileName,AltriDatiGestionaliType altriDatiGestionaliType,boolean prettyPrint) throws SerializerException {
  541.         this.objToXml(fileName, AltriDatiGestionaliType.class, altriDatiGestionaliType, prettyPrint);
  542.     }
  543.    
  544.     /**
  545.      * Serialize to file system in <var>file</var> the object <var>altriDatiGestionaliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AltriDatiGestionaliType}
  546.      *
  547.      * @param file Xml file to serialize the object <var>altriDatiGestionaliType</var>
  548.      * @param altriDatiGestionaliType Object to be serialized in xml file <var>fileName</var>
  549.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  550.      */
  551.     public void write(File file,AltriDatiGestionaliType altriDatiGestionaliType) throws SerializerException {
  552.         this.objToXml(file, AltriDatiGestionaliType.class, altriDatiGestionaliType, false);
  553.     }
  554.     /**
  555.      * Serialize to file system in <var>file</var> the object <var>altriDatiGestionaliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AltriDatiGestionaliType}
  556.      *
  557.      * @param file Xml file to serialize the object <var>altriDatiGestionaliType</var>
  558.      * @param altriDatiGestionaliType Object to be serialized in xml file <var>fileName</var>
  559.      * @param prettyPrint if true output the XML with indenting
  560.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  561.      */
  562.     public void write(File file,AltriDatiGestionaliType altriDatiGestionaliType,boolean prettyPrint) throws SerializerException {
  563.         this.objToXml(file, AltriDatiGestionaliType.class, altriDatiGestionaliType, prettyPrint);
  564.     }
  565.    
  566.     /**
  567.      * Serialize to output stream <var>out</var> the object <var>altriDatiGestionaliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AltriDatiGestionaliType}
  568.      *
  569.      * @param out OutputStream to serialize the object <var>altriDatiGestionaliType</var>
  570.      * @param altriDatiGestionaliType Object to be serialized in xml file <var>fileName</var>
  571.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  572.      */
  573.     public void write(OutputStream out,AltriDatiGestionaliType altriDatiGestionaliType) throws SerializerException {
  574.         this.objToXml(out, AltriDatiGestionaliType.class, altriDatiGestionaliType, false);
  575.     }
  576.     /**
  577.      * Serialize to output stream <var>out</var> the object <var>altriDatiGestionaliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AltriDatiGestionaliType}
  578.      *
  579.      * @param out OutputStream to serialize the object <var>altriDatiGestionaliType</var>
  580.      * @param altriDatiGestionaliType Object to be serialized in xml file <var>fileName</var>
  581.      * @param prettyPrint if true output the XML with indenting
  582.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  583.      */
  584.     public void write(OutputStream out,AltriDatiGestionaliType altriDatiGestionaliType,boolean prettyPrint) throws SerializerException {
  585.         this.objToXml(out, AltriDatiGestionaliType.class, altriDatiGestionaliType, prettyPrint);
  586.     }
  587.            
  588.     /**
  589.      * Serialize to byte array the object <var>altriDatiGestionaliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AltriDatiGestionaliType}
  590.      *
  591.      * @param altriDatiGestionaliType Object to be serialized
  592.      * @return Object to be serialized in byte array
  593.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  594.      */
  595.     public byte[] toByteArray(AltriDatiGestionaliType altriDatiGestionaliType) throws SerializerException {
  596.         return this.objToXml(AltriDatiGestionaliType.class, altriDatiGestionaliType, false).toByteArray();
  597.     }
  598.     /**
  599.      * Serialize to byte array the object <var>altriDatiGestionaliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AltriDatiGestionaliType}
  600.      *
  601.      * @param altriDatiGestionaliType Object to be serialized
  602.      * @param prettyPrint if true output the XML with indenting
  603.      * @return Object to be serialized in byte array
  604.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  605.      */
  606.     public byte[] toByteArray(AltriDatiGestionaliType altriDatiGestionaliType,boolean prettyPrint) throws SerializerException {
  607.         return this.objToXml(AltriDatiGestionaliType.class, altriDatiGestionaliType, prettyPrint).toByteArray();
  608.     }
  609.    
  610.     /**
  611.      * Serialize to String the object <var>altriDatiGestionaliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AltriDatiGestionaliType}
  612.      *
  613.      * @param altriDatiGestionaliType Object to be serialized
  614.      * @return Object to be serialized as String
  615.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  616.      */
  617.     public String toString(AltriDatiGestionaliType altriDatiGestionaliType) throws SerializerException {
  618.         return this.objToXml(AltriDatiGestionaliType.class, altriDatiGestionaliType, false).toString();
  619.     }
  620.     /**
  621.      * Serialize to String the object <var>altriDatiGestionaliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AltriDatiGestionaliType}
  622.      *
  623.      * @param altriDatiGestionaliType Object to be serialized
  624.      * @param prettyPrint if true output the XML with indenting
  625.      * @return Object to be serialized as String
  626.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  627.      */
  628.     public String toString(AltriDatiGestionaliType altriDatiGestionaliType,boolean prettyPrint) throws SerializerException {
  629.         return this.objToXml(AltriDatiGestionaliType.class, altriDatiGestionaliType, prettyPrint).toString();
  630.     }
  631.    
  632.    
  633.    
  634.     /*
  635.      =================================================================================
  636.      Object: DatiDocumentiCorrelatiType
  637.      =================================================================================
  638.     */
  639.    
  640.     /**
  641.      * Serialize to file system in <var>fileName</var> the object <var>datiDocumentiCorrelatiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiDocumentiCorrelatiType}
  642.      *
  643.      * @param fileName Xml file to serialize the object <var>datiDocumentiCorrelatiType</var>
  644.      * @param datiDocumentiCorrelatiType Object to be serialized in xml file <var>fileName</var>
  645.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  646.      */
  647.     public void write(String fileName,DatiDocumentiCorrelatiType datiDocumentiCorrelatiType) throws SerializerException {
  648.         this.objToXml(fileName, DatiDocumentiCorrelatiType.class, datiDocumentiCorrelatiType, false);
  649.     }
  650.     /**
  651.      * Serialize to file system in <var>fileName</var> the object <var>datiDocumentiCorrelatiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiDocumentiCorrelatiType}
  652.      *
  653.      * @param fileName Xml file to serialize the object <var>datiDocumentiCorrelatiType</var>
  654.      * @param datiDocumentiCorrelatiType Object to be serialized in xml file <var>fileName</var>
  655.      * @param prettyPrint if true output the XML with indenting
  656.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  657.      */
  658.     public void write(String fileName,DatiDocumentiCorrelatiType datiDocumentiCorrelatiType,boolean prettyPrint) throws SerializerException {
  659.         this.objToXml(fileName, DatiDocumentiCorrelatiType.class, datiDocumentiCorrelatiType, prettyPrint);
  660.     }
  661.    
  662.     /**
  663.      * Serialize to file system in <var>file</var> the object <var>datiDocumentiCorrelatiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiDocumentiCorrelatiType}
  664.      *
  665.      * @param file Xml file to serialize the object <var>datiDocumentiCorrelatiType</var>
  666.      * @param datiDocumentiCorrelatiType Object to be serialized in xml file <var>fileName</var>
  667.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  668.      */
  669.     public void write(File file,DatiDocumentiCorrelatiType datiDocumentiCorrelatiType) throws SerializerException {
  670.         this.objToXml(file, DatiDocumentiCorrelatiType.class, datiDocumentiCorrelatiType, false);
  671.     }
  672.     /**
  673.      * Serialize to file system in <var>file</var> the object <var>datiDocumentiCorrelatiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiDocumentiCorrelatiType}
  674.      *
  675.      * @param file Xml file to serialize the object <var>datiDocumentiCorrelatiType</var>
  676.      * @param datiDocumentiCorrelatiType Object to be serialized in xml file <var>fileName</var>
  677.      * @param prettyPrint if true output the XML with indenting
  678.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  679.      */
  680.     public void write(File file,DatiDocumentiCorrelatiType datiDocumentiCorrelatiType,boolean prettyPrint) throws SerializerException {
  681.         this.objToXml(file, DatiDocumentiCorrelatiType.class, datiDocumentiCorrelatiType, prettyPrint);
  682.     }
  683.    
  684.     /**
  685.      * Serialize to output stream <var>out</var> the object <var>datiDocumentiCorrelatiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiDocumentiCorrelatiType}
  686.      *
  687.      * @param out OutputStream to serialize the object <var>datiDocumentiCorrelatiType</var>
  688.      * @param datiDocumentiCorrelatiType Object to be serialized in xml file <var>fileName</var>
  689.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  690.      */
  691.     public void write(OutputStream out,DatiDocumentiCorrelatiType datiDocumentiCorrelatiType) throws SerializerException {
  692.         this.objToXml(out, DatiDocumentiCorrelatiType.class, datiDocumentiCorrelatiType, false);
  693.     }
  694.     /**
  695.      * Serialize to output stream <var>out</var> the object <var>datiDocumentiCorrelatiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiDocumentiCorrelatiType}
  696.      *
  697.      * @param out OutputStream to serialize the object <var>datiDocumentiCorrelatiType</var>
  698.      * @param datiDocumentiCorrelatiType Object to be serialized in xml file <var>fileName</var>
  699.      * @param prettyPrint if true output the XML with indenting
  700.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  701.      */
  702.     public void write(OutputStream out,DatiDocumentiCorrelatiType datiDocumentiCorrelatiType,boolean prettyPrint) throws SerializerException {
  703.         this.objToXml(out, DatiDocumentiCorrelatiType.class, datiDocumentiCorrelatiType, prettyPrint);
  704.     }
  705.            
  706.     /**
  707.      * Serialize to byte array the object <var>datiDocumentiCorrelatiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiDocumentiCorrelatiType}
  708.      *
  709.      * @param datiDocumentiCorrelatiType Object to be serialized
  710.      * @return Object to be serialized in byte array
  711.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  712.      */
  713.     public byte[] toByteArray(DatiDocumentiCorrelatiType datiDocumentiCorrelatiType) throws SerializerException {
  714.         return this.objToXml(DatiDocumentiCorrelatiType.class, datiDocumentiCorrelatiType, false).toByteArray();
  715.     }
  716.     /**
  717.      * Serialize to byte array the object <var>datiDocumentiCorrelatiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiDocumentiCorrelatiType}
  718.      *
  719.      * @param datiDocumentiCorrelatiType Object to be serialized
  720.      * @param prettyPrint if true output the XML with indenting
  721.      * @return Object to be serialized in byte array
  722.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  723.      */
  724.     public byte[] toByteArray(DatiDocumentiCorrelatiType datiDocumentiCorrelatiType,boolean prettyPrint) throws SerializerException {
  725.         return this.objToXml(DatiDocumentiCorrelatiType.class, datiDocumentiCorrelatiType, prettyPrint).toByteArray();
  726.     }
  727.    
  728.     /**
  729.      * Serialize to String the object <var>datiDocumentiCorrelatiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiDocumentiCorrelatiType}
  730.      *
  731.      * @param datiDocumentiCorrelatiType Object to be serialized
  732.      * @return Object to be serialized as String
  733.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  734.      */
  735.     public String toString(DatiDocumentiCorrelatiType datiDocumentiCorrelatiType) throws SerializerException {
  736.         return this.objToXml(DatiDocumentiCorrelatiType.class, datiDocumentiCorrelatiType, false).toString();
  737.     }
  738.     /**
  739.      * Serialize to String the object <var>datiDocumentiCorrelatiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiDocumentiCorrelatiType}
  740.      *
  741.      * @param datiDocumentiCorrelatiType Object to be serialized
  742.      * @param prettyPrint if true output the XML with indenting
  743.      * @return Object to be serialized as String
  744.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  745.      */
  746.     public String toString(DatiDocumentiCorrelatiType datiDocumentiCorrelatiType,boolean prettyPrint) throws SerializerException {
  747.         return this.objToXml(DatiDocumentiCorrelatiType.class, datiDocumentiCorrelatiType, prettyPrint).toString();
  748.     }
  749.    
  750.    
  751.    
  752.     /*
  753.      =================================================================================
  754.      Object: DatiRitenutaType
  755.      =================================================================================
  756.     */
  757.    
  758.     /**
  759.      * Serialize to file system in <var>fileName</var> the object <var>datiRitenutaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiRitenutaType}
  760.      *
  761.      * @param fileName Xml file to serialize the object <var>datiRitenutaType</var>
  762.      * @param datiRitenutaType Object to be serialized in xml file <var>fileName</var>
  763.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  764.      */
  765.     public void write(String fileName,DatiRitenutaType datiRitenutaType) throws SerializerException {
  766.         this.objToXml(fileName, DatiRitenutaType.class, datiRitenutaType, false);
  767.     }
  768.     /**
  769.      * Serialize to file system in <var>fileName</var> the object <var>datiRitenutaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiRitenutaType}
  770.      *
  771.      * @param fileName Xml file to serialize the object <var>datiRitenutaType</var>
  772.      * @param datiRitenutaType Object to be serialized in xml file <var>fileName</var>
  773.      * @param prettyPrint if true output the XML with indenting
  774.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  775.      */
  776.     public void write(String fileName,DatiRitenutaType datiRitenutaType,boolean prettyPrint) throws SerializerException {
  777.         this.objToXml(fileName, DatiRitenutaType.class, datiRitenutaType, prettyPrint);
  778.     }
  779.    
  780.     /**
  781.      * Serialize to file system in <var>file</var> the object <var>datiRitenutaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiRitenutaType}
  782.      *
  783.      * @param file Xml file to serialize the object <var>datiRitenutaType</var>
  784.      * @param datiRitenutaType Object to be serialized in xml file <var>fileName</var>
  785.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  786.      */
  787.     public void write(File file,DatiRitenutaType datiRitenutaType) throws SerializerException {
  788.         this.objToXml(file, DatiRitenutaType.class, datiRitenutaType, false);
  789.     }
  790.     /**
  791.      * Serialize to file system in <var>file</var> the object <var>datiRitenutaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiRitenutaType}
  792.      *
  793.      * @param file Xml file to serialize the object <var>datiRitenutaType</var>
  794.      * @param datiRitenutaType Object to be serialized in xml file <var>fileName</var>
  795.      * @param prettyPrint if true output the XML with indenting
  796.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  797.      */
  798.     public void write(File file,DatiRitenutaType datiRitenutaType,boolean prettyPrint) throws SerializerException {
  799.         this.objToXml(file, DatiRitenutaType.class, datiRitenutaType, prettyPrint);
  800.     }
  801.    
  802.     /**
  803.      * Serialize to output stream <var>out</var> the object <var>datiRitenutaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiRitenutaType}
  804.      *
  805.      * @param out OutputStream to serialize the object <var>datiRitenutaType</var>
  806.      * @param datiRitenutaType Object to be serialized in xml file <var>fileName</var>
  807.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  808.      */
  809.     public void write(OutputStream out,DatiRitenutaType datiRitenutaType) throws SerializerException {
  810.         this.objToXml(out, DatiRitenutaType.class, datiRitenutaType, false);
  811.     }
  812.     /**
  813.      * Serialize to output stream <var>out</var> the object <var>datiRitenutaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiRitenutaType}
  814.      *
  815.      * @param out OutputStream to serialize the object <var>datiRitenutaType</var>
  816.      * @param datiRitenutaType Object to be serialized in xml file <var>fileName</var>
  817.      * @param prettyPrint if true output the XML with indenting
  818.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  819.      */
  820.     public void write(OutputStream out,DatiRitenutaType datiRitenutaType,boolean prettyPrint) throws SerializerException {
  821.         this.objToXml(out, DatiRitenutaType.class, datiRitenutaType, prettyPrint);
  822.     }
  823.            
  824.     /**
  825.      * Serialize to byte array the object <var>datiRitenutaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiRitenutaType}
  826.      *
  827.      * @param datiRitenutaType Object to be serialized
  828.      * @return Object to be serialized in byte array
  829.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  830.      */
  831.     public byte[] toByteArray(DatiRitenutaType datiRitenutaType) throws SerializerException {
  832.         return this.objToXml(DatiRitenutaType.class, datiRitenutaType, false).toByteArray();
  833.     }
  834.     /**
  835.      * Serialize to byte array the object <var>datiRitenutaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiRitenutaType}
  836.      *
  837.      * @param datiRitenutaType Object to be serialized
  838.      * @param prettyPrint if true output the XML with indenting
  839.      * @return Object to be serialized in byte array
  840.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  841.      */
  842.     public byte[] toByteArray(DatiRitenutaType datiRitenutaType,boolean prettyPrint) throws SerializerException {
  843.         return this.objToXml(DatiRitenutaType.class, datiRitenutaType, prettyPrint).toByteArray();
  844.     }
  845.    
  846.     /**
  847.      * Serialize to String the object <var>datiRitenutaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiRitenutaType}
  848.      *
  849.      * @param datiRitenutaType Object to be serialized
  850.      * @return Object to be serialized as String
  851.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  852.      */
  853.     public String toString(DatiRitenutaType datiRitenutaType) throws SerializerException {
  854.         return this.objToXml(DatiRitenutaType.class, datiRitenutaType, false).toString();
  855.     }
  856.     /**
  857.      * Serialize to String the object <var>datiRitenutaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiRitenutaType}
  858.      *
  859.      * @param datiRitenutaType Object to be serialized
  860.      * @param prettyPrint if true output the XML with indenting
  861.      * @return Object to be serialized as String
  862.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  863.      */
  864.     public String toString(DatiRitenutaType datiRitenutaType,boolean prettyPrint) throws SerializerException {
  865.         return this.objToXml(DatiRitenutaType.class, datiRitenutaType, prettyPrint).toString();
  866.     }
  867.    
  868.    
  869.    
  870.     /*
  871.      =================================================================================
  872.      Object: DatiAnagraficiTerzoIntermediarioType
  873.      =================================================================================
  874.     */
  875.    
  876.     /**
  877.      * Serialize to file system in <var>fileName</var> the object <var>datiAnagraficiTerzoIntermediarioType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiTerzoIntermediarioType}
  878.      *
  879.      * @param fileName Xml file to serialize the object <var>datiAnagraficiTerzoIntermediarioType</var>
  880.      * @param datiAnagraficiTerzoIntermediarioType Object to be serialized in xml file <var>fileName</var>
  881.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  882.      */
  883.     public void write(String fileName,DatiAnagraficiTerzoIntermediarioType datiAnagraficiTerzoIntermediarioType) throws SerializerException {
  884.         this.objToXml(fileName, DatiAnagraficiTerzoIntermediarioType.class, datiAnagraficiTerzoIntermediarioType, false);
  885.     }
  886.     /**
  887.      * Serialize to file system in <var>fileName</var> the object <var>datiAnagraficiTerzoIntermediarioType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiTerzoIntermediarioType}
  888.      *
  889.      * @param fileName Xml file to serialize the object <var>datiAnagraficiTerzoIntermediarioType</var>
  890.      * @param datiAnagraficiTerzoIntermediarioType Object to be serialized in xml file <var>fileName</var>
  891.      * @param prettyPrint if true output the XML with indenting
  892.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  893.      */
  894.     public void write(String fileName,DatiAnagraficiTerzoIntermediarioType datiAnagraficiTerzoIntermediarioType,boolean prettyPrint) throws SerializerException {
  895.         this.objToXml(fileName, DatiAnagraficiTerzoIntermediarioType.class, datiAnagraficiTerzoIntermediarioType, prettyPrint);
  896.     }
  897.    
  898.     /**
  899.      * Serialize to file system in <var>file</var> the object <var>datiAnagraficiTerzoIntermediarioType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiTerzoIntermediarioType}
  900.      *
  901.      * @param file Xml file to serialize the object <var>datiAnagraficiTerzoIntermediarioType</var>
  902.      * @param datiAnagraficiTerzoIntermediarioType Object to be serialized in xml file <var>fileName</var>
  903.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  904.      */
  905.     public void write(File file,DatiAnagraficiTerzoIntermediarioType datiAnagraficiTerzoIntermediarioType) throws SerializerException {
  906.         this.objToXml(file, DatiAnagraficiTerzoIntermediarioType.class, datiAnagraficiTerzoIntermediarioType, false);
  907.     }
  908.     /**
  909.      * Serialize to file system in <var>file</var> the object <var>datiAnagraficiTerzoIntermediarioType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiTerzoIntermediarioType}
  910.      *
  911.      * @param file Xml file to serialize the object <var>datiAnagraficiTerzoIntermediarioType</var>
  912.      * @param datiAnagraficiTerzoIntermediarioType Object to be serialized in xml file <var>fileName</var>
  913.      * @param prettyPrint if true output the XML with indenting
  914.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  915.      */
  916.     public void write(File file,DatiAnagraficiTerzoIntermediarioType datiAnagraficiTerzoIntermediarioType,boolean prettyPrint) throws SerializerException {
  917.         this.objToXml(file, DatiAnagraficiTerzoIntermediarioType.class, datiAnagraficiTerzoIntermediarioType, prettyPrint);
  918.     }
  919.    
  920.     /**
  921.      * Serialize to output stream <var>out</var> the object <var>datiAnagraficiTerzoIntermediarioType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiTerzoIntermediarioType}
  922.      *
  923.      * @param out OutputStream to serialize the object <var>datiAnagraficiTerzoIntermediarioType</var>
  924.      * @param datiAnagraficiTerzoIntermediarioType Object to be serialized in xml file <var>fileName</var>
  925.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  926.      */
  927.     public void write(OutputStream out,DatiAnagraficiTerzoIntermediarioType datiAnagraficiTerzoIntermediarioType) throws SerializerException {
  928.         this.objToXml(out, DatiAnagraficiTerzoIntermediarioType.class, datiAnagraficiTerzoIntermediarioType, false);
  929.     }
  930.     /**
  931.      * Serialize to output stream <var>out</var> the object <var>datiAnagraficiTerzoIntermediarioType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiTerzoIntermediarioType}
  932.      *
  933.      * @param out OutputStream to serialize the object <var>datiAnagraficiTerzoIntermediarioType</var>
  934.      * @param datiAnagraficiTerzoIntermediarioType Object to be serialized in xml file <var>fileName</var>
  935.      * @param prettyPrint if true output the XML with indenting
  936.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  937.      */
  938.     public void write(OutputStream out,DatiAnagraficiTerzoIntermediarioType datiAnagraficiTerzoIntermediarioType,boolean prettyPrint) throws SerializerException {
  939.         this.objToXml(out, DatiAnagraficiTerzoIntermediarioType.class, datiAnagraficiTerzoIntermediarioType, prettyPrint);
  940.     }
  941.            
  942.     /**
  943.      * Serialize to byte array the object <var>datiAnagraficiTerzoIntermediarioType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiTerzoIntermediarioType}
  944.      *
  945.      * @param datiAnagraficiTerzoIntermediarioType Object to be serialized
  946.      * @return Object to be serialized in byte array
  947.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  948.      */
  949.     public byte[] toByteArray(DatiAnagraficiTerzoIntermediarioType datiAnagraficiTerzoIntermediarioType) throws SerializerException {
  950.         return this.objToXml(DatiAnagraficiTerzoIntermediarioType.class, datiAnagraficiTerzoIntermediarioType, false).toByteArray();
  951.     }
  952.     /**
  953.      * Serialize to byte array the object <var>datiAnagraficiTerzoIntermediarioType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiTerzoIntermediarioType}
  954.      *
  955.      * @param datiAnagraficiTerzoIntermediarioType Object to be serialized
  956.      * @param prettyPrint if true output the XML with indenting
  957.      * @return Object to be serialized in byte array
  958.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  959.      */
  960.     public byte[] toByteArray(DatiAnagraficiTerzoIntermediarioType datiAnagraficiTerzoIntermediarioType,boolean prettyPrint) throws SerializerException {
  961.         return this.objToXml(DatiAnagraficiTerzoIntermediarioType.class, datiAnagraficiTerzoIntermediarioType, prettyPrint).toByteArray();
  962.     }
  963.    
  964.     /**
  965.      * Serialize to String the object <var>datiAnagraficiTerzoIntermediarioType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiTerzoIntermediarioType}
  966.      *
  967.      * @param datiAnagraficiTerzoIntermediarioType Object to be serialized
  968.      * @return Object to be serialized as String
  969.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  970.      */
  971.     public String toString(DatiAnagraficiTerzoIntermediarioType datiAnagraficiTerzoIntermediarioType) throws SerializerException {
  972.         return this.objToXml(DatiAnagraficiTerzoIntermediarioType.class, datiAnagraficiTerzoIntermediarioType, false).toString();
  973.     }
  974.     /**
  975.      * Serialize to String the object <var>datiAnagraficiTerzoIntermediarioType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiTerzoIntermediarioType}
  976.      *
  977.      * @param datiAnagraficiTerzoIntermediarioType Object to be serialized
  978.      * @param prettyPrint if true output the XML with indenting
  979.      * @return Object to be serialized as String
  980.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  981.      */
  982.     public String toString(DatiAnagraficiTerzoIntermediarioType datiAnagraficiTerzoIntermediarioType,boolean prettyPrint) throws SerializerException {
  983.         return this.objToXml(DatiAnagraficiTerzoIntermediarioType.class, datiAnagraficiTerzoIntermediarioType, prettyPrint).toString();
  984.     }
  985.    
  986.    
  987.    
  988.     /*
  989.      =================================================================================
  990.      Object: TerzoIntermediarioSoggettoEmittenteType
  991.      =================================================================================
  992.     */
  993.    
  994.     /**
  995.      * Serialize to file system in <var>fileName</var> the object <var>terzoIntermediarioSoggettoEmittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.TerzoIntermediarioSoggettoEmittenteType}
  996.      *
  997.      * @param fileName Xml file to serialize the object <var>terzoIntermediarioSoggettoEmittenteType</var>
  998.      * @param terzoIntermediarioSoggettoEmittenteType Object to be serialized in xml file <var>fileName</var>
  999.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1000.      */
  1001.     public void write(String fileName,TerzoIntermediarioSoggettoEmittenteType terzoIntermediarioSoggettoEmittenteType) throws SerializerException {
  1002.         this.objToXml(fileName, TerzoIntermediarioSoggettoEmittenteType.class, terzoIntermediarioSoggettoEmittenteType, false);
  1003.     }
  1004.     /**
  1005.      * Serialize to file system in <var>fileName</var> the object <var>terzoIntermediarioSoggettoEmittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.TerzoIntermediarioSoggettoEmittenteType}
  1006.      *
  1007.      * @param fileName Xml file to serialize the object <var>terzoIntermediarioSoggettoEmittenteType</var>
  1008.      * @param terzoIntermediarioSoggettoEmittenteType Object to be serialized in xml file <var>fileName</var>
  1009.      * @param prettyPrint if true output the XML with indenting
  1010.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1011.      */
  1012.     public void write(String fileName,TerzoIntermediarioSoggettoEmittenteType terzoIntermediarioSoggettoEmittenteType,boolean prettyPrint) throws SerializerException {
  1013.         this.objToXml(fileName, TerzoIntermediarioSoggettoEmittenteType.class, terzoIntermediarioSoggettoEmittenteType, prettyPrint);
  1014.     }
  1015.    
  1016.     /**
  1017.      * Serialize to file system in <var>file</var> the object <var>terzoIntermediarioSoggettoEmittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.TerzoIntermediarioSoggettoEmittenteType}
  1018.      *
  1019.      * @param file Xml file to serialize the object <var>terzoIntermediarioSoggettoEmittenteType</var>
  1020.      * @param terzoIntermediarioSoggettoEmittenteType Object to be serialized in xml file <var>fileName</var>
  1021.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1022.      */
  1023.     public void write(File file,TerzoIntermediarioSoggettoEmittenteType terzoIntermediarioSoggettoEmittenteType) throws SerializerException {
  1024.         this.objToXml(file, TerzoIntermediarioSoggettoEmittenteType.class, terzoIntermediarioSoggettoEmittenteType, false);
  1025.     }
  1026.     /**
  1027.      * Serialize to file system in <var>file</var> the object <var>terzoIntermediarioSoggettoEmittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.TerzoIntermediarioSoggettoEmittenteType}
  1028.      *
  1029.      * @param file Xml file to serialize the object <var>terzoIntermediarioSoggettoEmittenteType</var>
  1030.      * @param terzoIntermediarioSoggettoEmittenteType Object to be serialized in xml file <var>fileName</var>
  1031.      * @param prettyPrint if true output the XML with indenting
  1032.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1033.      */
  1034.     public void write(File file,TerzoIntermediarioSoggettoEmittenteType terzoIntermediarioSoggettoEmittenteType,boolean prettyPrint) throws SerializerException {
  1035.         this.objToXml(file, TerzoIntermediarioSoggettoEmittenteType.class, terzoIntermediarioSoggettoEmittenteType, prettyPrint);
  1036.     }
  1037.    
  1038.     /**
  1039.      * Serialize to output stream <var>out</var> the object <var>terzoIntermediarioSoggettoEmittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.TerzoIntermediarioSoggettoEmittenteType}
  1040.      *
  1041.      * @param out OutputStream to serialize the object <var>terzoIntermediarioSoggettoEmittenteType</var>
  1042.      * @param terzoIntermediarioSoggettoEmittenteType Object to be serialized in xml file <var>fileName</var>
  1043.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1044.      */
  1045.     public void write(OutputStream out,TerzoIntermediarioSoggettoEmittenteType terzoIntermediarioSoggettoEmittenteType) throws SerializerException {
  1046.         this.objToXml(out, TerzoIntermediarioSoggettoEmittenteType.class, terzoIntermediarioSoggettoEmittenteType, false);
  1047.     }
  1048.     /**
  1049.      * Serialize to output stream <var>out</var> the object <var>terzoIntermediarioSoggettoEmittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.TerzoIntermediarioSoggettoEmittenteType}
  1050.      *
  1051.      * @param out OutputStream to serialize the object <var>terzoIntermediarioSoggettoEmittenteType</var>
  1052.      * @param terzoIntermediarioSoggettoEmittenteType Object to be serialized in xml file <var>fileName</var>
  1053.      * @param prettyPrint if true output the XML with indenting
  1054.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1055.      */
  1056.     public void write(OutputStream out,TerzoIntermediarioSoggettoEmittenteType terzoIntermediarioSoggettoEmittenteType,boolean prettyPrint) throws SerializerException {
  1057.         this.objToXml(out, TerzoIntermediarioSoggettoEmittenteType.class, terzoIntermediarioSoggettoEmittenteType, prettyPrint);
  1058.     }
  1059.            
  1060.     /**
  1061.      * Serialize to byte array the object <var>terzoIntermediarioSoggettoEmittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.TerzoIntermediarioSoggettoEmittenteType}
  1062.      *
  1063.      * @param terzoIntermediarioSoggettoEmittenteType Object to be serialized
  1064.      * @return Object to be serialized in byte array
  1065.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1066.      */
  1067.     public byte[] toByteArray(TerzoIntermediarioSoggettoEmittenteType terzoIntermediarioSoggettoEmittenteType) throws SerializerException {
  1068.         return this.objToXml(TerzoIntermediarioSoggettoEmittenteType.class, terzoIntermediarioSoggettoEmittenteType, false).toByteArray();
  1069.     }
  1070.     /**
  1071.      * Serialize to byte array the object <var>terzoIntermediarioSoggettoEmittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.TerzoIntermediarioSoggettoEmittenteType}
  1072.      *
  1073.      * @param terzoIntermediarioSoggettoEmittenteType Object to be serialized
  1074.      * @param prettyPrint if true output the XML with indenting
  1075.      * @return Object to be serialized in byte array
  1076.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1077.      */
  1078.     public byte[] toByteArray(TerzoIntermediarioSoggettoEmittenteType terzoIntermediarioSoggettoEmittenteType,boolean prettyPrint) throws SerializerException {
  1079.         return this.objToXml(TerzoIntermediarioSoggettoEmittenteType.class, terzoIntermediarioSoggettoEmittenteType, prettyPrint).toByteArray();
  1080.     }
  1081.    
  1082.     /**
  1083.      * Serialize to String the object <var>terzoIntermediarioSoggettoEmittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.TerzoIntermediarioSoggettoEmittenteType}
  1084.      *
  1085.      * @param terzoIntermediarioSoggettoEmittenteType Object to be serialized
  1086.      * @return Object to be serialized as String
  1087.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1088.      */
  1089.     public String toString(TerzoIntermediarioSoggettoEmittenteType terzoIntermediarioSoggettoEmittenteType) throws SerializerException {
  1090.         return this.objToXml(TerzoIntermediarioSoggettoEmittenteType.class, terzoIntermediarioSoggettoEmittenteType, false).toString();
  1091.     }
  1092.     /**
  1093.      * Serialize to String the object <var>terzoIntermediarioSoggettoEmittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.TerzoIntermediarioSoggettoEmittenteType}
  1094.      *
  1095.      * @param terzoIntermediarioSoggettoEmittenteType Object to be serialized
  1096.      * @param prettyPrint if true output the XML with indenting
  1097.      * @return Object to be serialized as String
  1098.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1099.      */
  1100.     public String toString(TerzoIntermediarioSoggettoEmittenteType terzoIntermediarioSoggettoEmittenteType,boolean prettyPrint) throws SerializerException {
  1101.         return this.objToXml(TerzoIntermediarioSoggettoEmittenteType.class, terzoIntermediarioSoggettoEmittenteType, prettyPrint).toString();
  1102.     }
  1103.    
  1104.    
  1105.    
  1106.     /*
  1107.      =================================================================================
  1108.      Object: DettaglioPagamentoType
  1109.      =================================================================================
  1110.     */
  1111.    
  1112.     /**
  1113.      * Serialize to file system in <var>fileName</var> the object <var>dettaglioPagamentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DettaglioPagamentoType}
  1114.      *
  1115.      * @param fileName Xml file to serialize the object <var>dettaglioPagamentoType</var>
  1116.      * @param dettaglioPagamentoType Object to be serialized in xml file <var>fileName</var>
  1117.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1118.      */
  1119.     public void write(String fileName,DettaglioPagamentoType dettaglioPagamentoType) throws SerializerException {
  1120.         this.objToXml(fileName, DettaglioPagamentoType.class, dettaglioPagamentoType, false);
  1121.     }
  1122.     /**
  1123.      * Serialize to file system in <var>fileName</var> the object <var>dettaglioPagamentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DettaglioPagamentoType}
  1124.      *
  1125.      * @param fileName Xml file to serialize the object <var>dettaglioPagamentoType</var>
  1126.      * @param dettaglioPagamentoType Object to be serialized in xml file <var>fileName</var>
  1127.      * @param prettyPrint if true output the XML with indenting
  1128.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1129.      */
  1130.     public void write(String fileName,DettaglioPagamentoType dettaglioPagamentoType,boolean prettyPrint) throws SerializerException {
  1131.         this.objToXml(fileName, DettaglioPagamentoType.class, dettaglioPagamentoType, prettyPrint);
  1132.     }
  1133.    
  1134.     /**
  1135.      * Serialize to file system in <var>file</var> the object <var>dettaglioPagamentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DettaglioPagamentoType}
  1136.      *
  1137.      * @param file Xml file to serialize the object <var>dettaglioPagamentoType</var>
  1138.      * @param dettaglioPagamentoType Object to be serialized in xml file <var>fileName</var>
  1139.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1140.      */
  1141.     public void write(File file,DettaglioPagamentoType dettaglioPagamentoType) throws SerializerException {
  1142.         this.objToXml(file, DettaglioPagamentoType.class, dettaglioPagamentoType, false);
  1143.     }
  1144.     /**
  1145.      * Serialize to file system in <var>file</var> the object <var>dettaglioPagamentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DettaglioPagamentoType}
  1146.      *
  1147.      * @param file Xml file to serialize the object <var>dettaglioPagamentoType</var>
  1148.      * @param dettaglioPagamentoType Object to be serialized in xml file <var>fileName</var>
  1149.      * @param prettyPrint if true output the XML with indenting
  1150.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1151.      */
  1152.     public void write(File file,DettaglioPagamentoType dettaglioPagamentoType,boolean prettyPrint) throws SerializerException {
  1153.         this.objToXml(file, DettaglioPagamentoType.class, dettaglioPagamentoType, prettyPrint);
  1154.     }
  1155.    
  1156.     /**
  1157.      * Serialize to output stream <var>out</var> the object <var>dettaglioPagamentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DettaglioPagamentoType}
  1158.      *
  1159.      * @param out OutputStream to serialize the object <var>dettaglioPagamentoType</var>
  1160.      * @param dettaglioPagamentoType Object to be serialized in xml file <var>fileName</var>
  1161.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1162.      */
  1163.     public void write(OutputStream out,DettaglioPagamentoType dettaglioPagamentoType) throws SerializerException {
  1164.         this.objToXml(out, DettaglioPagamentoType.class, dettaglioPagamentoType, false);
  1165.     }
  1166.     /**
  1167.      * Serialize to output stream <var>out</var> the object <var>dettaglioPagamentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DettaglioPagamentoType}
  1168.      *
  1169.      * @param out OutputStream to serialize the object <var>dettaglioPagamentoType</var>
  1170.      * @param dettaglioPagamentoType Object to be serialized in xml file <var>fileName</var>
  1171.      * @param prettyPrint if true output the XML with indenting
  1172.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1173.      */
  1174.     public void write(OutputStream out,DettaglioPagamentoType dettaglioPagamentoType,boolean prettyPrint) throws SerializerException {
  1175.         this.objToXml(out, DettaglioPagamentoType.class, dettaglioPagamentoType, prettyPrint);
  1176.     }
  1177.            
  1178.     /**
  1179.      * Serialize to byte array the object <var>dettaglioPagamentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DettaglioPagamentoType}
  1180.      *
  1181.      * @param dettaglioPagamentoType Object to be serialized
  1182.      * @return Object to be serialized in byte array
  1183.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1184.      */
  1185.     public byte[] toByteArray(DettaglioPagamentoType dettaglioPagamentoType) throws SerializerException {
  1186.         return this.objToXml(DettaglioPagamentoType.class, dettaglioPagamentoType, false).toByteArray();
  1187.     }
  1188.     /**
  1189.      * Serialize to byte array the object <var>dettaglioPagamentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DettaglioPagamentoType}
  1190.      *
  1191.      * @param dettaglioPagamentoType Object to be serialized
  1192.      * @param prettyPrint if true output the XML with indenting
  1193.      * @return Object to be serialized in byte array
  1194.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1195.      */
  1196.     public byte[] toByteArray(DettaglioPagamentoType dettaglioPagamentoType,boolean prettyPrint) throws SerializerException {
  1197.         return this.objToXml(DettaglioPagamentoType.class, dettaglioPagamentoType, prettyPrint).toByteArray();
  1198.     }
  1199.    
  1200.     /**
  1201.      * Serialize to String the object <var>dettaglioPagamentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DettaglioPagamentoType}
  1202.      *
  1203.      * @param dettaglioPagamentoType Object to be serialized
  1204.      * @return Object to be serialized as String
  1205.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1206.      */
  1207.     public String toString(DettaglioPagamentoType dettaglioPagamentoType) throws SerializerException {
  1208.         return this.objToXml(DettaglioPagamentoType.class, dettaglioPagamentoType, false).toString();
  1209.     }
  1210.     /**
  1211.      * Serialize to String the object <var>dettaglioPagamentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DettaglioPagamentoType}
  1212.      *
  1213.      * @param dettaglioPagamentoType Object to be serialized
  1214.      * @param prettyPrint if true output the XML with indenting
  1215.      * @return Object to be serialized as String
  1216.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1217.      */
  1218.     public String toString(DettaglioPagamentoType dettaglioPagamentoType,boolean prettyPrint) throws SerializerException {
  1219.         return this.objToXml(DettaglioPagamentoType.class, dettaglioPagamentoType, prettyPrint).toString();
  1220.     }
  1221.    
  1222.    
  1223.    
  1224.     /*
  1225.      =================================================================================
  1226.      Object: IdFiscaleType
  1227.      =================================================================================
  1228.     */
  1229.    
  1230.     /**
  1231.      * Serialize to file system in <var>fileName</var> the object <var>idFiscaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IdFiscaleType}
  1232.      *
  1233.      * @param fileName Xml file to serialize the object <var>idFiscaleType</var>
  1234.      * @param idFiscaleType Object to be serialized in xml file <var>fileName</var>
  1235.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1236.      */
  1237.     public void write(String fileName,IdFiscaleType idFiscaleType) throws SerializerException {
  1238.         this.objToXml(fileName, IdFiscaleType.class, idFiscaleType, false);
  1239.     }
  1240.     /**
  1241.      * Serialize to file system in <var>fileName</var> the object <var>idFiscaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IdFiscaleType}
  1242.      *
  1243.      * @param fileName Xml file to serialize the object <var>idFiscaleType</var>
  1244.      * @param idFiscaleType Object to be serialized in xml file <var>fileName</var>
  1245.      * @param prettyPrint if true output the XML with indenting
  1246.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1247.      */
  1248.     public void write(String fileName,IdFiscaleType idFiscaleType,boolean prettyPrint) throws SerializerException {
  1249.         this.objToXml(fileName, IdFiscaleType.class, idFiscaleType, prettyPrint);
  1250.     }
  1251.    
  1252.     /**
  1253.      * Serialize to file system in <var>file</var> the object <var>idFiscaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IdFiscaleType}
  1254.      *
  1255.      * @param file Xml file to serialize the object <var>idFiscaleType</var>
  1256.      * @param idFiscaleType Object to be serialized in xml file <var>fileName</var>
  1257.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1258.      */
  1259.     public void write(File file,IdFiscaleType idFiscaleType) throws SerializerException {
  1260.         this.objToXml(file, IdFiscaleType.class, idFiscaleType, false);
  1261.     }
  1262.     /**
  1263.      * Serialize to file system in <var>file</var> the object <var>idFiscaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IdFiscaleType}
  1264.      *
  1265.      * @param file Xml file to serialize the object <var>idFiscaleType</var>
  1266.      * @param idFiscaleType Object to be serialized in xml file <var>fileName</var>
  1267.      * @param prettyPrint if true output the XML with indenting
  1268.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1269.      */
  1270.     public void write(File file,IdFiscaleType idFiscaleType,boolean prettyPrint) throws SerializerException {
  1271.         this.objToXml(file, IdFiscaleType.class, idFiscaleType, prettyPrint);
  1272.     }
  1273.    
  1274.     /**
  1275.      * Serialize to output stream <var>out</var> the object <var>idFiscaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IdFiscaleType}
  1276.      *
  1277.      * @param out OutputStream to serialize the object <var>idFiscaleType</var>
  1278.      * @param idFiscaleType Object to be serialized in xml file <var>fileName</var>
  1279.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1280.      */
  1281.     public void write(OutputStream out,IdFiscaleType idFiscaleType) throws SerializerException {
  1282.         this.objToXml(out, IdFiscaleType.class, idFiscaleType, false);
  1283.     }
  1284.     /**
  1285.      * Serialize to output stream <var>out</var> the object <var>idFiscaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IdFiscaleType}
  1286.      *
  1287.      * @param out OutputStream to serialize the object <var>idFiscaleType</var>
  1288.      * @param idFiscaleType Object to be serialized in xml file <var>fileName</var>
  1289.      * @param prettyPrint if true output the XML with indenting
  1290.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1291.      */
  1292.     public void write(OutputStream out,IdFiscaleType idFiscaleType,boolean prettyPrint) throws SerializerException {
  1293.         this.objToXml(out, IdFiscaleType.class, idFiscaleType, prettyPrint);
  1294.     }
  1295.            
  1296.     /**
  1297.      * Serialize to byte array the object <var>idFiscaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IdFiscaleType}
  1298.      *
  1299.      * @param idFiscaleType Object to be serialized
  1300.      * @return Object to be serialized in byte array
  1301.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1302.      */
  1303.     public byte[] toByteArray(IdFiscaleType idFiscaleType) throws SerializerException {
  1304.         return this.objToXml(IdFiscaleType.class, idFiscaleType, false).toByteArray();
  1305.     }
  1306.     /**
  1307.      * Serialize to byte array the object <var>idFiscaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IdFiscaleType}
  1308.      *
  1309.      * @param idFiscaleType Object to be serialized
  1310.      * @param prettyPrint if true output the XML with indenting
  1311.      * @return Object to be serialized in byte array
  1312.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1313.      */
  1314.     public byte[] toByteArray(IdFiscaleType idFiscaleType,boolean prettyPrint) throws SerializerException {
  1315.         return this.objToXml(IdFiscaleType.class, idFiscaleType, prettyPrint).toByteArray();
  1316.     }
  1317.    
  1318.     /**
  1319.      * Serialize to String the object <var>idFiscaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IdFiscaleType}
  1320.      *
  1321.      * @param idFiscaleType Object to be serialized
  1322.      * @return Object to be serialized as String
  1323.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1324.      */
  1325.     public String toString(IdFiscaleType idFiscaleType) throws SerializerException {
  1326.         return this.objToXml(IdFiscaleType.class, idFiscaleType, false).toString();
  1327.     }
  1328.     /**
  1329.      * Serialize to String the object <var>idFiscaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IdFiscaleType}
  1330.      *
  1331.      * @param idFiscaleType Object to be serialized
  1332.      * @param prettyPrint if true output the XML with indenting
  1333.      * @return Object to be serialized as String
  1334.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1335.      */
  1336.     public String toString(IdFiscaleType idFiscaleType,boolean prettyPrint) throws SerializerException {
  1337.         return this.objToXml(IdFiscaleType.class, idFiscaleType, prettyPrint).toString();
  1338.     }
  1339.    
  1340.    
  1341.    
  1342.     /*
  1343.      =================================================================================
  1344.      Object: DatiAnagraficiRappresentanteType
  1345.      =================================================================================
  1346.     */
  1347.    
  1348.     /**
  1349.      * Serialize to file system in <var>fileName</var> the object <var>datiAnagraficiRappresentanteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiRappresentanteType}
  1350.      *
  1351.      * @param fileName Xml file to serialize the object <var>datiAnagraficiRappresentanteType</var>
  1352.      * @param datiAnagraficiRappresentanteType Object to be serialized in xml file <var>fileName</var>
  1353.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1354.      */
  1355.     public void write(String fileName,DatiAnagraficiRappresentanteType datiAnagraficiRappresentanteType) throws SerializerException {
  1356.         this.objToXml(fileName, DatiAnagraficiRappresentanteType.class, datiAnagraficiRappresentanteType, false);
  1357.     }
  1358.     /**
  1359.      * Serialize to file system in <var>fileName</var> the object <var>datiAnagraficiRappresentanteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiRappresentanteType}
  1360.      *
  1361.      * @param fileName Xml file to serialize the object <var>datiAnagraficiRappresentanteType</var>
  1362.      * @param datiAnagraficiRappresentanteType Object to be serialized in xml file <var>fileName</var>
  1363.      * @param prettyPrint if true output the XML with indenting
  1364.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1365.      */
  1366.     public void write(String fileName,DatiAnagraficiRappresentanteType datiAnagraficiRappresentanteType,boolean prettyPrint) throws SerializerException {
  1367.         this.objToXml(fileName, DatiAnagraficiRappresentanteType.class, datiAnagraficiRappresentanteType, prettyPrint);
  1368.     }
  1369.    
  1370.     /**
  1371.      * Serialize to file system in <var>file</var> the object <var>datiAnagraficiRappresentanteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiRappresentanteType}
  1372.      *
  1373.      * @param file Xml file to serialize the object <var>datiAnagraficiRappresentanteType</var>
  1374.      * @param datiAnagraficiRappresentanteType Object to be serialized in xml file <var>fileName</var>
  1375.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1376.      */
  1377.     public void write(File file,DatiAnagraficiRappresentanteType datiAnagraficiRappresentanteType) throws SerializerException {
  1378.         this.objToXml(file, DatiAnagraficiRappresentanteType.class, datiAnagraficiRappresentanteType, false);
  1379.     }
  1380.     /**
  1381.      * Serialize to file system in <var>file</var> the object <var>datiAnagraficiRappresentanteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiRappresentanteType}
  1382.      *
  1383.      * @param file Xml file to serialize the object <var>datiAnagraficiRappresentanteType</var>
  1384.      * @param datiAnagraficiRappresentanteType Object to be serialized in xml file <var>fileName</var>
  1385.      * @param prettyPrint if true output the XML with indenting
  1386.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1387.      */
  1388.     public void write(File file,DatiAnagraficiRappresentanteType datiAnagraficiRappresentanteType,boolean prettyPrint) throws SerializerException {
  1389.         this.objToXml(file, DatiAnagraficiRappresentanteType.class, datiAnagraficiRappresentanteType, prettyPrint);
  1390.     }
  1391.    
  1392.     /**
  1393.      * Serialize to output stream <var>out</var> the object <var>datiAnagraficiRappresentanteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiRappresentanteType}
  1394.      *
  1395.      * @param out OutputStream to serialize the object <var>datiAnagraficiRappresentanteType</var>
  1396.      * @param datiAnagraficiRappresentanteType Object to be serialized in xml file <var>fileName</var>
  1397.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1398.      */
  1399.     public void write(OutputStream out,DatiAnagraficiRappresentanteType datiAnagraficiRappresentanteType) throws SerializerException {
  1400.         this.objToXml(out, DatiAnagraficiRappresentanteType.class, datiAnagraficiRappresentanteType, false);
  1401.     }
  1402.     /**
  1403.      * Serialize to output stream <var>out</var> the object <var>datiAnagraficiRappresentanteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiRappresentanteType}
  1404.      *
  1405.      * @param out OutputStream to serialize the object <var>datiAnagraficiRappresentanteType</var>
  1406.      * @param datiAnagraficiRappresentanteType Object to be serialized in xml file <var>fileName</var>
  1407.      * @param prettyPrint if true output the XML with indenting
  1408.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1409.      */
  1410.     public void write(OutputStream out,DatiAnagraficiRappresentanteType datiAnagraficiRappresentanteType,boolean prettyPrint) throws SerializerException {
  1411.         this.objToXml(out, DatiAnagraficiRappresentanteType.class, datiAnagraficiRappresentanteType, prettyPrint);
  1412.     }
  1413.            
  1414.     /**
  1415.      * Serialize to byte array the object <var>datiAnagraficiRappresentanteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiRappresentanteType}
  1416.      *
  1417.      * @param datiAnagraficiRappresentanteType Object to be serialized
  1418.      * @return Object to be serialized in byte array
  1419.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1420.      */
  1421.     public byte[] toByteArray(DatiAnagraficiRappresentanteType datiAnagraficiRappresentanteType) throws SerializerException {
  1422.         return this.objToXml(DatiAnagraficiRappresentanteType.class, datiAnagraficiRappresentanteType, false).toByteArray();
  1423.     }
  1424.     /**
  1425.      * Serialize to byte array the object <var>datiAnagraficiRappresentanteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiRappresentanteType}
  1426.      *
  1427.      * @param datiAnagraficiRappresentanteType Object to be serialized
  1428.      * @param prettyPrint if true output the XML with indenting
  1429.      * @return Object to be serialized in byte array
  1430.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1431.      */
  1432.     public byte[] toByteArray(DatiAnagraficiRappresentanteType datiAnagraficiRappresentanteType,boolean prettyPrint) throws SerializerException {
  1433.         return this.objToXml(DatiAnagraficiRappresentanteType.class, datiAnagraficiRappresentanteType, prettyPrint).toByteArray();
  1434.     }
  1435.    
  1436.     /**
  1437.      * Serialize to String the object <var>datiAnagraficiRappresentanteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiRappresentanteType}
  1438.      *
  1439.      * @param datiAnagraficiRappresentanteType Object to be serialized
  1440.      * @return Object to be serialized as String
  1441.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1442.      */
  1443.     public String toString(DatiAnagraficiRappresentanteType datiAnagraficiRappresentanteType) throws SerializerException {
  1444.         return this.objToXml(DatiAnagraficiRappresentanteType.class, datiAnagraficiRappresentanteType, false).toString();
  1445.     }
  1446.     /**
  1447.      * Serialize to String the object <var>datiAnagraficiRappresentanteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiRappresentanteType}
  1448.      *
  1449.      * @param datiAnagraficiRappresentanteType Object to be serialized
  1450.      * @param prettyPrint if true output the XML with indenting
  1451.      * @return Object to be serialized as String
  1452.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1453.      */
  1454.     public String toString(DatiAnagraficiRappresentanteType datiAnagraficiRappresentanteType,boolean prettyPrint) throws SerializerException {
  1455.         return this.objToXml(DatiAnagraficiRappresentanteType.class, datiAnagraficiRappresentanteType, prettyPrint).toString();
  1456.     }
  1457.    
  1458.    
  1459.    
  1460.     /*
  1461.      =================================================================================
  1462.      Object: AnagraficaType
  1463.      =================================================================================
  1464.     */
  1465.    
  1466.     /**
  1467.      * Serialize to file system in <var>fileName</var> the object <var>anagraficaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AnagraficaType}
  1468.      *
  1469.      * @param fileName Xml file to serialize the object <var>anagraficaType</var>
  1470.      * @param anagraficaType Object to be serialized in xml file <var>fileName</var>
  1471.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1472.      */
  1473.     public void write(String fileName,AnagraficaType anagraficaType) throws SerializerException {
  1474.         this.objToXml(fileName, AnagraficaType.class, anagraficaType, false);
  1475.     }
  1476.     /**
  1477.      * Serialize to file system in <var>fileName</var> the object <var>anagraficaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AnagraficaType}
  1478.      *
  1479.      * @param fileName Xml file to serialize the object <var>anagraficaType</var>
  1480.      * @param anagraficaType Object to be serialized in xml file <var>fileName</var>
  1481.      * @param prettyPrint if true output the XML with indenting
  1482.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1483.      */
  1484.     public void write(String fileName,AnagraficaType anagraficaType,boolean prettyPrint) throws SerializerException {
  1485.         this.objToXml(fileName, AnagraficaType.class, anagraficaType, prettyPrint);
  1486.     }
  1487.    
  1488.     /**
  1489.      * Serialize to file system in <var>file</var> the object <var>anagraficaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AnagraficaType}
  1490.      *
  1491.      * @param file Xml file to serialize the object <var>anagraficaType</var>
  1492.      * @param anagraficaType Object to be serialized in xml file <var>fileName</var>
  1493.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1494.      */
  1495.     public void write(File file,AnagraficaType anagraficaType) throws SerializerException {
  1496.         this.objToXml(file, AnagraficaType.class, anagraficaType, false);
  1497.     }
  1498.     /**
  1499.      * Serialize to file system in <var>file</var> the object <var>anagraficaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AnagraficaType}
  1500.      *
  1501.      * @param file Xml file to serialize the object <var>anagraficaType</var>
  1502.      * @param anagraficaType Object to be serialized in xml file <var>fileName</var>
  1503.      * @param prettyPrint if true output the XML with indenting
  1504.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1505.      */
  1506.     public void write(File file,AnagraficaType anagraficaType,boolean prettyPrint) throws SerializerException {
  1507.         this.objToXml(file, AnagraficaType.class, anagraficaType, prettyPrint);
  1508.     }
  1509.    
  1510.     /**
  1511.      * Serialize to output stream <var>out</var> the object <var>anagraficaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AnagraficaType}
  1512.      *
  1513.      * @param out OutputStream to serialize the object <var>anagraficaType</var>
  1514.      * @param anagraficaType Object to be serialized in xml file <var>fileName</var>
  1515.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1516.      */
  1517.     public void write(OutputStream out,AnagraficaType anagraficaType) throws SerializerException {
  1518.         this.objToXml(out, AnagraficaType.class, anagraficaType, false);
  1519.     }
  1520.     /**
  1521.      * Serialize to output stream <var>out</var> the object <var>anagraficaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AnagraficaType}
  1522.      *
  1523.      * @param out OutputStream to serialize the object <var>anagraficaType</var>
  1524.      * @param anagraficaType Object to be serialized in xml file <var>fileName</var>
  1525.      * @param prettyPrint if true output the XML with indenting
  1526.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1527.      */
  1528.     public void write(OutputStream out,AnagraficaType anagraficaType,boolean prettyPrint) throws SerializerException {
  1529.         this.objToXml(out, AnagraficaType.class, anagraficaType, prettyPrint);
  1530.     }
  1531.            
  1532.     /**
  1533.      * Serialize to byte array the object <var>anagraficaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AnagraficaType}
  1534.      *
  1535.      * @param anagraficaType Object to be serialized
  1536.      * @return Object to be serialized in byte array
  1537.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1538.      */
  1539.     public byte[] toByteArray(AnagraficaType anagraficaType) throws SerializerException {
  1540.         return this.objToXml(AnagraficaType.class, anagraficaType, false).toByteArray();
  1541.     }
  1542.     /**
  1543.      * Serialize to byte array the object <var>anagraficaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AnagraficaType}
  1544.      *
  1545.      * @param anagraficaType Object to be serialized
  1546.      * @param prettyPrint if true output the XML with indenting
  1547.      * @return Object to be serialized in byte array
  1548.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1549.      */
  1550.     public byte[] toByteArray(AnagraficaType anagraficaType,boolean prettyPrint) throws SerializerException {
  1551.         return this.objToXml(AnagraficaType.class, anagraficaType, prettyPrint).toByteArray();
  1552.     }
  1553.    
  1554.     /**
  1555.      * Serialize to String the object <var>anagraficaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AnagraficaType}
  1556.      *
  1557.      * @param anagraficaType Object to be serialized
  1558.      * @return Object to be serialized as String
  1559.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1560.      */
  1561.     public String toString(AnagraficaType anagraficaType) throws SerializerException {
  1562.         return this.objToXml(AnagraficaType.class, anagraficaType, false).toString();
  1563.     }
  1564.     /**
  1565.      * Serialize to String the object <var>anagraficaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AnagraficaType}
  1566.      *
  1567.      * @param anagraficaType Object to be serialized
  1568.      * @param prettyPrint if true output the XML with indenting
  1569.      * @return Object to be serialized as String
  1570.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1571.      */
  1572.     public String toString(AnagraficaType anagraficaType,boolean prettyPrint) throws SerializerException {
  1573.         return this.objToXml(AnagraficaType.class, anagraficaType, prettyPrint).toString();
  1574.     }
  1575.    
  1576.    
  1577.    
  1578.     /*
  1579.      =================================================================================
  1580.      Object: DatiAnagraficiCedenteType
  1581.      =================================================================================
  1582.     */
  1583.    
  1584.     /**
  1585.      * Serialize to file system in <var>fileName</var> the object <var>datiAnagraficiCedenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiCedenteType}
  1586.      *
  1587.      * @param fileName Xml file to serialize the object <var>datiAnagraficiCedenteType</var>
  1588.      * @param datiAnagraficiCedenteType Object to be serialized in xml file <var>fileName</var>
  1589.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1590.      */
  1591.     public void write(String fileName,DatiAnagraficiCedenteType datiAnagraficiCedenteType) throws SerializerException {
  1592.         this.objToXml(fileName, DatiAnagraficiCedenteType.class, datiAnagraficiCedenteType, false);
  1593.     }
  1594.     /**
  1595.      * Serialize to file system in <var>fileName</var> the object <var>datiAnagraficiCedenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiCedenteType}
  1596.      *
  1597.      * @param fileName Xml file to serialize the object <var>datiAnagraficiCedenteType</var>
  1598.      * @param datiAnagraficiCedenteType Object to be serialized in xml file <var>fileName</var>
  1599.      * @param prettyPrint if true output the XML with indenting
  1600.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1601.      */
  1602.     public void write(String fileName,DatiAnagraficiCedenteType datiAnagraficiCedenteType,boolean prettyPrint) throws SerializerException {
  1603.         this.objToXml(fileName, DatiAnagraficiCedenteType.class, datiAnagraficiCedenteType, prettyPrint);
  1604.     }
  1605.    
  1606.     /**
  1607.      * Serialize to file system in <var>file</var> the object <var>datiAnagraficiCedenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiCedenteType}
  1608.      *
  1609.      * @param file Xml file to serialize the object <var>datiAnagraficiCedenteType</var>
  1610.      * @param datiAnagraficiCedenteType Object to be serialized in xml file <var>fileName</var>
  1611.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1612.      */
  1613.     public void write(File file,DatiAnagraficiCedenteType datiAnagraficiCedenteType) throws SerializerException {
  1614.         this.objToXml(file, DatiAnagraficiCedenteType.class, datiAnagraficiCedenteType, false);
  1615.     }
  1616.     /**
  1617.      * Serialize to file system in <var>file</var> the object <var>datiAnagraficiCedenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiCedenteType}
  1618.      *
  1619.      * @param file Xml file to serialize the object <var>datiAnagraficiCedenteType</var>
  1620.      * @param datiAnagraficiCedenteType Object to be serialized in xml file <var>fileName</var>
  1621.      * @param prettyPrint if true output the XML with indenting
  1622.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1623.      */
  1624.     public void write(File file,DatiAnagraficiCedenteType datiAnagraficiCedenteType,boolean prettyPrint) throws SerializerException {
  1625.         this.objToXml(file, DatiAnagraficiCedenteType.class, datiAnagraficiCedenteType, prettyPrint);
  1626.     }
  1627.    
  1628.     /**
  1629.      * Serialize to output stream <var>out</var> the object <var>datiAnagraficiCedenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiCedenteType}
  1630.      *
  1631.      * @param out OutputStream to serialize the object <var>datiAnagraficiCedenteType</var>
  1632.      * @param datiAnagraficiCedenteType Object to be serialized in xml file <var>fileName</var>
  1633.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1634.      */
  1635.     public void write(OutputStream out,DatiAnagraficiCedenteType datiAnagraficiCedenteType) throws SerializerException {
  1636.         this.objToXml(out, DatiAnagraficiCedenteType.class, datiAnagraficiCedenteType, false);
  1637.     }
  1638.     /**
  1639.      * Serialize to output stream <var>out</var> the object <var>datiAnagraficiCedenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiCedenteType}
  1640.      *
  1641.      * @param out OutputStream to serialize the object <var>datiAnagraficiCedenteType</var>
  1642.      * @param datiAnagraficiCedenteType Object to be serialized in xml file <var>fileName</var>
  1643.      * @param prettyPrint if true output the XML with indenting
  1644.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1645.      */
  1646.     public void write(OutputStream out,DatiAnagraficiCedenteType datiAnagraficiCedenteType,boolean prettyPrint) throws SerializerException {
  1647.         this.objToXml(out, DatiAnagraficiCedenteType.class, datiAnagraficiCedenteType, prettyPrint);
  1648.     }
  1649.            
  1650.     /**
  1651.      * Serialize to byte array the object <var>datiAnagraficiCedenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiCedenteType}
  1652.      *
  1653.      * @param datiAnagraficiCedenteType Object to be serialized
  1654.      * @return Object to be serialized in byte array
  1655.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1656.      */
  1657.     public byte[] toByteArray(DatiAnagraficiCedenteType datiAnagraficiCedenteType) throws SerializerException {
  1658.         return this.objToXml(DatiAnagraficiCedenteType.class, datiAnagraficiCedenteType, false).toByteArray();
  1659.     }
  1660.     /**
  1661.      * Serialize to byte array the object <var>datiAnagraficiCedenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiCedenteType}
  1662.      *
  1663.      * @param datiAnagraficiCedenteType Object to be serialized
  1664.      * @param prettyPrint if true output the XML with indenting
  1665.      * @return Object to be serialized in byte array
  1666.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1667.      */
  1668.     public byte[] toByteArray(DatiAnagraficiCedenteType datiAnagraficiCedenteType,boolean prettyPrint) throws SerializerException {
  1669.         return this.objToXml(DatiAnagraficiCedenteType.class, datiAnagraficiCedenteType, prettyPrint).toByteArray();
  1670.     }
  1671.    
  1672.     /**
  1673.      * Serialize to String the object <var>datiAnagraficiCedenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiCedenteType}
  1674.      *
  1675.      * @param datiAnagraficiCedenteType Object to be serialized
  1676.      * @return Object to be serialized as String
  1677.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1678.      */
  1679.     public String toString(DatiAnagraficiCedenteType datiAnagraficiCedenteType) throws SerializerException {
  1680.         return this.objToXml(DatiAnagraficiCedenteType.class, datiAnagraficiCedenteType, false).toString();
  1681.     }
  1682.     /**
  1683.      * Serialize to String the object <var>datiAnagraficiCedenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiCedenteType}
  1684.      *
  1685.      * @param datiAnagraficiCedenteType Object to be serialized
  1686.      * @param prettyPrint if true output the XML with indenting
  1687.      * @return Object to be serialized as String
  1688.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1689.      */
  1690.     public String toString(DatiAnagraficiCedenteType datiAnagraficiCedenteType,boolean prettyPrint) throws SerializerException {
  1691.         return this.objToXml(DatiAnagraficiCedenteType.class, datiAnagraficiCedenteType, prettyPrint).toString();
  1692.     }
  1693.    
  1694.    
  1695.    
  1696.     /*
  1697.      =================================================================================
  1698.      Object: DatiBeniServiziType
  1699.      =================================================================================
  1700.     */
  1701.    
  1702.     /**
  1703.      * Serialize to file system in <var>fileName</var> the object <var>datiBeniServiziType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiBeniServiziType}
  1704.      *
  1705.      * @param fileName Xml file to serialize the object <var>datiBeniServiziType</var>
  1706.      * @param datiBeniServiziType Object to be serialized in xml file <var>fileName</var>
  1707.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1708.      */
  1709.     public void write(String fileName,DatiBeniServiziType datiBeniServiziType) throws SerializerException {
  1710.         this.objToXml(fileName, DatiBeniServiziType.class, datiBeniServiziType, false);
  1711.     }
  1712.     /**
  1713.      * Serialize to file system in <var>fileName</var> the object <var>datiBeniServiziType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiBeniServiziType}
  1714.      *
  1715.      * @param fileName Xml file to serialize the object <var>datiBeniServiziType</var>
  1716.      * @param datiBeniServiziType Object to be serialized in xml file <var>fileName</var>
  1717.      * @param prettyPrint if true output the XML with indenting
  1718.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1719.      */
  1720.     public void write(String fileName,DatiBeniServiziType datiBeniServiziType,boolean prettyPrint) throws SerializerException {
  1721.         this.objToXml(fileName, DatiBeniServiziType.class, datiBeniServiziType, prettyPrint);
  1722.     }
  1723.    
  1724.     /**
  1725.      * Serialize to file system in <var>file</var> the object <var>datiBeniServiziType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiBeniServiziType}
  1726.      *
  1727.      * @param file Xml file to serialize the object <var>datiBeniServiziType</var>
  1728.      * @param datiBeniServiziType Object to be serialized in xml file <var>fileName</var>
  1729.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1730.      */
  1731.     public void write(File file,DatiBeniServiziType datiBeniServiziType) throws SerializerException {
  1732.         this.objToXml(file, DatiBeniServiziType.class, datiBeniServiziType, false);
  1733.     }
  1734.     /**
  1735.      * Serialize to file system in <var>file</var> the object <var>datiBeniServiziType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiBeniServiziType}
  1736.      *
  1737.      * @param file Xml file to serialize the object <var>datiBeniServiziType</var>
  1738.      * @param datiBeniServiziType Object to be serialized in xml file <var>fileName</var>
  1739.      * @param prettyPrint if true output the XML with indenting
  1740.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1741.      */
  1742.     public void write(File file,DatiBeniServiziType datiBeniServiziType,boolean prettyPrint) throws SerializerException {
  1743.         this.objToXml(file, DatiBeniServiziType.class, datiBeniServiziType, prettyPrint);
  1744.     }
  1745.    
  1746.     /**
  1747.      * Serialize to output stream <var>out</var> the object <var>datiBeniServiziType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiBeniServiziType}
  1748.      *
  1749.      * @param out OutputStream to serialize the object <var>datiBeniServiziType</var>
  1750.      * @param datiBeniServiziType Object to be serialized in xml file <var>fileName</var>
  1751.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1752.      */
  1753.     public void write(OutputStream out,DatiBeniServiziType datiBeniServiziType) throws SerializerException {
  1754.         this.objToXml(out, DatiBeniServiziType.class, datiBeniServiziType, false);
  1755.     }
  1756.     /**
  1757.      * Serialize to output stream <var>out</var> the object <var>datiBeniServiziType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiBeniServiziType}
  1758.      *
  1759.      * @param out OutputStream to serialize the object <var>datiBeniServiziType</var>
  1760.      * @param datiBeniServiziType Object to be serialized in xml file <var>fileName</var>
  1761.      * @param prettyPrint if true output the XML with indenting
  1762.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1763.      */
  1764.     public void write(OutputStream out,DatiBeniServiziType datiBeniServiziType,boolean prettyPrint) throws SerializerException {
  1765.         this.objToXml(out, DatiBeniServiziType.class, datiBeniServiziType, prettyPrint);
  1766.     }
  1767.            
  1768.     /**
  1769.      * Serialize to byte array the object <var>datiBeniServiziType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiBeniServiziType}
  1770.      *
  1771.      * @param datiBeniServiziType Object to be serialized
  1772.      * @return Object to be serialized in byte array
  1773.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1774.      */
  1775.     public byte[] toByteArray(DatiBeniServiziType datiBeniServiziType) throws SerializerException {
  1776.         return this.objToXml(DatiBeniServiziType.class, datiBeniServiziType, false).toByteArray();
  1777.     }
  1778.     /**
  1779.      * Serialize to byte array the object <var>datiBeniServiziType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiBeniServiziType}
  1780.      *
  1781.      * @param datiBeniServiziType Object to be serialized
  1782.      * @param prettyPrint if true output the XML with indenting
  1783.      * @return Object to be serialized in byte array
  1784.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1785.      */
  1786.     public byte[] toByteArray(DatiBeniServiziType datiBeniServiziType,boolean prettyPrint) throws SerializerException {
  1787.         return this.objToXml(DatiBeniServiziType.class, datiBeniServiziType, prettyPrint).toByteArray();
  1788.     }
  1789.    
  1790.     /**
  1791.      * Serialize to String the object <var>datiBeniServiziType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiBeniServiziType}
  1792.      *
  1793.      * @param datiBeniServiziType Object to be serialized
  1794.      * @return Object to be serialized as String
  1795.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1796.      */
  1797.     public String toString(DatiBeniServiziType datiBeniServiziType) throws SerializerException {
  1798.         return this.objToXml(DatiBeniServiziType.class, datiBeniServiziType, false).toString();
  1799.     }
  1800.     /**
  1801.      * Serialize to String the object <var>datiBeniServiziType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiBeniServiziType}
  1802.      *
  1803.      * @param datiBeniServiziType Object to be serialized
  1804.      * @param prettyPrint if true output the XML with indenting
  1805.      * @return Object to be serialized as String
  1806.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1807.      */
  1808.     public String toString(DatiBeniServiziType datiBeniServiziType,boolean prettyPrint) throws SerializerException {
  1809.         return this.objToXml(DatiBeniServiziType.class, datiBeniServiziType, prettyPrint).toString();
  1810.     }
  1811.    
  1812.    
  1813.    
  1814.     /*
  1815.      =================================================================================
  1816.      Object: DatiRiepilogoType
  1817.      =================================================================================
  1818.     */
  1819.    
  1820.     /**
  1821.      * Serialize to file system in <var>fileName</var> the object <var>datiRiepilogoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiRiepilogoType}
  1822.      *
  1823.      * @param fileName Xml file to serialize the object <var>datiRiepilogoType</var>
  1824.      * @param datiRiepilogoType Object to be serialized in xml file <var>fileName</var>
  1825.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1826.      */
  1827.     public void write(String fileName,DatiRiepilogoType datiRiepilogoType) throws SerializerException {
  1828.         this.objToXml(fileName, DatiRiepilogoType.class, datiRiepilogoType, false);
  1829.     }
  1830.     /**
  1831.      * Serialize to file system in <var>fileName</var> the object <var>datiRiepilogoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiRiepilogoType}
  1832.      *
  1833.      * @param fileName Xml file to serialize the object <var>datiRiepilogoType</var>
  1834.      * @param datiRiepilogoType Object to be serialized in xml file <var>fileName</var>
  1835.      * @param prettyPrint if true output the XML with indenting
  1836.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1837.      */
  1838.     public void write(String fileName,DatiRiepilogoType datiRiepilogoType,boolean prettyPrint) throws SerializerException {
  1839.         this.objToXml(fileName, DatiRiepilogoType.class, datiRiepilogoType, prettyPrint);
  1840.     }
  1841.    
  1842.     /**
  1843.      * Serialize to file system in <var>file</var> the object <var>datiRiepilogoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiRiepilogoType}
  1844.      *
  1845.      * @param file Xml file to serialize the object <var>datiRiepilogoType</var>
  1846.      * @param datiRiepilogoType Object to be serialized in xml file <var>fileName</var>
  1847.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1848.      */
  1849.     public void write(File file,DatiRiepilogoType datiRiepilogoType) throws SerializerException {
  1850.         this.objToXml(file, DatiRiepilogoType.class, datiRiepilogoType, false);
  1851.     }
  1852.     /**
  1853.      * Serialize to file system in <var>file</var> the object <var>datiRiepilogoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiRiepilogoType}
  1854.      *
  1855.      * @param file Xml file to serialize the object <var>datiRiepilogoType</var>
  1856.      * @param datiRiepilogoType Object to be serialized in xml file <var>fileName</var>
  1857.      * @param prettyPrint if true output the XML with indenting
  1858.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1859.      */
  1860.     public void write(File file,DatiRiepilogoType datiRiepilogoType,boolean prettyPrint) throws SerializerException {
  1861.         this.objToXml(file, DatiRiepilogoType.class, datiRiepilogoType, prettyPrint);
  1862.     }
  1863.    
  1864.     /**
  1865.      * Serialize to output stream <var>out</var> the object <var>datiRiepilogoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiRiepilogoType}
  1866.      *
  1867.      * @param out OutputStream to serialize the object <var>datiRiepilogoType</var>
  1868.      * @param datiRiepilogoType Object to be serialized in xml file <var>fileName</var>
  1869.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1870.      */
  1871.     public void write(OutputStream out,DatiRiepilogoType datiRiepilogoType) throws SerializerException {
  1872.         this.objToXml(out, DatiRiepilogoType.class, datiRiepilogoType, false);
  1873.     }
  1874.     /**
  1875.      * Serialize to output stream <var>out</var> the object <var>datiRiepilogoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiRiepilogoType}
  1876.      *
  1877.      * @param out OutputStream to serialize the object <var>datiRiepilogoType</var>
  1878.      * @param datiRiepilogoType Object to be serialized in xml file <var>fileName</var>
  1879.      * @param prettyPrint if true output the XML with indenting
  1880.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1881.      */
  1882.     public void write(OutputStream out,DatiRiepilogoType datiRiepilogoType,boolean prettyPrint) throws SerializerException {
  1883.         this.objToXml(out, DatiRiepilogoType.class, datiRiepilogoType, prettyPrint);
  1884.     }
  1885.            
  1886.     /**
  1887.      * Serialize to byte array the object <var>datiRiepilogoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiRiepilogoType}
  1888.      *
  1889.      * @param datiRiepilogoType Object to be serialized
  1890.      * @return Object to be serialized in byte array
  1891.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1892.      */
  1893.     public byte[] toByteArray(DatiRiepilogoType datiRiepilogoType) throws SerializerException {
  1894.         return this.objToXml(DatiRiepilogoType.class, datiRiepilogoType, false).toByteArray();
  1895.     }
  1896.     /**
  1897.      * Serialize to byte array the object <var>datiRiepilogoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiRiepilogoType}
  1898.      *
  1899.      * @param datiRiepilogoType Object to be serialized
  1900.      * @param prettyPrint if true output the XML with indenting
  1901.      * @return Object to be serialized in byte array
  1902.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1903.      */
  1904.     public byte[] toByteArray(DatiRiepilogoType datiRiepilogoType,boolean prettyPrint) throws SerializerException {
  1905.         return this.objToXml(DatiRiepilogoType.class, datiRiepilogoType, prettyPrint).toByteArray();
  1906.     }
  1907.    
  1908.     /**
  1909.      * Serialize to String the object <var>datiRiepilogoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiRiepilogoType}
  1910.      *
  1911.      * @param datiRiepilogoType Object to be serialized
  1912.      * @return Object to be serialized as String
  1913.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1914.      */
  1915.     public String toString(DatiRiepilogoType datiRiepilogoType) throws SerializerException {
  1916.         return this.objToXml(DatiRiepilogoType.class, datiRiepilogoType, false).toString();
  1917.     }
  1918.     /**
  1919.      * Serialize to String the object <var>datiRiepilogoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiRiepilogoType}
  1920.      *
  1921.      * @param datiRiepilogoType Object to be serialized
  1922.      * @param prettyPrint if true output the XML with indenting
  1923.      * @return Object to be serialized as String
  1924.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1925.      */
  1926.     public String toString(DatiRiepilogoType datiRiepilogoType,boolean prettyPrint) throws SerializerException {
  1927.         return this.objToXml(DatiRiepilogoType.class, datiRiepilogoType, prettyPrint).toString();
  1928.     }
  1929.    
  1930.    
  1931.    
  1932.     /*
  1933.      =================================================================================
  1934.      Object: DatiGeneraliDocumentoType
  1935.      =================================================================================
  1936.     */
  1937.    
  1938.     /**
  1939.      * Serialize to file system in <var>fileName</var> the object <var>datiGeneraliDocumentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiGeneraliDocumentoType}
  1940.      *
  1941.      * @param fileName Xml file to serialize the object <var>datiGeneraliDocumentoType</var>
  1942.      * @param datiGeneraliDocumentoType Object to be serialized in xml file <var>fileName</var>
  1943.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1944.      */
  1945.     public void write(String fileName,DatiGeneraliDocumentoType datiGeneraliDocumentoType) throws SerializerException {
  1946.         this.objToXml(fileName, DatiGeneraliDocumentoType.class, datiGeneraliDocumentoType, false);
  1947.     }
  1948.     /**
  1949.      * Serialize to file system in <var>fileName</var> the object <var>datiGeneraliDocumentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiGeneraliDocumentoType}
  1950.      *
  1951.      * @param fileName Xml file to serialize the object <var>datiGeneraliDocumentoType</var>
  1952.      * @param datiGeneraliDocumentoType Object to be serialized in xml file <var>fileName</var>
  1953.      * @param prettyPrint if true output the XML with indenting
  1954.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1955.      */
  1956.     public void write(String fileName,DatiGeneraliDocumentoType datiGeneraliDocumentoType,boolean prettyPrint) throws SerializerException {
  1957.         this.objToXml(fileName, DatiGeneraliDocumentoType.class, datiGeneraliDocumentoType, prettyPrint);
  1958.     }
  1959.    
  1960.     /**
  1961.      * Serialize to file system in <var>file</var> the object <var>datiGeneraliDocumentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiGeneraliDocumentoType}
  1962.      *
  1963.      * @param file Xml file to serialize the object <var>datiGeneraliDocumentoType</var>
  1964.      * @param datiGeneraliDocumentoType Object to be serialized in xml file <var>fileName</var>
  1965.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1966.      */
  1967.     public void write(File file,DatiGeneraliDocumentoType datiGeneraliDocumentoType) throws SerializerException {
  1968.         this.objToXml(file, DatiGeneraliDocumentoType.class, datiGeneraliDocumentoType, false);
  1969.     }
  1970.     /**
  1971.      * Serialize to file system in <var>file</var> the object <var>datiGeneraliDocumentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiGeneraliDocumentoType}
  1972.      *
  1973.      * @param file Xml file to serialize the object <var>datiGeneraliDocumentoType</var>
  1974.      * @param datiGeneraliDocumentoType Object to be serialized in xml file <var>fileName</var>
  1975.      * @param prettyPrint if true output the XML with indenting
  1976.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1977.      */
  1978.     public void write(File file,DatiGeneraliDocumentoType datiGeneraliDocumentoType,boolean prettyPrint) throws SerializerException {
  1979.         this.objToXml(file, DatiGeneraliDocumentoType.class, datiGeneraliDocumentoType, prettyPrint);
  1980.     }
  1981.    
  1982.     /**
  1983.      * Serialize to output stream <var>out</var> the object <var>datiGeneraliDocumentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiGeneraliDocumentoType}
  1984.      *
  1985.      * @param out OutputStream to serialize the object <var>datiGeneraliDocumentoType</var>
  1986.      * @param datiGeneraliDocumentoType Object to be serialized in xml file <var>fileName</var>
  1987.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1988.      */
  1989.     public void write(OutputStream out,DatiGeneraliDocumentoType datiGeneraliDocumentoType) throws SerializerException {
  1990.         this.objToXml(out, DatiGeneraliDocumentoType.class, datiGeneraliDocumentoType, false);
  1991.     }
  1992.     /**
  1993.      * Serialize to output stream <var>out</var> the object <var>datiGeneraliDocumentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiGeneraliDocumentoType}
  1994.      *
  1995.      * @param out OutputStream to serialize the object <var>datiGeneraliDocumentoType</var>
  1996.      * @param datiGeneraliDocumentoType Object to be serialized in xml file <var>fileName</var>
  1997.      * @param prettyPrint if true output the XML with indenting
  1998.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1999.      */
  2000.     public void write(OutputStream out,DatiGeneraliDocumentoType datiGeneraliDocumentoType,boolean prettyPrint) throws SerializerException {
  2001.         this.objToXml(out, DatiGeneraliDocumentoType.class, datiGeneraliDocumentoType, prettyPrint);
  2002.     }
  2003.            
  2004.     /**
  2005.      * Serialize to byte array the object <var>datiGeneraliDocumentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiGeneraliDocumentoType}
  2006.      *
  2007.      * @param datiGeneraliDocumentoType Object to be serialized
  2008.      * @return Object to be serialized in byte array
  2009.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2010.      */
  2011.     public byte[] toByteArray(DatiGeneraliDocumentoType datiGeneraliDocumentoType) throws SerializerException {
  2012.         return this.objToXml(DatiGeneraliDocumentoType.class, datiGeneraliDocumentoType, false).toByteArray();
  2013.     }
  2014.     /**
  2015.      * Serialize to byte array the object <var>datiGeneraliDocumentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiGeneraliDocumentoType}
  2016.      *
  2017.      * @param datiGeneraliDocumentoType Object to be serialized
  2018.      * @param prettyPrint if true output the XML with indenting
  2019.      * @return Object to be serialized in byte array
  2020.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2021.      */
  2022.     public byte[] toByteArray(DatiGeneraliDocumentoType datiGeneraliDocumentoType,boolean prettyPrint) throws SerializerException {
  2023.         return this.objToXml(DatiGeneraliDocumentoType.class, datiGeneraliDocumentoType, prettyPrint).toByteArray();
  2024.     }
  2025.    
  2026.     /**
  2027.      * Serialize to String the object <var>datiGeneraliDocumentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiGeneraliDocumentoType}
  2028.      *
  2029.      * @param datiGeneraliDocumentoType Object to be serialized
  2030.      * @return Object to be serialized as String
  2031.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2032.      */
  2033.     public String toString(DatiGeneraliDocumentoType datiGeneraliDocumentoType) throws SerializerException {
  2034.         return this.objToXml(DatiGeneraliDocumentoType.class, datiGeneraliDocumentoType, false).toString();
  2035.     }
  2036.     /**
  2037.      * Serialize to String the object <var>datiGeneraliDocumentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiGeneraliDocumentoType}
  2038.      *
  2039.      * @param datiGeneraliDocumentoType Object to be serialized
  2040.      * @param prettyPrint if true output the XML with indenting
  2041.      * @return Object to be serialized as String
  2042.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2043.      */
  2044.     public String toString(DatiGeneraliDocumentoType datiGeneraliDocumentoType,boolean prettyPrint) throws SerializerException {
  2045.         return this.objToXml(DatiGeneraliDocumentoType.class, datiGeneraliDocumentoType, prettyPrint).toString();
  2046.     }
  2047.    
  2048.    
  2049.    
  2050.     /*
  2051.      =================================================================================
  2052.      Object: DatiGeneraliType
  2053.      =================================================================================
  2054.     */
  2055.    
  2056.     /**
  2057.      * Serialize to file system in <var>fileName</var> the object <var>datiGeneraliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiGeneraliType}
  2058.      *
  2059.      * @param fileName Xml file to serialize the object <var>datiGeneraliType</var>
  2060.      * @param datiGeneraliType Object to be serialized in xml file <var>fileName</var>
  2061.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2062.      */
  2063.     public void write(String fileName,DatiGeneraliType datiGeneraliType) throws SerializerException {
  2064.         this.objToXml(fileName, DatiGeneraliType.class, datiGeneraliType, false);
  2065.     }
  2066.     /**
  2067.      * Serialize to file system in <var>fileName</var> the object <var>datiGeneraliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiGeneraliType}
  2068.      *
  2069.      * @param fileName Xml file to serialize the object <var>datiGeneraliType</var>
  2070.      * @param datiGeneraliType Object to be serialized in xml file <var>fileName</var>
  2071.      * @param prettyPrint if true output the XML with indenting
  2072.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2073.      */
  2074.     public void write(String fileName,DatiGeneraliType datiGeneraliType,boolean prettyPrint) throws SerializerException {
  2075.         this.objToXml(fileName, DatiGeneraliType.class, datiGeneraliType, prettyPrint);
  2076.     }
  2077.    
  2078.     /**
  2079.      * Serialize to file system in <var>file</var> the object <var>datiGeneraliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiGeneraliType}
  2080.      *
  2081.      * @param file Xml file to serialize the object <var>datiGeneraliType</var>
  2082.      * @param datiGeneraliType Object to be serialized in xml file <var>fileName</var>
  2083.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2084.      */
  2085.     public void write(File file,DatiGeneraliType datiGeneraliType) throws SerializerException {
  2086.         this.objToXml(file, DatiGeneraliType.class, datiGeneraliType, false);
  2087.     }
  2088.     /**
  2089.      * Serialize to file system in <var>file</var> the object <var>datiGeneraliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiGeneraliType}
  2090.      *
  2091.      * @param file Xml file to serialize the object <var>datiGeneraliType</var>
  2092.      * @param datiGeneraliType Object to be serialized in xml file <var>fileName</var>
  2093.      * @param prettyPrint if true output the XML with indenting
  2094.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2095.      */
  2096.     public void write(File file,DatiGeneraliType datiGeneraliType,boolean prettyPrint) throws SerializerException {
  2097.         this.objToXml(file, DatiGeneraliType.class, datiGeneraliType, prettyPrint);
  2098.     }
  2099.    
  2100.     /**
  2101.      * Serialize to output stream <var>out</var> the object <var>datiGeneraliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiGeneraliType}
  2102.      *
  2103.      * @param out OutputStream to serialize the object <var>datiGeneraliType</var>
  2104.      * @param datiGeneraliType Object to be serialized in xml file <var>fileName</var>
  2105.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2106.      */
  2107.     public void write(OutputStream out,DatiGeneraliType datiGeneraliType) throws SerializerException {
  2108.         this.objToXml(out, DatiGeneraliType.class, datiGeneraliType, false);
  2109.     }
  2110.     /**
  2111.      * Serialize to output stream <var>out</var> the object <var>datiGeneraliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiGeneraliType}
  2112.      *
  2113.      * @param out OutputStream to serialize the object <var>datiGeneraliType</var>
  2114.      * @param datiGeneraliType Object to be serialized in xml file <var>fileName</var>
  2115.      * @param prettyPrint if true output the XML with indenting
  2116.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2117.      */
  2118.     public void write(OutputStream out,DatiGeneraliType datiGeneraliType,boolean prettyPrint) throws SerializerException {
  2119.         this.objToXml(out, DatiGeneraliType.class, datiGeneraliType, prettyPrint);
  2120.     }
  2121.            
  2122.     /**
  2123.      * Serialize to byte array the object <var>datiGeneraliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiGeneraliType}
  2124.      *
  2125.      * @param datiGeneraliType Object to be serialized
  2126.      * @return Object to be serialized in byte array
  2127.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2128.      */
  2129.     public byte[] toByteArray(DatiGeneraliType datiGeneraliType) throws SerializerException {
  2130.         return this.objToXml(DatiGeneraliType.class, datiGeneraliType, false).toByteArray();
  2131.     }
  2132.     /**
  2133.      * Serialize to byte array the object <var>datiGeneraliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiGeneraliType}
  2134.      *
  2135.      * @param datiGeneraliType Object to be serialized
  2136.      * @param prettyPrint if true output the XML with indenting
  2137.      * @return Object to be serialized in byte array
  2138.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2139.      */
  2140.     public byte[] toByteArray(DatiGeneraliType datiGeneraliType,boolean prettyPrint) throws SerializerException {
  2141.         return this.objToXml(DatiGeneraliType.class, datiGeneraliType, prettyPrint).toByteArray();
  2142.     }
  2143.    
  2144.     /**
  2145.      * Serialize to String the object <var>datiGeneraliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiGeneraliType}
  2146.      *
  2147.      * @param datiGeneraliType Object to be serialized
  2148.      * @return Object to be serialized as String
  2149.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2150.      */
  2151.     public String toString(DatiGeneraliType datiGeneraliType) throws SerializerException {
  2152.         return this.objToXml(DatiGeneraliType.class, datiGeneraliType, false).toString();
  2153.     }
  2154.     /**
  2155.      * Serialize to String the object <var>datiGeneraliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiGeneraliType}
  2156.      *
  2157.      * @param datiGeneraliType Object to be serialized
  2158.      * @param prettyPrint if true output the XML with indenting
  2159.      * @return Object to be serialized as String
  2160.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2161.      */
  2162.     public String toString(DatiGeneraliType datiGeneraliType,boolean prettyPrint) throws SerializerException {
  2163.         return this.objToXml(DatiGeneraliType.class, datiGeneraliType, prettyPrint).toString();
  2164.     }
  2165.    
  2166.    
  2167.    
  2168.     /*
  2169.      =================================================================================
  2170.      Object: DatiSALType
  2171.      =================================================================================
  2172.     */
  2173.    
  2174.     /**
  2175.      * Serialize to file system in <var>fileName</var> the object <var>datiSALType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiSALType}
  2176.      *
  2177.      * @param fileName Xml file to serialize the object <var>datiSALType</var>
  2178.      * @param datiSALType Object to be serialized in xml file <var>fileName</var>
  2179.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2180.      */
  2181.     public void write(String fileName,DatiSALType datiSALType) throws SerializerException {
  2182.         this.objToXml(fileName, DatiSALType.class, datiSALType, false);
  2183.     }
  2184.     /**
  2185.      * Serialize to file system in <var>fileName</var> the object <var>datiSALType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiSALType}
  2186.      *
  2187.      * @param fileName Xml file to serialize the object <var>datiSALType</var>
  2188.      * @param datiSALType Object to be serialized in xml file <var>fileName</var>
  2189.      * @param prettyPrint if true output the XML with indenting
  2190.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2191.      */
  2192.     public void write(String fileName,DatiSALType datiSALType,boolean prettyPrint) throws SerializerException {
  2193.         this.objToXml(fileName, DatiSALType.class, datiSALType, prettyPrint);
  2194.     }
  2195.    
  2196.     /**
  2197.      * Serialize to file system in <var>file</var> the object <var>datiSALType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiSALType}
  2198.      *
  2199.      * @param file Xml file to serialize the object <var>datiSALType</var>
  2200.      * @param datiSALType Object to be serialized in xml file <var>fileName</var>
  2201.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2202.      */
  2203.     public void write(File file,DatiSALType datiSALType) throws SerializerException {
  2204.         this.objToXml(file, DatiSALType.class, datiSALType, false);
  2205.     }
  2206.     /**
  2207.      * Serialize to file system in <var>file</var> the object <var>datiSALType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiSALType}
  2208.      *
  2209.      * @param file Xml file to serialize the object <var>datiSALType</var>
  2210.      * @param datiSALType Object to be serialized in xml file <var>fileName</var>
  2211.      * @param prettyPrint if true output the XML with indenting
  2212.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2213.      */
  2214.     public void write(File file,DatiSALType datiSALType,boolean prettyPrint) throws SerializerException {
  2215.         this.objToXml(file, DatiSALType.class, datiSALType, prettyPrint);
  2216.     }
  2217.    
  2218.     /**
  2219.      * Serialize to output stream <var>out</var> the object <var>datiSALType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiSALType}
  2220.      *
  2221.      * @param out OutputStream to serialize the object <var>datiSALType</var>
  2222.      * @param datiSALType Object to be serialized in xml file <var>fileName</var>
  2223.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2224.      */
  2225.     public void write(OutputStream out,DatiSALType datiSALType) throws SerializerException {
  2226.         this.objToXml(out, DatiSALType.class, datiSALType, false);
  2227.     }
  2228.     /**
  2229.      * Serialize to output stream <var>out</var> the object <var>datiSALType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiSALType}
  2230.      *
  2231.      * @param out OutputStream to serialize the object <var>datiSALType</var>
  2232.      * @param datiSALType Object to be serialized in xml file <var>fileName</var>
  2233.      * @param prettyPrint if true output the XML with indenting
  2234.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2235.      */
  2236.     public void write(OutputStream out,DatiSALType datiSALType,boolean prettyPrint) throws SerializerException {
  2237.         this.objToXml(out, DatiSALType.class, datiSALType, prettyPrint);
  2238.     }
  2239.            
  2240.     /**
  2241.      * Serialize to byte array the object <var>datiSALType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiSALType}
  2242.      *
  2243.      * @param datiSALType Object to be serialized
  2244.      * @return Object to be serialized in byte array
  2245.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2246.      */
  2247.     public byte[] toByteArray(DatiSALType datiSALType) throws SerializerException {
  2248.         return this.objToXml(DatiSALType.class, datiSALType, false).toByteArray();
  2249.     }
  2250.     /**
  2251.      * Serialize to byte array the object <var>datiSALType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiSALType}
  2252.      *
  2253.      * @param datiSALType Object to be serialized
  2254.      * @param prettyPrint if true output the XML with indenting
  2255.      * @return Object to be serialized in byte array
  2256.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2257.      */
  2258.     public byte[] toByteArray(DatiSALType datiSALType,boolean prettyPrint) throws SerializerException {
  2259.         return this.objToXml(DatiSALType.class, datiSALType, prettyPrint).toByteArray();
  2260.     }
  2261.    
  2262.     /**
  2263.      * Serialize to String the object <var>datiSALType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiSALType}
  2264.      *
  2265.      * @param datiSALType Object to be serialized
  2266.      * @return Object to be serialized as String
  2267.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2268.      */
  2269.     public String toString(DatiSALType datiSALType) throws SerializerException {
  2270.         return this.objToXml(DatiSALType.class, datiSALType, false).toString();
  2271.     }
  2272.     /**
  2273.      * Serialize to String the object <var>datiSALType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiSALType}
  2274.      *
  2275.      * @param datiSALType Object to be serialized
  2276.      * @param prettyPrint if true output the XML with indenting
  2277.      * @return Object to be serialized as String
  2278.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2279.      */
  2280.     public String toString(DatiSALType datiSALType,boolean prettyPrint) throws SerializerException {
  2281.         return this.objToXml(DatiSALType.class, datiSALType, prettyPrint).toString();
  2282.     }
  2283.    
  2284.    
  2285.    
  2286.     /*
  2287.      =================================================================================
  2288.      Object: DatiDDTType
  2289.      =================================================================================
  2290.     */
  2291.    
  2292.     /**
  2293.      * Serialize to file system in <var>fileName</var> the object <var>datiDDTType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiDDTType}
  2294.      *
  2295.      * @param fileName Xml file to serialize the object <var>datiDDTType</var>
  2296.      * @param datiDDTType Object to be serialized in xml file <var>fileName</var>
  2297.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2298.      */
  2299.     public void write(String fileName,DatiDDTType datiDDTType) throws SerializerException {
  2300.         this.objToXml(fileName, DatiDDTType.class, datiDDTType, false);
  2301.     }
  2302.     /**
  2303.      * Serialize to file system in <var>fileName</var> the object <var>datiDDTType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiDDTType}
  2304.      *
  2305.      * @param fileName Xml file to serialize the object <var>datiDDTType</var>
  2306.      * @param datiDDTType Object to be serialized in xml file <var>fileName</var>
  2307.      * @param prettyPrint if true output the XML with indenting
  2308.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2309.      */
  2310.     public void write(String fileName,DatiDDTType datiDDTType,boolean prettyPrint) throws SerializerException {
  2311.         this.objToXml(fileName, DatiDDTType.class, datiDDTType, prettyPrint);
  2312.     }
  2313.    
  2314.     /**
  2315.      * Serialize to file system in <var>file</var> the object <var>datiDDTType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiDDTType}
  2316.      *
  2317.      * @param file Xml file to serialize the object <var>datiDDTType</var>
  2318.      * @param datiDDTType Object to be serialized in xml file <var>fileName</var>
  2319.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2320.      */
  2321.     public void write(File file,DatiDDTType datiDDTType) throws SerializerException {
  2322.         this.objToXml(file, DatiDDTType.class, datiDDTType, false);
  2323.     }
  2324.     /**
  2325.      * Serialize to file system in <var>file</var> the object <var>datiDDTType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiDDTType}
  2326.      *
  2327.      * @param file Xml file to serialize the object <var>datiDDTType</var>
  2328.      * @param datiDDTType Object to be serialized in xml file <var>fileName</var>
  2329.      * @param prettyPrint if true output the XML with indenting
  2330.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2331.      */
  2332.     public void write(File file,DatiDDTType datiDDTType,boolean prettyPrint) throws SerializerException {
  2333.         this.objToXml(file, DatiDDTType.class, datiDDTType, prettyPrint);
  2334.     }
  2335.    
  2336.     /**
  2337.      * Serialize to output stream <var>out</var> the object <var>datiDDTType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiDDTType}
  2338.      *
  2339.      * @param out OutputStream to serialize the object <var>datiDDTType</var>
  2340.      * @param datiDDTType Object to be serialized in xml file <var>fileName</var>
  2341.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2342.      */
  2343.     public void write(OutputStream out,DatiDDTType datiDDTType) throws SerializerException {
  2344.         this.objToXml(out, DatiDDTType.class, datiDDTType, false);
  2345.     }
  2346.     /**
  2347.      * Serialize to output stream <var>out</var> the object <var>datiDDTType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiDDTType}
  2348.      *
  2349.      * @param out OutputStream to serialize the object <var>datiDDTType</var>
  2350.      * @param datiDDTType Object to be serialized in xml file <var>fileName</var>
  2351.      * @param prettyPrint if true output the XML with indenting
  2352.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2353.      */
  2354.     public void write(OutputStream out,DatiDDTType datiDDTType,boolean prettyPrint) throws SerializerException {
  2355.         this.objToXml(out, DatiDDTType.class, datiDDTType, prettyPrint);
  2356.     }
  2357.            
  2358.     /**
  2359.      * Serialize to byte array the object <var>datiDDTType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiDDTType}
  2360.      *
  2361.      * @param datiDDTType Object to be serialized
  2362.      * @return Object to be serialized in byte array
  2363.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2364.      */
  2365.     public byte[] toByteArray(DatiDDTType datiDDTType) throws SerializerException {
  2366.         return this.objToXml(DatiDDTType.class, datiDDTType, false).toByteArray();
  2367.     }
  2368.     /**
  2369.      * Serialize to byte array the object <var>datiDDTType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiDDTType}
  2370.      *
  2371.      * @param datiDDTType Object to be serialized
  2372.      * @param prettyPrint if true output the XML with indenting
  2373.      * @return Object to be serialized in byte array
  2374.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2375.      */
  2376.     public byte[] toByteArray(DatiDDTType datiDDTType,boolean prettyPrint) throws SerializerException {
  2377.         return this.objToXml(DatiDDTType.class, datiDDTType, prettyPrint).toByteArray();
  2378.     }
  2379.    
  2380.     /**
  2381.      * Serialize to String the object <var>datiDDTType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiDDTType}
  2382.      *
  2383.      * @param datiDDTType Object to be serialized
  2384.      * @return Object to be serialized as String
  2385.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2386.      */
  2387.     public String toString(DatiDDTType datiDDTType) throws SerializerException {
  2388.         return this.objToXml(DatiDDTType.class, datiDDTType, false).toString();
  2389.     }
  2390.     /**
  2391.      * Serialize to String the object <var>datiDDTType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiDDTType}
  2392.      *
  2393.      * @param datiDDTType Object to be serialized
  2394.      * @param prettyPrint if true output the XML with indenting
  2395.      * @return Object to be serialized as String
  2396.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2397.      */
  2398.     public String toString(DatiDDTType datiDDTType,boolean prettyPrint) throws SerializerException {
  2399.         return this.objToXml(DatiDDTType.class, datiDDTType, prettyPrint).toString();
  2400.     }
  2401.    
  2402.    
  2403.    
  2404.     /*
  2405.      =================================================================================
  2406.      Object: DatiTrasportoType
  2407.      =================================================================================
  2408.     */
  2409.    
  2410.     /**
  2411.      * Serialize to file system in <var>fileName</var> the object <var>datiTrasportoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiTrasportoType}
  2412.      *
  2413.      * @param fileName Xml file to serialize the object <var>datiTrasportoType</var>
  2414.      * @param datiTrasportoType Object to be serialized in xml file <var>fileName</var>
  2415.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2416.      */
  2417.     public void write(String fileName,DatiTrasportoType datiTrasportoType) throws SerializerException {
  2418.         this.objToXml(fileName, DatiTrasportoType.class, datiTrasportoType, false);
  2419.     }
  2420.     /**
  2421.      * Serialize to file system in <var>fileName</var> the object <var>datiTrasportoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiTrasportoType}
  2422.      *
  2423.      * @param fileName Xml file to serialize the object <var>datiTrasportoType</var>
  2424.      * @param datiTrasportoType Object to be serialized in xml file <var>fileName</var>
  2425.      * @param prettyPrint if true output the XML with indenting
  2426.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2427.      */
  2428.     public void write(String fileName,DatiTrasportoType datiTrasportoType,boolean prettyPrint) throws SerializerException {
  2429.         this.objToXml(fileName, DatiTrasportoType.class, datiTrasportoType, prettyPrint);
  2430.     }
  2431.    
  2432.     /**
  2433.      * Serialize to file system in <var>file</var> the object <var>datiTrasportoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiTrasportoType}
  2434.      *
  2435.      * @param file Xml file to serialize the object <var>datiTrasportoType</var>
  2436.      * @param datiTrasportoType Object to be serialized in xml file <var>fileName</var>
  2437.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2438.      */
  2439.     public void write(File file,DatiTrasportoType datiTrasportoType) throws SerializerException {
  2440.         this.objToXml(file, DatiTrasportoType.class, datiTrasportoType, false);
  2441.     }
  2442.     /**
  2443.      * Serialize to file system in <var>file</var> the object <var>datiTrasportoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiTrasportoType}
  2444.      *
  2445.      * @param file Xml file to serialize the object <var>datiTrasportoType</var>
  2446.      * @param datiTrasportoType Object to be serialized in xml file <var>fileName</var>
  2447.      * @param prettyPrint if true output the XML with indenting
  2448.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2449.      */
  2450.     public void write(File file,DatiTrasportoType datiTrasportoType,boolean prettyPrint) throws SerializerException {
  2451.         this.objToXml(file, DatiTrasportoType.class, datiTrasportoType, prettyPrint);
  2452.     }
  2453.    
  2454.     /**
  2455.      * Serialize to output stream <var>out</var> the object <var>datiTrasportoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiTrasportoType}
  2456.      *
  2457.      * @param out OutputStream to serialize the object <var>datiTrasportoType</var>
  2458.      * @param datiTrasportoType Object to be serialized in xml file <var>fileName</var>
  2459.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2460.      */
  2461.     public void write(OutputStream out,DatiTrasportoType datiTrasportoType) throws SerializerException {
  2462.         this.objToXml(out, DatiTrasportoType.class, datiTrasportoType, false);
  2463.     }
  2464.     /**
  2465.      * Serialize to output stream <var>out</var> the object <var>datiTrasportoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiTrasportoType}
  2466.      *
  2467.      * @param out OutputStream to serialize the object <var>datiTrasportoType</var>
  2468.      * @param datiTrasportoType Object to be serialized in xml file <var>fileName</var>
  2469.      * @param prettyPrint if true output the XML with indenting
  2470.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2471.      */
  2472.     public void write(OutputStream out,DatiTrasportoType datiTrasportoType,boolean prettyPrint) throws SerializerException {
  2473.         this.objToXml(out, DatiTrasportoType.class, datiTrasportoType, prettyPrint);
  2474.     }
  2475.            
  2476.     /**
  2477.      * Serialize to byte array the object <var>datiTrasportoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiTrasportoType}
  2478.      *
  2479.      * @param datiTrasportoType Object to be serialized
  2480.      * @return Object to be serialized in byte array
  2481.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2482.      */
  2483.     public byte[] toByteArray(DatiTrasportoType datiTrasportoType) throws SerializerException {
  2484.         return this.objToXml(DatiTrasportoType.class, datiTrasportoType, false).toByteArray();
  2485.     }
  2486.     /**
  2487.      * Serialize to byte array the object <var>datiTrasportoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiTrasportoType}
  2488.      *
  2489.      * @param datiTrasportoType Object to be serialized
  2490.      * @param prettyPrint if true output the XML with indenting
  2491.      * @return Object to be serialized in byte array
  2492.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2493.      */
  2494.     public byte[] toByteArray(DatiTrasportoType datiTrasportoType,boolean prettyPrint) throws SerializerException {
  2495.         return this.objToXml(DatiTrasportoType.class, datiTrasportoType, prettyPrint).toByteArray();
  2496.     }
  2497.    
  2498.     /**
  2499.      * Serialize to String the object <var>datiTrasportoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiTrasportoType}
  2500.      *
  2501.      * @param datiTrasportoType Object to be serialized
  2502.      * @return Object to be serialized as String
  2503.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2504.      */
  2505.     public String toString(DatiTrasportoType datiTrasportoType) throws SerializerException {
  2506.         return this.objToXml(DatiTrasportoType.class, datiTrasportoType, false).toString();
  2507.     }
  2508.     /**
  2509.      * Serialize to String the object <var>datiTrasportoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiTrasportoType}
  2510.      *
  2511.      * @param datiTrasportoType Object to be serialized
  2512.      * @param prettyPrint if true output the XML with indenting
  2513.      * @return Object to be serialized as String
  2514.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2515.      */
  2516.     public String toString(DatiTrasportoType datiTrasportoType,boolean prettyPrint) throws SerializerException {
  2517.         return this.objToXml(DatiTrasportoType.class, datiTrasportoType, prettyPrint).toString();
  2518.     }
  2519.    
  2520.    
  2521.    
  2522.     /*
  2523.      =================================================================================
  2524.      Object: FatturaPrincipaleType
  2525.      =================================================================================
  2526.     */
  2527.    
  2528.     /**
  2529.      * Serialize to file system in <var>fileName</var> the object <var>fatturaPrincipaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaPrincipaleType}
  2530.      *
  2531.      * @param fileName Xml file to serialize the object <var>fatturaPrincipaleType</var>
  2532.      * @param fatturaPrincipaleType Object to be serialized in xml file <var>fileName</var>
  2533.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2534.      */
  2535.     public void write(String fileName,FatturaPrincipaleType fatturaPrincipaleType) throws SerializerException {
  2536.         this.objToXml(fileName, FatturaPrincipaleType.class, fatturaPrincipaleType, false);
  2537.     }
  2538.     /**
  2539.      * Serialize to file system in <var>fileName</var> the object <var>fatturaPrincipaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaPrincipaleType}
  2540.      *
  2541.      * @param fileName Xml file to serialize the object <var>fatturaPrincipaleType</var>
  2542.      * @param fatturaPrincipaleType Object to be serialized in xml file <var>fileName</var>
  2543.      * @param prettyPrint if true output the XML with indenting
  2544.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2545.      */
  2546.     public void write(String fileName,FatturaPrincipaleType fatturaPrincipaleType,boolean prettyPrint) throws SerializerException {
  2547.         this.objToXml(fileName, FatturaPrincipaleType.class, fatturaPrincipaleType, prettyPrint);
  2548.     }
  2549.    
  2550.     /**
  2551.      * Serialize to file system in <var>file</var> the object <var>fatturaPrincipaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaPrincipaleType}
  2552.      *
  2553.      * @param file Xml file to serialize the object <var>fatturaPrincipaleType</var>
  2554.      * @param fatturaPrincipaleType Object to be serialized in xml file <var>fileName</var>
  2555.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2556.      */
  2557.     public void write(File file,FatturaPrincipaleType fatturaPrincipaleType) throws SerializerException {
  2558.         this.objToXml(file, FatturaPrincipaleType.class, fatturaPrincipaleType, false);
  2559.     }
  2560.     /**
  2561.      * Serialize to file system in <var>file</var> the object <var>fatturaPrincipaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaPrincipaleType}
  2562.      *
  2563.      * @param file Xml file to serialize the object <var>fatturaPrincipaleType</var>
  2564.      * @param fatturaPrincipaleType Object to be serialized in xml file <var>fileName</var>
  2565.      * @param prettyPrint if true output the XML with indenting
  2566.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2567.      */
  2568.     public void write(File file,FatturaPrincipaleType fatturaPrincipaleType,boolean prettyPrint) throws SerializerException {
  2569.         this.objToXml(file, FatturaPrincipaleType.class, fatturaPrincipaleType, prettyPrint);
  2570.     }
  2571.    
  2572.     /**
  2573.      * Serialize to output stream <var>out</var> the object <var>fatturaPrincipaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaPrincipaleType}
  2574.      *
  2575.      * @param out OutputStream to serialize the object <var>fatturaPrincipaleType</var>
  2576.      * @param fatturaPrincipaleType Object to be serialized in xml file <var>fileName</var>
  2577.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2578.      */
  2579.     public void write(OutputStream out,FatturaPrincipaleType fatturaPrincipaleType) throws SerializerException {
  2580.         this.objToXml(out, FatturaPrincipaleType.class, fatturaPrincipaleType, false);
  2581.     }
  2582.     /**
  2583.      * Serialize to output stream <var>out</var> the object <var>fatturaPrincipaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaPrincipaleType}
  2584.      *
  2585.      * @param out OutputStream to serialize the object <var>fatturaPrincipaleType</var>
  2586.      * @param fatturaPrincipaleType Object to be serialized in xml file <var>fileName</var>
  2587.      * @param prettyPrint if true output the XML with indenting
  2588.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2589.      */
  2590.     public void write(OutputStream out,FatturaPrincipaleType fatturaPrincipaleType,boolean prettyPrint) throws SerializerException {
  2591.         this.objToXml(out, FatturaPrincipaleType.class, fatturaPrincipaleType, prettyPrint);
  2592.     }
  2593.            
  2594.     /**
  2595.      * Serialize to byte array the object <var>fatturaPrincipaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaPrincipaleType}
  2596.      *
  2597.      * @param fatturaPrincipaleType Object to be serialized
  2598.      * @return Object to be serialized in byte array
  2599.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2600.      */
  2601.     public byte[] toByteArray(FatturaPrincipaleType fatturaPrincipaleType) throws SerializerException {
  2602.         return this.objToXml(FatturaPrincipaleType.class, fatturaPrincipaleType, false).toByteArray();
  2603.     }
  2604.     /**
  2605.      * Serialize to byte array the object <var>fatturaPrincipaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaPrincipaleType}
  2606.      *
  2607.      * @param fatturaPrincipaleType Object to be serialized
  2608.      * @param prettyPrint if true output the XML with indenting
  2609.      * @return Object to be serialized in byte array
  2610.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2611.      */
  2612.     public byte[] toByteArray(FatturaPrincipaleType fatturaPrincipaleType,boolean prettyPrint) throws SerializerException {
  2613.         return this.objToXml(FatturaPrincipaleType.class, fatturaPrincipaleType, prettyPrint).toByteArray();
  2614.     }
  2615.    
  2616.     /**
  2617.      * Serialize to String the object <var>fatturaPrincipaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaPrincipaleType}
  2618.      *
  2619.      * @param fatturaPrincipaleType Object to be serialized
  2620.      * @return Object to be serialized as String
  2621.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2622.      */
  2623.     public String toString(FatturaPrincipaleType fatturaPrincipaleType) throws SerializerException {
  2624.         return this.objToXml(FatturaPrincipaleType.class, fatturaPrincipaleType, false).toString();
  2625.     }
  2626.     /**
  2627.      * Serialize to String the object <var>fatturaPrincipaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaPrincipaleType}
  2628.      *
  2629.      * @param fatturaPrincipaleType Object to be serialized
  2630.      * @param prettyPrint if true output the XML with indenting
  2631.      * @return Object to be serialized as String
  2632.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2633.      */
  2634.     public String toString(FatturaPrincipaleType fatturaPrincipaleType,boolean prettyPrint) throws SerializerException {
  2635.         return this.objToXml(FatturaPrincipaleType.class, fatturaPrincipaleType, prettyPrint).toString();
  2636.     }
  2637.    
  2638.    
  2639.    
  2640.     /*
  2641.      =================================================================================
  2642.      Object: DatiTrasmissioneType
  2643.      =================================================================================
  2644.     */
  2645.    
  2646.     /**
  2647.      * Serialize to file system in <var>fileName</var> the object <var>datiTrasmissioneType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiTrasmissioneType}
  2648.      *
  2649.      * @param fileName Xml file to serialize the object <var>datiTrasmissioneType</var>
  2650.      * @param datiTrasmissioneType Object to be serialized in xml file <var>fileName</var>
  2651.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2652.      */
  2653.     public void write(String fileName,DatiTrasmissioneType datiTrasmissioneType) throws SerializerException {
  2654.         this.objToXml(fileName, DatiTrasmissioneType.class, datiTrasmissioneType, false);
  2655.     }
  2656.     /**
  2657.      * Serialize to file system in <var>fileName</var> the object <var>datiTrasmissioneType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiTrasmissioneType}
  2658.      *
  2659.      * @param fileName Xml file to serialize the object <var>datiTrasmissioneType</var>
  2660.      * @param datiTrasmissioneType Object to be serialized in xml file <var>fileName</var>
  2661.      * @param prettyPrint if true output the XML with indenting
  2662.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2663.      */
  2664.     public void write(String fileName,DatiTrasmissioneType datiTrasmissioneType,boolean prettyPrint) throws SerializerException {
  2665.         this.objToXml(fileName, DatiTrasmissioneType.class, datiTrasmissioneType, prettyPrint);
  2666.     }
  2667.    
  2668.     /**
  2669.      * Serialize to file system in <var>file</var> the object <var>datiTrasmissioneType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiTrasmissioneType}
  2670.      *
  2671.      * @param file Xml file to serialize the object <var>datiTrasmissioneType</var>
  2672.      * @param datiTrasmissioneType Object to be serialized in xml file <var>fileName</var>
  2673.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2674.      */
  2675.     public void write(File file,DatiTrasmissioneType datiTrasmissioneType) throws SerializerException {
  2676.         this.objToXml(file, DatiTrasmissioneType.class, datiTrasmissioneType, false);
  2677.     }
  2678.     /**
  2679.      * Serialize to file system in <var>file</var> the object <var>datiTrasmissioneType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiTrasmissioneType}
  2680.      *
  2681.      * @param file Xml file to serialize the object <var>datiTrasmissioneType</var>
  2682.      * @param datiTrasmissioneType Object to be serialized in xml file <var>fileName</var>
  2683.      * @param prettyPrint if true output the XML with indenting
  2684.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2685.      */
  2686.     public void write(File file,DatiTrasmissioneType datiTrasmissioneType,boolean prettyPrint) throws SerializerException {
  2687.         this.objToXml(file, DatiTrasmissioneType.class, datiTrasmissioneType, prettyPrint);
  2688.     }
  2689.    
  2690.     /**
  2691.      * Serialize to output stream <var>out</var> the object <var>datiTrasmissioneType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiTrasmissioneType}
  2692.      *
  2693.      * @param out OutputStream to serialize the object <var>datiTrasmissioneType</var>
  2694.      * @param datiTrasmissioneType Object to be serialized in xml file <var>fileName</var>
  2695.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2696.      */
  2697.     public void write(OutputStream out,DatiTrasmissioneType datiTrasmissioneType) throws SerializerException {
  2698.         this.objToXml(out, DatiTrasmissioneType.class, datiTrasmissioneType, false);
  2699.     }
  2700.     /**
  2701.      * Serialize to output stream <var>out</var> the object <var>datiTrasmissioneType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiTrasmissioneType}
  2702.      *
  2703.      * @param out OutputStream to serialize the object <var>datiTrasmissioneType</var>
  2704.      * @param datiTrasmissioneType Object to be serialized in xml file <var>fileName</var>
  2705.      * @param prettyPrint if true output the XML with indenting
  2706.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2707.      */
  2708.     public void write(OutputStream out,DatiTrasmissioneType datiTrasmissioneType,boolean prettyPrint) throws SerializerException {
  2709.         this.objToXml(out, DatiTrasmissioneType.class, datiTrasmissioneType, prettyPrint);
  2710.     }
  2711.            
  2712.     /**
  2713.      * Serialize to byte array the object <var>datiTrasmissioneType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiTrasmissioneType}
  2714.      *
  2715.      * @param datiTrasmissioneType Object to be serialized
  2716.      * @return Object to be serialized in byte array
  2717.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2718.      */
  2719.     public byte[] toByteArray(DatiTrasmissioneType datiTrasmissioneType) throws SerializerException {
  2720.         return this.objToXml(DatiTrasmissioneType.class, datiTrasmissioneType, false).toByteArray();
  2721.     }
  2722.     /**
  2723.      * Serialize to byte array the object <var>datiTrasmissioneType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiTrasmissioneType}
  2724.      *
  2725.      * @param datiTrasmissioneType Object to be serialized
  2726.      * @param prettyPrint if true output the XML with indenting
  2727.      * @return Object to be serialized in byte array
  2728.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2729.      */
  2730.     public byte[] toByteArray(DatiTrasmissioneType datiTrasmissioneType,boolean prettyPrint) throws SerializerException {
  2731.         return this.objToXml(DatiTrasmissioneType.class, datiTrasmissioneType, prettyPrint).toByteArray();
  2732.     }
  2733.    
  2734.     /**
  2735.      * Serialize to String the object <var>datiTrasmissioneType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiTrasmissioneType}
  2736.      *
  2737.      * @param datiTrasmissioneType Object to be serialized
  2738.      * @return Object to be serialized as String
  2739.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2740.      */
  2741.     public String toString(DatiTrasmissioneType datiTrasmissioneType) throws SerializerException {
  2742.         return this.objToXml(DatiTrasmissioneType.class, datiTrasmissioneType, false).toString();
  2743.     }
  2744.     /**
  2745.      * Serialize to String the object <var>datiTrasmissioneType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiTrasmissioneType}
  2746.      *
  2747.      * @param datiTrasmissioneType Object to be serialized
  2748.      * @param prettyPrint if true output the XML with indenting
  2749.      * @return Object to be serialized as String
  2750.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2751.      */
  2752.     public String toString(DatiTrasmissioneType datiTrasmissioneType,boolean prettyPrint) throws SerializerException {
  2753.         return this.objToXml(DatiTrasmissioneType.class, datiTrasmissioneType, prettyPrint).toString();
  2754.     }
  2755.    
  2756.    
  2757.    
  2758.     /*
  2759.      =================================================================================
  2760.      Object: FatturaElettronicaHeaderType
  2761.      =================================================================================
  2762.     */
  2763.    
  2764.     /**
  2765.      * Serialize to file system in <var>fileName</var> the object <var>fatturaElettronicaHeaderType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaHeaderType}
  2766.      *
  2767.      * @param fileName Xml file to serialize the object <var>fatturaElettronicaHeaderType</var>
  2768.      * @param fatturaElettronicaHeaderType Object to be serialized in xml file <var>fileName</var>
  2769.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2770.      */
  2771.     public void write(String fileName,FatturaElettronicaHeaderType fatturaElettronicaHeaderType) throws SerializerException {
  2772.         this.objToXml(fileName, FatturaElettronicaHeaderType.class, fatturaElettronicaHeaderType, false);
  2773.     }
  2774.     /**
  2775.      * Serialize to file system in <var>fileName</var> the object <var>fatturaElettronicaHeaderType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaHeaderType}
  2776.      *
  2777.      * @param fileName Xml file to serialize the object <var>fatturaElettronicaHeaderType</var>
  2778.      * @param fatturaElettronicaHeaderType Object to be serialized in xml file <var>fileName</var>
  2779.      * @param prettyPrint if true output the XML with indenting
  2780.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2781.      */
  2782.     public void write(String fileName,FatturaElettronicaHeaderType fatturaElettronicaHeaderType,boolean prettyPrint) throws SerializerException {
  2783.         this.objToXml(fileName, FatturaElettronicaHeaderType.class, fatturaElettronicaHeaderType, prettyPrint);
  2784.     }
  2785.    
  2786.     /**
  2787.      * Serialize to file system in <var>file</var> the object <var>fatturaElettronicaHeaderType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaHeaderType}
  2788.      *
  2789.      * @param file Xml file to serialize the object <var>fatturaElettronicaHeaderType</var>
  2790.      * @param fatturaElettronicaHeaderType Object to be serialized in xml file <var>fileName</var>
  2791.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2792.      */
  2793.     public void write(File file,FatturaElettronicaHeaderType fatturaElettronicaHeaderType) throws SerializerException {
  2794.         this.objToXml(file, FatturaElettronicaHeaderType.class, fatturaElettronicaHeaderType, false);
  2795.     }
  2796.     /**
  2797.      * Serialize to file system in <var>file</var> the object <var>fatturaElettronicaHeaderType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaHeaderType}
  2798.      *
  2799.      * @param file Xml file to serialize the object <var>fatturaElettronicaHeaderType</var>
  2800.      * @param fatturaElettronicaHeaderType Object to be serialized in xml file <var>fileName</var>
  2801.      * @param prettyPrint if true output the XML with indenting
  2802.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2803.      */
  2804.     public void write(File file,FatturaElettronicaHeaderType fatturaElettronicaHeaderType,boolean prettyPrint) throws SerializerException {
  2805.         this.objToXml(file, FatturaElettronicaHeaderType.class, fatturaElettronicaHeaderType, prettyPrint);
  2806.     }
  2807.    
  2808.     /**
  2809.      * Serialize to output stream <var>out</var> the object <var>fatturaElettronicaHeaderType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaHeaderType}
  2810.      *
  2811.      * @param out OutputStream to serialize the object <var>fatturaElettronicaHeaderType</var>
  2812.      * @param fatturaElettronicaHeaderType Object to be serialized in xml file <var>fileName</var>
  2813.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2814.      */
  2815.     public void write(OutputStream out,FatturaElettronicaHeaderType fatturaElettronicaHeaderType) throws SerializerException {
  2816.         this.objToXml(out, FatturaElettronicaHeaderType.class, fatturaElettronicaHeaderType, false);
  2817.     }
  2818.     /**
  2819.      * Serialize to output stream <var>out</var> the object <var>fatturaElettronicaHeaderType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaHeaderType}
  2820.      *
  2821.      * @param out OutputStream to serialize the object <var>fatturaElettronicaHeaderType</var>
  2822.      * @param fatturaElettronicaHeaderType Object to be serialized in xml file <var>fileName</var>
  2823.      * @param prettyPrint if true output the XML with indenting
  2824.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2825.      */
  2826.     public void write(OutputStream out,FatturaElettronicaHeaderType fatturaElettronicaHeaderType,boolean prettyPrint) throws SerializerException {
  2827.         this.objToXml(out, FatturaElettronicaHeaderType.class, fatturaElettronicaHeaderType, prettyPrint);
  2828.     }
  2829.            
  2830.     /**
  2831.      * Serialize to byte array the object <var>fatturaElettronicaHeaderType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaHeaderType}
  2832.      *
  2833.      * @param fatturaElettronicaHeaderType Object to be serialized
  2834.      * @return Object to be serialized in byte array
  2835.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2836.      */
  2837.     public byte[] toByteArray(FatturaElettronicaHeaderType fatturaElettronicaHeaderType) throws SerializerException {
  2838.         return this.objToXml(FatturaElettronicaHeaderType.class, fatturaElettronicaHeaderType, false).toByteArray();
  2839.     }
  2840.     /**
  2841.      * Serialize to byte array the object <var>fatturaElettronicaHeaderType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaHeaderType}
  2842.      *
  2843.      * @param fatturaElettronicaHeaderType Object to be serialized
  2844.      * @param prettyPrint if true output the XML with indenting
  2845.      * @return Object to be serialized in byte array
  2846.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2847.      */
  2848.     public byte[] toByteArray(FatturaElettronicaHeaderType fatturaElettronicaHeaderType,boolean prettyPrint) throws SerializerException {
  2849.         return this.objToXml(FatturaElettronicaHeaderType.class, fatturaElettronicaHeaderType, prettyPrint).toByteArray();
  2850.     }
  2851.    
  2852.     /**
  2853.      * Serialize to String the object <var>fatturaElettronicaHeaderType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaHeaderType}
  2854.      *
  2855.      * @param fatturaElettronicaHeaderType Object to be serialized
  2856.      * @return Object to be serialized as String
  2857.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2858.      */
  2859.     public String toString(FatturaElettronicaHeaderType fatturaElettronicaHeaderType) throws SerializerException {
  2860.         return this.objToXml(FatturaElettronicaHeaderType.class, fatturaElettronicaHeaderType, false).toString();
  2861.     }
  2862.     /**
  2863.      * Serialize to String the object <var>fatturaElettronicaHeaderType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaHeaderType}
  2864.      *
  2865.      * @param fatturaElettronicaHeaderType Object to be serialized
  2866.      * @param prettyPrint if true output the XML with indenting
  2867.      * @return Object to be serialized as String
  2868.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2869.      */
  2870.     public String toString(FatturaElettronicaHeaderType fatturaElettronicaHeaderType,boolean prettyPrint) throws SerializerException {
  2871.         return this.objToXml(FatturaElettronicaHeaderType.class, fatturaElettronicaHeaderType, prettyPrint).toString();
  2872.     }
  2873.    
  2874.    
  2875.    
  2876.     /*
  2877.      =================================================================================
  2878.      Object: CedentePrestatoreType
  2879.      =================================================================================
  2880.     */
  2881.    
  2882.     /**
  2883.      * Serialize to file system in <var>fileName</var> the object <var>cedentePrestatoreType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CedentePrestatoreType}
  2884.      *
  2885.      * @param fileName Xml file to serialize the object <var>cedentePrestatoreType</var>
  2886.      * @param cedentePrestatoreType Object to be serialized in xml file <var>fileName</var>
  2887.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2888.      */
  2889.     public void write(String fileName,CedentePrestatoreType cedentePrestatoreType) throws SerializerException {
  2890.         this.objToXml(fileName, CedentePrestatoreType.class, cedentePrestatoreType, false);
  2891.     }
  2892.     /**
  2893.      * Serialize to file system in <var>fileName</var> the object <var>cedentePrestatoreType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CedentePrestatoreType}
  2894.      *
  2895.      * @param fileName Xml file to serialize the object <var>cedentePrestatoreType</var>
  2896.      * @param cedentePrestatoreType Object to be serialized in xml file <var>fileName</var>
  2897.      * @param prettyPrint if true output the XML with indenting
  2898.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2899.      */
  2900.     public void write(String fileName,CedentePrestatoreType cedentePrestatoreType,boolean prettyPrint) throws SerializerException {
  2901.         this.objToXml(fileName, CedentePrestatoreType.class, cedentePrestatoreType, prettyPrint);
  2902.     }
  2903.    
  2904.     /**
  2905.      * Serialize to file system in <var>file</var> the object <var>cedentePrestatoreType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CedentePrestatoreType}
  2906.      *
  2907.      * @param file Xml file to serialize the object <var>cedentePrestatoreType</var>
  2908.      * @param cedentePrestatoreType Object to be serialized in xml file <var>fileName</var>
  2909.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2910.      */
  2911.     public void write(File file,CedentePrestatoreType cedentePrestatoreType) throws SerializerException {
  2912.         this.objToXml(file, CedentePrestatoreType.class, cedentePrestatoreType, false);
  2913.     }
  2914.     /**
  2915.      * Serialize to file system in <var>file</var> the object <var>cedentePrestatoreType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CedentePrestatoreType}
  2916.      *
  2917.      * @param file Xml file to serialize the object <var>cedentePrestatoreType</var>
  2918.      * @param cedentePrestatoreType Object to be serialized in xml file <var>fileName</var>
  2919.      * @param prettyPrint if true output the XML with indenting
  2920.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2921.      */
  2922.     public void write(File file,CedentePrestatoreType cedentePrestatoreType,boolean prettyPrint) throws SerializerException {
  2923.         this.objToXml(file, CedentePrestatoreType.class, cedentePrestatoreType, prettyPrint);
  2924.     }
  2925.    
  2926.     /**
  2927.      * Serialize to output stream <var>out</var> the object <var>cedentePrestatoreType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CedentePrestatoreType}
  2928.      *
  2929.      * @param out OutputStream to serialize the object <var>cedentePrestatoreType</var>
  2930.      * @param cedentePrestatoreType Object to be serialized in xml file <var>fileName</var>
  2931.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2932.      */
  2933.     public void write(OutputStream out,CedentePrestatoreType cedentePrestatoreType) throws SerializerException {
  2934.         this.objToXml(out, CedentePrestatoreType.class, cedentePrestatoreType, false);
  2935.     }
  2936.     /**
  2937.      * Serialize to output stream <var>out</var> the object <var>cedentePrestatoreType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CedentePrestatoreType}
  2938.      *
  2939.      * @param out OutputStream to serialize the object <var>cedentePrestatoreType</var>
  2940.      * @param cedentePrestatoreType Object to be serialized in xml file <var>fileName</var>
  2941.      * @param prettyPrint if true output the XML with indenting
  2942.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2943.      */
  2944.     public void write(OutputStream out,CedentePrestatoreType cedentePrestatoreType,boolean prettyPrint) throws SerializerException {
  2945.         this.objToXml(out, CedentePrestatoreType.class, cedentePrestatoreType, prettyPrint);
  2946.     }
  2947.            
  2948.     /**
  2949.      * Serialize to byte array the object <var>cedentePrestatoreType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CedentePrestatoreType}
  2950.      *
  2951.      * @param cedentePrestatoreType Object to be serialized
  2952.      * @return Object to be serialized in byte array
  2953.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2954.      */
  2955.     public byte[] toByteArray(CedentePrestatoreType cedentePrestatoreType) throws SerializerException {
  2956.         return this.objToXml(CedentePrestatoreType.class, cedentePrestatoreType, false).toByteArray();
  2957.     }
  2958.     /**
  2959.      * Serialize to byte array the object <var>cedentePrestatoreType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CedentePrestatoreType}
  2960.      *
  2961.      * @param cedentePrestatoreType Object to be serialized
  2962.      * @param prettyPrint if true output the XML with indenting
  2963.      * @return Object to be serialized in byte array
  2964.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2965.      */
  2966.     public byte[] toByteArray(CedentePrestatoreType cedentePrestatoreType,boolean prettyPrint) throws SerializerException {
  2967.         return this.objToXml(CedentePrestatoreType.class, cedentePrestatoreType, prettyPrint).toByteArray();
  2968.     }
  2969.    
  2970.     /**
  2971.      * Serialize to String the object <var>cedentePrestatoreType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CedentePrestatoreType}
  2972.      *
  2973.      * @param cedentePrestatoreType Object to be serialized
  2974.      * @return Object to be serialized as String
  2975.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2976.      */
  2977.     public String toString(CedentePrestatoreType cedentePrestatoreType) throws SerializerException {
  2978.         return this.objToXml(CedentePrestatoreType.class, cedentePrestatoreType, false).toString();
  2979.     }
  2980.     /**
  2981.      * Serialize to String the object <var>cedentePrestatoreType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CedentePrestatoreType}
  2982.      *
  2983.      * @param cedentePrestatoreType Object to be serialized
  2984.      * @param prettyPrint if true output the XML with indenting
  2985.      * @return Object to be serialized as String
  2986.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2987.      */
  2988.     public String toString(CedentePrestatoreType cedentePrestatoreType,boolean prettyPrint) throws SerializerException {
  2989.         return this.objToXml(CedentePrestatoreType.class, cedentePrestatoreType, prettyPrint).toString();
  2990.     }
  2991.    
  2992.    
  2993.    
  2994.     /*
  2995.      =================================================================================
  2996.      Object: RappresentanteFiscaleType
  2997.      =================================================================================
  2998.     */
  2999.    
  3000.     /**
  3001.      * Serialize to file system in <var>fileName</var> the object <var>rappresentanteFiscaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.RappresentanteFiscaleType}
  3002.      *
  3003.      * @param fileName Xml file to serialize the object <var>rappresentanteFiscaleType</var>
  3004.      * @param rappresentanteFiscaleType Object to be serialized in xml file <var>fileName</var>
  3005.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3006.      */
  3007.     public void write(String fileName,RappresentanteFiscaleType rappresentanteFiscaleType) throws SerializerException {
  3008.         this.objToXml(fileName, RappresentanteFiscaleType.class, rappresentanteFiscaleType, false);
  3009.     }
  3010.     /**
  3011.      * Serialize to file system in <var>fileName</var> the object <var>rappresentanteFiscaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.RappresentanteFiscaleType}
  3012.      *
  3013.      * @param fileName Xml file to serialize the object <var>rappresentanteFiscaleType</var>
  3014.      * @param rappresentanteFiscaleType Object to be serialized in xml file <var>fileName</var>
  3015.      * @param prettyPrint if true output the XML with indenting
  3016.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3017.      */
  3018.     public void write(String fileName,RappresentanteFiscaleType rappresentanteFiscaleType,boolean prettyPrint) throws SerializerException {
  3019.         this.objToXml(fileName, RappresentanteFiscaleType.class, rappresentanteFiscaleType, prettyPrint);
  3020.     }
  3021.    
  3022.     /**
  3023.      * Serialize to file system in <var>file</var> the object <var>rappresentanteFiscaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.RappresentanteFiscaleType}
  3024.      *
  3025.      * @param file Xml file to serialize the object <var>rappresentanteFiscaleType</var>
  3026.      * @param rappresentanteFiscaleType Object to be serialized in xml file <var>fileName</var>
  3027.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3028.      */
  3029.     public void write(File file,RappresentanteFiscaleType rappresentanteFiscaleType) throws SerializerException {
  3030.         this.objToXml(file, RappresentanteFiscaleType.class, rappresentanteFiscaleType, false);
  3031.     }
  3032.     /**
  3033.      * Serialize to file system in <var>file</var> the object <var>rappresentanteFiscaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.RappresentanteFiscaleType}
  3034.      *
  3035.      * @param file Xml file to serialize the object <var>rappresentanteFiscaleType</var>
  3036.      * @param rappresentanteFiscaleType Object to be serialized in xml file <var>fileName</var>
  3037.      * @param prettyPrint if true output the XML with indenting
  3038.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3039.      */
  3040.     public void write(File file,RappresentanteFiscaleType rappresentanteFiscaleType,boolean prettyPrint) throws SerializerException {
  3041.         this.objToXml(file, RappresentanteFiscaleType.class, rappresentanteFiscaleType, prettyPrint);
  3042.     }
  3043.    
  3044.     /**
  3045.      * Serialize to output stream <var>out</var> the object <var>rappresentanteFiscaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.RappresentanteFiscaleType}
  3046.      *
  3047.      * @param out OutputStream to serialize the object <var>rappresentanteFiscaleType</var>
  3048.      * @param rappresentanteFiscaleType Object to be serialized in xml file <var>fileName</var>
  3049.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3050.      */
  3051.     public void write(OutputStream out,RappresentanteFiscaleType rappresentanteFiscaleType) throws SerializerException {
  3052.         this.objToXml(out, RappresentanteFiscaleType.class, rappresentanteFiscaleType, false);
  3053.     }
  3054.     /**
  3055.      * Serialize to output stream <var>out</var> the object <var>rappresentanteFiscaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.RappresentanteFiscaleType}
  3056.      *
  3057.      * @param out OutputStream to serialize the object <var>rappresentanteFiscaleType</var>
  3058.      * @param rappresentanteFiscaleType Object to be serialized in xml file <var>fileName</var>
  3059.      * @param prettyPrint if true output the XML with indenting
  3060.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3061.      */
  3062.     public void write(OutputStream out,RappresentanteFiscaleType rappresentanteFiscaleType,boolean prettyPrint) throws SerializerException {
  3063.         this.objToXml(out, RappresentanteFiscaleType.class, rappresentanteFiscaleType, prettyPrint);
  3064.     }
  3065.            
  3066.     /**
  3067.      * Serialize to byte array the object <var>rappresentanteFiscaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.RappresentanteFiscaleType}
  3068.      *
  3069.      * @param rappresentanteFiscaleType Object to be serialized
  3070.      * @return Object to be serialized in byte array
  3071.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3072.      */
  3073.     public byte[] toByteArray(RappresentanteFiscaleType rappresentanteFiscaleType) throws SerializerException {
  3074.         return this.objToXml(RappresentanteFiscaleType.class, rappresentanteFiscaleType, false).toByteArray();
  3075.     }
  3076.     /**
  3077.      * Serialize to byte array the object <var>rappresentanteFiscaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.RappresentanteFiscaleType}
  3078.      *
  3079.      * @param rappresentanteFiscaleType Object to be serialized
  3080.      * @param prettyPrint if true output the XML with indenting
  3081.      * @return Object to be serialized in byte array
  3082.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3083.      */
  3084.     public byte[] toByteArray(RappresentanteFiscaleType rappresentanteFiscaleType,boolean prettyPrint) throws SerializerException {
  3085.         return this.objToXml(RappresentanteFiscaleType.class, rappresentanteFiscaleType, prettyPrint).toByteArray();
  3086.     }
  3087.    
  3088.     /**
  3089.      * Serialize to String the object <var>rappresentanteFiscaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.RappresentanteFiscaleType}
  3090.      *
  3091.      * @param rappresentanteFiscaleType Object to be serialized
  3092.      * @return Object to be serialized as String
  3093.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3094.      */
  3095.     public String toString(RappresentanteFiscaleType rappresentanteFiscaleType) throws SerializerException {
  3096.         return this.objToXml(RappresentanteFiscaleType.class, rappresentanteFiscaleType, false).toString();
  3097.     }
  3098.     /**
  3099.      * Serialize to String the object <var>rappresentanteFiscaleType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.RappresentanteFiscaleType}
  3100.      *
  3101.      * @param rappresentanteFiscaleType Object to be serialized
  3102.      * @param prettyPrint if true output the XML with indenting
  3103.      * @return Object to be serialized as String
  3104.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3105.      */
  3106.     public String toString(RappresentanteFiscaleType rappresentanteFiscaleType,boolean prettyPrint) throws SerializerException {
  3107.         return this.objToXml(RappresentanteFiscaleType.class, rappresentanteFiscaleType, prettyPrint).toString();
  3108.     }
  3109.    
  3110.    
  3111.    
  3112.     /*
  3113.      =================================================================================
  3114.      Object: CessionarioCommittenteType
  3115.      =================================================================================
  3116.     */
  3117.    
  3118.     /**
  3119.      * Serialize to file system in <var>fileName</var> the object <var>cessionarioCommittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CessionarioCommittenteType}
  3120.      *
  3121.      * @param fileName Xml file to serialize the object <var>cessionarioCommittenteType</var>
  3122.      * @param cessionarioCommittenteType Object to be serialized in xml file <var>fileName</var>
  3123.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3124.      */
  3125.     public void write(String fileName,CessionarioCommittenteType cessionarioCommittenteType) throws SerializerException {
  3126.         this.objToXml(fileName, CessionarioCommittenteType.class, cessionarioCommittenteType, false);
  3127.     }
  3128.     /**
  3129.      * Serialize to file system in <var>fileName</var> the object <var>cessionarioCommittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CessionarioCommittenteType}
  3130.      *
  3131.      * @param fileName Xml file to serialize the object <var>cessionarioCommittenteType</var>
  3132.      * @param cessionarioCommittenteType Object to be serialized in xml file <var>fileName</var>
  3133.      * @param prettyPrint if true output the XML with indenting
  3134.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3135.      */
  3136.     public void write(String fileName,CessionarioCommittenteType cessionarioCommittenteType,boolean prettyPrint) throws SerializerException {
  3137.         this.objToXml(fileName, CessionarioCommittenteType.class, cessionarioCommittenteType, prettyPrint);
  3138.     }
  3139.    
  3140.     /**
  3141.      * Serialize to file system in <var>file</var> the object <var>cessionarioCommittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CessionarioCommittenteType}
  3142.      *
  3143.      * @param file Xml file to serialize the object <var>cessionarioCommittenteType</var>
  3144.      * @param cessionarioCommittenteType Object to be serialized in xml file <var>fileName</var>
  3145.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3146.      */
  3147.     public void write(File file,CessionarioCommittenteType cessionarioCommittenteType) throws SerializerException {
  3148.         this.objToXml(file, CessionarioCommittenteType.class, cessionarioCommittenteType, false);
  3149.     }
  3150.     /**
  3151.      * Serialize to file system in <var>file</var> the object <var>cessionarioCommittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CessionarioCommittenteType}
  3152.      *
  3153.      * @param file Xml file to serialize the object <var>cessionarioCommittenteType</var>
  3154.      * @param cessionarioCommittenteType Object to be serialized in xml file <var>fileName</var>
  3155.      * @param prettyPrint if true output the XML with indenting
  3156.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3157.      */
  3158.     public void write(File file,CessionarioCommittenteType cessionarioCommittenteType,boolean prettyPrint) throws SerializerException {
  3159.         this.objToXml(file, CessionarioCommittenteType.class, cessionarioCommittenteType, prettyPrint);
  3160.     }
  3161.    
  3162.     /**
  3163.      * Serialize to output stream <var>out</var> the object <var>cessionarioCommittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CessionarioCommittenteType}
  3164.      *
  3165.      * @param out OutputStream to serialize the object <var>cessionarioCommittenteType</var>
  3166.      * @param cessionarioCommittenteType Object to be serialized in xml file <var>fileName</var>
  3167.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3168.      */
  3169.     public void write(OutputStream out,CessionarioCommittenteType cessionarioCommittenteType) throws SerializerException {
  3170.         this.objToXml(out, CessionarioCommittenteType.class, cessionarioCommittenteType, false);
  3171.     }
  3172.     /**
  3173.      * Serialize to output stream <var>out</var> the object <var>cessionarioCommittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CessionarioCommittenteType}
  3174.      *
  3175.      * @param out OutputStream to serialize the object <var>cessionarioCommittenteType</var>
  3176.      * @param cessionarioCommittenteType Object to be serialized in xml file <var>fileName</var>
  3177.      * @param prettyPrint if true output the XML with indenting
  3178.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3179.      */
  3180.     public void write(OutputStream out,CessionarioCommittenteType cessionarioCommittenteType,boolean prettyPrint) throws SerializerException {
  3181.         this.objToXml(out, CessionarioCommittenteType.class, cessionarioCommittenteType, prettyPrint);
  3182.     }
  3183.            
  3184.     /**
  3185.      * Serialize to byte array the object <var>cessionarioCommittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CessionarioCommittenteType}
  3186.      *
  3187.      * @param cessionarioCommittenteType Object to be serialized
  3188.      * @return Object to be serialized in byte array
  3189.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3190.      */
  3191.     public byte[] toByteArray(CessionarioCommittenteType cessionarioCommittenteType) throws SerializerException {
  3192.         return this.objToXml(CessionarioCommittenteType.class, cessionarioCommittenteType, false).toByteArray();
  3193.     }
  3194.     /**
  3195.      * Serialize to byte array the object <var>cessionarioCommittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CessionarioCommittenteType}
  3196.      *
  3197.      * @param cessionarioCommittenteType Object to be serialized
  3198.      * @param prettyPrint if true output the XML with indenting
  3199.      * @return Object to be serialized in byte array
  3200.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3201.      */
  3202.     public byte[] toByteArray(CessionarioCommittenteType cessionarioCommittenteType,boolean prettyPrint) throws SerializerException {
  3203.         return this.objToXml(CessionarioCommittenteType.class, cessionarioCommittenteType, prettyPrint).toByteArray();
  3204.     }
  3205.    
  3206.     /**
  3207.      * Serialize to String the object <var>cessionarioCommittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CessionarioCommittenteType}
  3208.      *
  3209.      * @param cessionarioCommittenteType Object to be serialized
  3210.      * @return Object to be serialized as String
  3211.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3212.      */
  3213.     public String toString(CessionarioCommittenteType cessionarioCommittenteType) throws SerializerException {
  3214.         return this.objToXml(CessionarioCommittenteType.class, cessionarioCommittenteType, false).toString();
  3215.     }
  3216.     /**
  3217.      * Serialize to String the object <var>cessionarioCommittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.CessionarioCommittenteType}
  3218.      *
  3219.      * @param cessionarioCommittenteType Object to be serialized
  3220.      * @param prettyPrint if true output the XML with indenting
  3221.      * @return Object to be serialized as String
  3222.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3223.      */
  3224.     public String toString(CessionarioCommittenteType cessionarioCommittenteType,boolean prettyPrint) throws SerializerException {
  3225.         return this.objToXml(CessionarioCommittenteType.class, cessionarioCommittenteType, prettyPrint).toString();
  3226.     }
  3227.    
  3228.    
  3229.    
  3230.     /*
  3231.      =================================================================================
  3232.      Object: DatiAnagraficiCessionarioType
  3233.      =================================================================================
  3234.     */
  3235.    
  3236.     /**
  3237.      * Serialize to file system in <var>fileName</var> the object <var>datiAnagraficiCessionarioType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiCessionarioType}
  3238.      *
  3239.      * @param fileName Xml file to serialize the object <var>datiAnagraficiCessionarioType</var>
  3240.      * @param datiAnagraficiCessionarioType Object to be serialized in xml file <var>fileName</var>
  3241.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3242.      */
  3243.     public void write(String fileName,DatiAnagraficiCessionarioType datiAnagraficiCessionarioType) throws SerializerException {
  3244.         this.objToXml(fileName, DatiAnagraficiCessionarioType.class, datiAnagraficiCessionarioType, false);
  3245.     }
  3246.     /**
  3247.      * Serialize to file system in <var>fileName</var> the object <var>datiAnagraficiCessionarioType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiCessionarioType}
  3248.      *
  3249.      * @param fileName Xml file to serialize the object <var>datiAnagraficiCessionarioType</var>
  3250.      * @param datiAnagraficiCessionarioType Object to be serialized in xml file <var>fileName</var>
  3251.      * @param prettyPrint if true output the XML with indenting
  3252.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3253.      */
  3254.     public void write(String fileName,DatiAnagraficiCessionarioType datiAnagraficiCessionarioType,boolean prettyPrint) throws SerializerException {
  3255.         this.objToXml(fileName, DatiAnagraficiCessionarioType.class, datiAnagraficiCessionarioType, prettyPrint);
  3256.     }
  3257.    
  3258.     /**
  3259.      * Serialize to file system in <var>file</var> the object <var>datiAnagraficiCessionarioType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiCessionarioType}
  3260.      *
  3261.      * @param file Xml file to serialize the object <var>datiAnagraficiCessionarioType</var>
  3262.      * @param datiAnagraficiCessionarioType Object to be serialized in xml file <var>fileName</var>
  3263.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3264.      */
  3265.     public void write(File file,DatiAnagraficiCessionarioType datiAnagraficiCessionarioType) throws SerializerException {
  3266.         this.objToXml(file, DatiAnagraficiCessionarioType.class, datiAnagraficiCessionarioType, false);
  3267.     }
  3268.     /**
  3269.      * Serialize to file system in <var>file</var> the object <var>datiAnagraficiCessionarioType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiCessionarioType}
  3270.      *
  3271.      * @param file Xml file to serialize the object <var>datiAnagraficiCessionarioType</var>
  3272.      * @param datiAnagraficiCessionarioType Object to be serialized in xml file <var>fileName</var>
  3273.      * @param prettyPrint if true output the XML with indenting
  3274.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3275.      */
  3276.     public void write(File file,DatiAnagraficiCessionarioType datiAnagraficiCessionarioType,boolean prettyPrint) throws SerializerException {
  3277.         this.objToXml(file, DatiAnagraficiCessionarioType.class, datiAnagraficiCessionarioType, prettyPrint);
  3278.     }
  3279.    
  3280.     /**
  3281.      * Serialize to output stream <var>out</var> the object <var>datiAnagraficiCessionarioType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiCessionarioType}
  3282.      *
  3283.      * @param out OutputStream to serialize the object <var>datiAnagraficiCessionarioType</var>
  3284.      * @param datiAnagraficiCessionarioType Object to be serialized in xml file <var>fileName</var>
  3285.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3286.      */
  3287.     public void write(OutputStream out,DatiAnagraficiCessionarioType datiAnagraficiCessionarioType) throws SerializerException {
  3288.         this.objToXml(out, DatiAnagraficiCessionarioType.class, datiAnagraficiCessionarioType, false);
  3289.     }
  3290.     /**
  3291.      * Serialize to output stream <var>out</var> the object <var>datiAnagraficiCessionarioType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiCessionarioType}
  3292.      *
  3293.      * @param out OutputStream to serialize the object <var>datiAnagraficiCessionarioType</var>
  3294.      * @param datiAnagraficiCessionarioType Object to be serialized in xml file <var>fileName</var>
  3295.      * @param prettyPrint if true output the XML with indenting
  3296.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3297.      */
  3298.     public void write(OutputStream out,DatiAnagraficiCessionarioType datiAnagraficiCessionarioType,boolean prettyPrint) throws SerializerException {
  3299.         this.objToXml(out, DatiAnagraficiCessionarioType.class, datiAnagraficiCessionarioType, prettyPrint);
  3300.     }
  3301.            
  3302.     /**
  3303.      * Serialize to byte array the object <var>datiAnagraficiCessionarioType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiCessionarioType}
  3304.      *
  3305.      * @param datiAnagraficiCessionarioType Object to be serialized
  3306.      * @return Object to be serialized in byte array
  3307.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3308.      */
  3309.     public byte[] toByteArray(DatiAnagraficiCessionarioType datiAnagraficiCessionarioType) throws SerializerException {
  3310.         return this.objToXml(DatiAnagraficiCessionarioType.class, datiAnagraficiCessionarioType, false).toByteArray();
  3311.     }
  3312.     /**
  3313.      * Serialize to byte array the object <var>datiAnagraficiCessionarioType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiCessionarioType}
  3314.      *
  3315.      * @param datiAnagraficiCessionarioType Object to be serialized
  3316.      * @param prettyPrint if true output the XML with indenting
  3317.      * @return Object to be serialized in byte array
  3318.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3319.      */
  3320.     public byte[] toByteArray(DatiAnagraficiCessionarioType datiAnagraficiCessionarioType,boolean prettyPrint) throws SerializerException {
  3321.         return this.objToXml(DatiAnagraficiCessionarioType.class, datiAnagraficiCessionarioType, prettyPrint).toByteArray();
  3322.     }
  3323.    
  3324.     /**
  3325.      * Serialize to String the object <var>datiAnagraficiCessionarioType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiCessionarioType}
  3326.      *
  3327.      * @param datiAnagraficiCessionarioType Object to be serialized
  3328.      * @return Object to be serialized as String
  3329.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3330.      */
  3331.     public String toString(DatiAnagraficiCessionarioType datiAnagraficiCessionarioType) throws SerializerException {
  3332.         return this.objToXml(DatiAnagraficiCessionarioType.class, datiAnagraficiCessionarioType, false).toString();
  3333.     }
  3334.     /**
  3335.      * Serialize to String the object <var>datiAnagraficiCessionarioType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiCessionarioType}
  3336.      *
  3337.      * @param datiAnagraficiCessionarioType Object to be serialized
  3338.      * @param prettyPrint if true output the XML with indenting
  3339.      * @return Object to be serialized as String
  3340.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3341.      */
  3342.     public String toString(DatiAnagraficiCessionarioType datiAnagraficiCessionarioType,boolean prettyPrint) throws SerializerException {
  3343.         return this.objToXml(DatiAnagraficiCessionarioType.class, datiAnagraficiCessionarioType, prettyPrint).toString();
  3344.     }
  3345.    
  3346.    
  3347.    
  3348.     /*
  3349.      =================================================================================
  3350.      Object: IndirizzoType
  3351.      =================================================================================
  3352.     */
  3353.    
  3354.     /**
  3355.      * Serialize to file system in <var>fileName</var> the object <var>indirizzoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IndirizzoType}
  3356.      *
  3357.      * @param fileName Xml file to serialize the object <var>indirizzoType</var>
  3358.      * @param indirizzoType Object to be serialized in xml file <var>fileName</var>
  3359.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3360.      */
  3361.     public void write(String fileName,IndirizzoType indirizzoType) throws SerializerException {
  3362.         this.objToXml(fileName, IndirizzoType.class, indirizzoType, false);
  3363.     }
  3364.     /**
  3365.      * Serialize to file system in <var>fileName</var> the object <var>indirizzoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IndirizzoType}
  3366.      *
  3367.      * @param fileName Xml file to serialize the object <var>indirizzoType</var>
  3368.      * @param indirizzoType Object to be serialized in xml file <var>fileName</var>
  3369.      * @param prettyPrint if true output the XML with indenting
  3370.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3371.      */
  3372.     public void write(String fileName,IndirizzoType indirizzoType,boolean prettyPrint) throws SerializerException {
  3373.         this.objToXml(fileName, IndirizzoType.class, indirizzoType, prettyPrint);
  3374.     }
  3375.    
  3376.     /**
  3377.      * Serialize to file system in <var>file</var> the object <var>indirizzoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IndirizzoType}
  3378.      *
  3379.      * @param file Xml file to serialize the object <var>indirizzoType</var>
  3380.      * @param indirizzoType Object to be serialized in xml file <var>fileName</var>
  3381.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3382.      */
  3383.     public void write(File file,IndirizzoType indirizzoType) throws SerializerException {
  3384.         this.objToXml(file, IndirizzoType.class, indirizzoType, false);
  3385.     }
  3386.     /**
  3387.      * Serialize to file system in <var>file</var> the object <var>indirizzoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IndirizzoType}
  3388.      *
  3389.      * @param file Xml file to serialize the object <var>indirizzoType</var>
  3390.      * @param indirizzoType Object to be serialized in xml file <var>fileName</var>
  3391.      * @param prettyPrint if true output the XML with indenting
  3392.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3393.      */
  3394.     public void write(File file,IndirizzoType indirizzoType,boolean prettyPrint) throws SerializerException {
  3395.         this.objToXml(file, IndirizzoType.class, indirizzoType, prettyPrint);
  3396.     }
  3397.    
  3398.     /**
  3399.      * Serialize to output stream <var>out</var> the object <var>indirizzoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IndirizzoType}
  3400.      *
  3401.      * @param out OutputStream to serialize the object <var>indirizzoType</var>
  3402.      * @param indirizzoType Object to be serialized in xml file <var>fileName</var>
  3403.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3404.      */
  3405.     public void write(OutputStream out,IndirizzoType indirizzoType) throws SerializerException {
  3406.         this.objToXml(out, IndirizzoType.class, indirizzoType, false);
  3407.     }
  3408.     /**
  3409.      * Serialize to output stream <var>out</var> the object <var>indirizzoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IndirizzoType}
  3410.      *
  3411.      * @param out OutputStream to serialize the object <var>indirizzoType</var>
  3412.      * @param indirizzoType Object to be serialized in xml file <var>fileName</var>
  3413.      * @param prettyPrint if true output the XML with indenting
  3414.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3415.      */
  3416.     public void write(OutputStream out,IndirizzoType indirizzoType,boolean prettyPrint) throws SerializerException {
  3417.         this.objToXml(out, IndirizzoType.class, indirizzoType, prettyPrint);
  3418.     }
  3419.            
  3420.     /**
  3421.      * Serialize to byte array the object <var>indirizzoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IndirizzoType}
  3422.      *
  3423.      * @param indirizzoType Object to be serialized
  3424.      * @return Object to be serialized in byte array
  3425.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3426.      */
  3427.     public byte[] toByteArray(IndirizzoType indirizzoType) throws SerializerException {
  3428.         return this.objToXml(IndirizzoType.class, indirizzoType, false).toByteArray();
  3429.     }
  3430.     /**
  3431.      * Serialize to byte array the object <var>indirizzoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IndirizzoType}
  3432.      *
  3433.      * @param indirizzoType Object to be serialized
  3434.      * @param prettyPrint if true output the XML with indenting
  3435.      * @return Object to be serialized in byte array
  3436.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3437.      */
  3438.     public byte[] toByteArray(IndirizzoType indirizzoType,boolean prettyPrint) throws SerializerException {
  3439.         return this.objToXml(IndirizzoType.class, indirizzoType, prettyPrint).toByteArray();
  3440.     }
  3441.    
  3442.     /**
  3443.      * Serialize to String the object <var>indirizzoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IndirizzoType}
  3444.      *
  3445.      * @param indirizzoType Object to be serialized
  3446.      * @return Object to be serialized as String
  3447.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3448.      */
  3449.     public String toString(IndirizzoType indirizzoType) throws SerializerException {
  3450.         return this.objToXml(IndirizzoType.class, indirizzoType, false).toString();
  3451.     }
  3452.     /**
  3453.      * Serialize to String the object <var>indirizzoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IndirizzoType}
  3454.      *
  3455.      * @param indirizzoType Object to be serialized
  3456.      * @param prettyPrint if true output the XML with indenting
  3457.      * @return Object to be serialized as String
  3458.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3459.      */
  3460.     public String toString(IndirizzoType indirizzoType,boolean prettyPrint) throws SerializerException {
  3461.         return this.objToXml(IndirizzoType.class, indirizzoType, prettyPrint).toString();
  3462.     }
  3463.    
  3464.    
  3465.    
  3466.     /*
  3467.      =================================================================================
  3468.      Object: IscrizioneREAType
  3469.      =================================================================================
  3470.     */
  3471.    
  3472.     /**
  3473.      * Serialize to file system in <var>fileName</var> the object <var>iscrizioneREAType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IscrizioneREAType}
  3474.      *
  3475.      * @param fileName Xml file to serialize the object <var>iscrizioneREAType</var>
  3476.      * @param iscrizioneREAType Object to be serialized in xml file <var>fileName</var>
  3477.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3478.      */
  3479.     public void write(String fileName,IscrizioneREAType iscrizioneREAType) throws SerializerException {
  3480.         this.objToXml(fileName, IscrizioneREAType.class, iscrizioneREAType, false);
  3481.     }
  3482.     /**
  3483.      * Serialize to file system in <var>fileName</var> the object <var>iscrizioneREAType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IscrizioneREAType}
  3484.      *
  3485.      * @param fileName Xml file to serialize the object <var>iscrizioneREAType</var>
  3486.      * @param iscrizioneREAType Object to be serialized in xml file <var>fileName</var>
  3487.      * @param prettyPrint if true output the XML with indenting
  3488.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3489.      */
  3490.     public void write(String fileName,IscrizioneREAType iscrizioneREAType,boolean prettyPrint) throws SerializerException {
  3491.         this.objToXml(fileName, IscrizioneREAType.class, iscrizioneREAType, prettyPrint);
  3492.     }
  3493.    
  3494.     /**
  3495.      * Serialize to file system in <var>file</var> the object <var>iscrizioneREAType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IscrizioneREAType}
  3496.      *
  3497.      * @param file Xml file to serialize the object <var>iscrizioneREAType</var>
  3498.      * @param iscrizioneREAType Object to be serialized in xml file <var>fileName</var>
  3499.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3500.      */
  3501.     public void write(File file,IscrizioneREAType iscrizioneREAType) throws SerializerException {
  3502.         this.objToXml(file, IscrizioneREAType.class, iscrizioneREAType, false);
  3503.     }
  3504.     /**
  3505.      * Serialize to file system in <var>file</var> the object <var>iscrizioneREAType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IscrizioneREAType}
  3506.      *
  3507.      * @param file Xml file to serialize the object <var>iscrizioneREAType</var>
  3508.      * @param iscrizioneREAType Object to be serialized in xml file <var>fileName</var>
  3509.      * @param prettyPrint if true output the XML with indenting
  3510.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3511.      */
  3512.     public void write(File file,IscrizioneREAType iscrizioneREAType,boolean prettyPrint) throws SerializerException {
  3513.         this.objToXml(file, IscrizioneREAType.class, iscrizioneREAType, prettyPrint);
  3514.     }
  3515.    
  3516.     /**
  3517.      * Serialize to output stream <var>out</var> the object <var>iscrizioneREAType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IscrizioneREAType}
  3518.      *
  3519.      * @param out OutputStream to serialize the object <var>iscrizioneREAType</var>
  3520.      * @param iscrizioneREAType Object to be serialized in xml file <var>fileName</var>
  3521.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3522.      */
  3523.     public void write(OutputStream out,IscrizioneREAType iscrizioneREAType) throws SerializerException {
  3524.         this.objToXml(out, IscrizioneREAType.class, iscrizioneREAType, false);
  3525.     }
  3526.     /**
  3527.      * Serialize to output stream <var>out</var> the object <var>iscrizioneREAType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IscrizioneREAType}
  3528.      *
  3529.      * @param out OutputStream to serialize the object <var>iscrizioneREAType</var>
  3530.      * @param iscrizioneREAType Object to be serialized in xml file <var>fileName</var>
  3531.      * @param prettyPrint if true output the XML with indenting
  3532.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3533.      */
  3534.     public void write(OutputStream out,IscrizioneREAType iscrizioneREAType,boolean prettyPrint) throws SerializerException {
  3535.         this.objToXml(out, IscrizioneREAType.class, iscrizioneREAType, prettyPrint);
  3536.     }
  3537.            
  3538.     /**
  3539.      * Serialize to byte array the object <var>iscrizioneREAType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IscrizioneREAType}
  3540.      *
  3541.      * @param iscrizioneREAType Object to be serialized
  3542.      * @return Object to be serialized in byte array
  3543.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3544.      */
  3545.     public byte[] toByteArray(IscrizioneREAType iscrizioneREAType) throws SerializerException {
  3546.         return this.objToXml(IscrizioneREAType.class, iscrizioneREAType, false).toByteArray();
  3547.     }
  3548.     /**
  3549.      * Serialize to byte array the object <var>iscrizioneREAType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IscrizioneREAType}
  3550.      *
  3551.      * @param iscrizioneREAType Object to be serialized
  3552.      * @param prettyPrint if true output the XML with indenting
  3553.      * @return Object to be serialized in byte array
  3554.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3555.      */
  3556.     public byte[] toByteArray(IscrizioneREAType iscrizioneREAType,boolean prettyPrint) throws SerializerException {
  3557.         return this.objToXml(IscrizioneREAType.class, iscrizioneREAType, prettyPrint).toByteArray();
  3558.     }
  3559.    
  3560.     /**
  3561.      * Serialize to String the object <var>iscrizioneREAType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IscrizioneREAType}
  3562.      *
  3563.      * @param iscrizioneREAType Object to be serialized
  3564.      * @return Object to be serialized as String
  3565.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3566.      */
  3567.     public String toString(IscrizioneREAType iscrizioneREAType) throws SerializerException {
  3568.         return this.objToXml(IscrizioneREAType.class, iscrizioneREAType, false).toString();
  3569.     }
  3570.     /**
  3571.      * Serialize to String the object <var>iscrizioneREAType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.IscrizioneREAType}
  3572.      *
  3573.      * @param iscrizioneREAType Object to be serialized
  3574.      * @param prettyPrint if true output the XML with indenting
  3575.      * @return Object to be serialized as String
  3576.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3577.      */
  3578.     public String toString(IscrizioneREAType iscrizioneREAType,boolean prettyPrint) throws SerializerException {
  3579.         return this.objToXml(IscrizioneREAType.class, iscrizioneREAType, prettyPrint).toString();
  3580.     }
  3581.    
  3582.    
  3583.    
  3584.     /*
  3585.      =================================================================================
  3586.      Object: ContattiType
  3587.      =================================================================================
  3588.     */
  3589.    
  3590.     /**
  3591.      * Serialize to file system in <var>fileName</var> the object <var>contattiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ContattiType}
  3592.      *
  3593.      * @param fileName Xml file to serialize the object <var>contattiType</var>
  3594.      * @param contattiType Object to be serialized in xml file <var>fileName</var>
  3595.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3596.      */
  3597.     public void write(String fileName,ContattiType contattiType) throws SerializerException {
  3598.         this.objToXml(fileName, ContattiType.class, contattiType, false);
  3599.     }
  3600.     /**
  3601.      * Serialize to file system in <var>fileName</var> the object <var>contattiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ContattiType}
  3602.      *
  3603.      * @param fileName Xml file to serialize the object <var>contattiType</var>
  3604.      * @param contattiType Object to be serialized in xml file <var>fileName</var>
  3605.      * @param prettyPrint if true output the XML with indenting
  3606.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3607.      */
  3608.     public void write(String fileName,ContattiType contattiType,boolean prettyPrint) throws SerializerException {
  3609.         this.objToXml(fileName, ContattiType.class, contattiType, prettyPrint);
  3610.     }
  3611.    
  3612.     /**
  3613.      * Serialize to file system in <var>file</var> the object <var>contattiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ContattiType}
  3614.      *
  3615.      * @param file Xml file to serialize the object <var>contattiType</var>
  3616.      * @param contattiType Object to be serialized in xml file <var>fileName</var>
  3617.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3618.      */
  3619.     public void write(File file,ContattiType contattiType) throws SerializerException {
  3620.         this.objToXml(file, ContattiType.class, contattiType, false);
  3621.     }
  3622.     /**
  3623.      * Serialize to file system in <var>file</var> the object <var>contattiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ContattiType}
  3624.      *
  3625.      * @param file Xml file to serialize the object <var>contattiType</var>
  3626.      * @param contattiType Object to be serialized in xml file <var>fileName</var>
  3627.      * @param prettyPrint if true output the XML with indenting
  3628.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3629.      */
  3630.     public void write(File file,ContattiType contattiType,boolean prettyPrint) throws SerializerException {
  3631.         this.objToXml(file, ContattiType.class, contattiType, prettyPrint);
  3632.     }
  3633.    
  3634.     /**
  3635.      * Serialize to output stream <var>out</var> the object <var>contattiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ContattiType}
  3636.      *
  3637.      * @param out OutputStream to serialize the object <var>contattiType</var>
  3638.      * @param contattiType Object to be serialized in xml file <var>fileName</var>
  3639.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3640.      */
  3641.     public void write(OutputStream out,ContattiType contattiType) throws SerializerException {
  3642.         this.objToXml(out, ContattiType.class, contattiType, false);
  3643.     }
  3644.     /**
  3645.      * Serialize to output stream <var>out</var> the object <var>contattiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ContattiType}
  3646.      *
  3647.      * @param out OutputStream to serialize the object <var>contattiType</var>
  3648.      * @param contattiType Object to be serialized in xml file <var>fileName</var>
  3649.      * @param prettyPrint if true output the XML with indenting
  3650.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3651.      */
  3652.     public void write(OutputStream out,ContattiType contattiType,boolean prettyPrint) throws SerializerException {
  3653.         this.objToXml(out, ContattiType.class, contattiType, prettyPrint);
  3654.     }
  3655.            
  3656.     /**
  3657.      * Serialize to byte array the object <var>contattiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ContattiType}
  3658.      *
  3659.      * @param contattiType Object to be serialized
  3660.      * @return Object to be serialized in byte array
  3661.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3662.      */
  3663.     public byte[] toByteArray(ContattiType contattiType) throws SerializerException {
  3664.         return this.objToXml(ContattiType.class, contattiType, false).toByteArray();
  3665.     }
  3666.     /**
  3667.      * Serialize to byte array the object <var>contattiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ContattiType}
  3668.      *
  3669.      * @param contattiType Object to be serialized
  3670.      * @param prettyPrint if true output the XML with indenting
  3671.      * @return Object to be serialized in byte array
  3672.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3673.      */
  3674.     public byte[] toByteArray(ContattiType contattiType,boolean prettyPrint) throws SerializerException {
  3675.         return this.objToXml(ContattiType.class, contattiType, prettyPrint).toByteArray();
  3676.     }
  3677.    
  3678.     /**
  3679.      * Serialize to String the object <var>contattiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ContattiType}
  3680.      *
  3681.      * @param contattiType Object to be serialized
  3682.      * @return Object to be serialized as String
  3683.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3684.      */
  3685.     public String toString(ContattiType contattiType) throws SerializerException {
  3686.         return this.objToXml(ContattiType.class, contattiType, false).toString();
  3687.     }
  3688.     /**
  3689.      * Serialize to String the object <var>contattiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ContattiType}
  3690.      *
  3691.      * @param contattiType Object to be serialized
  3692.      * @param prettyPrint if true output the XML with indenting
  3693.      * @return Object to be serialized as String
  3694.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3695.      */
  3696.     public String toString(ContattiType contattiType,boolean prettyPrint) throws SerializerException {
  3697.         return this.objToXml(ContattiType.class, contattiType, prettyPrint).toString();
  3698.     }
  3699.    
  3700.    
  3701.    
  3702.     /*
  3703.      =================================================================================
  3704.      Object: DatiAnagraficiVettoreType
  3705.      =================================================================================
  3706.     */
  3707.    
  3708.     /**
  3709.      * Serialize to file system in <var>fileName</var> the object <var>datiAnagraficiVettoreType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiVettoreType}
  3710.      *
  3711.      * @param fileName Xml file to serialize the object <var>datiAnagraficiVettoreType</var>
  3712.      * @param datiAnagraficiVettoreType Object to be serialized in xml file <var>fileName</var>
  3713.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3714.      */
  3715.     public void write(String fileName,DatiAnagraficiVettoreType datiAnagraficiVettoreType) throws SerializerException {
  3716.         this.objToXml(fileName, DatiAnagraficiVettoreType.class, datiAnagraficiVettoreType, false);
  3717.     }
  3718.     /**
  3719.      * Serialize to file system in <var>fileName</var> the object <var>datiAnagraficiVettoreType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiVettoreType}
  3720.      *
  3721.      * @param fileName Xml file to serialize the object <var>datiAnagraficiVettoreType</var>
  3722.      * @param datiAnagraficiVettoreType Object to be serialized in xml file <var>fileName</var>
  3723.      * @param prettyPrint if true output the XML with indenting
  3724.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3725.      */
  3726.     public void write(String fileName,DatiAnagraficiVettoreType datiAnagraficiVettoreType,boolean prettyPrint) throws SerializerException {
  3727.         this.objToXml(fileName, DatiAnagraficiVettoreType.class, datiAnagraficiVettoreType, prettyPrint);
  3728.     }
  3729.    
  3730.     /**
  3731.      * Serialize to file system in <var>file</var> the object <var>datiAnagraficiVettoreType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiVettoreType}
  3732.      *
  3733.      * @param file Xml file to serialize the object <var>datiAnagraficiVettoreType</var>
  3734.      * @param datiAnagraficiVettoreType Object to be serialized in xml file <var>fileName</var>
  3735.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3736.      */
  3737.     public void write(File file,DatiAnagraficiVettoreType datiAnagraficiVettoreType) throws SerializerException {
  3738.         this.objToXml(file, DatiAnagraficiVettoreType.class, datiAnagraficiVettoreType, false);
  3739.     }
  3740.     /**
  3741.      * Serialize to file system in <var>file</var> the object <var>datiAnagraficiVettoreType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiVettoreType}
  3742.      *
  3743.      * @param file Xml file to serialize the object <var>datiAnagraficiVettoreType</var>
  3744.      * @param datiAnagraficiVettoreType Object to be serialized in xml file <var>fileName</var>
  3745.      * @param prettyPrint if true output the XML with indenting
  3746.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3747.      */
  3748.     public void write(File file,DatiAnagraficiVettoreType datiAnagraficiVettoreType,boolean prettyPrint) throws SerializerException {
  3749.         this.objToXml(file, DatiAnagraficiVettoreType.class, datiAnagraficiVettoreType, prettyPrint);
  3750.     }
  3751.    
  3752.     /**
  3753.      * Serialize to output stream <var>out</var> the object <var>datiAnagraficiVettoreType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiVettoreType}
  3754.      *
  3755.      * @param out OutputStream to serialize the object <var>datiAnagraficiVettoreType</var>
  3756.      * @param datiAnagraficiVettoreType Object to be serialized in xml file <var>fileName</var>
  3757.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3758.      */
  3759.     public void write(OutputStream out,DatiAnagraficiVettoreType datiAnagraficiVettoreType) throws SerializerException {
  3760.         this.objToXml(out, DatiAnagraficiVettoreType.class, datiAnagraficiVettoreType, false);
  3761.     }
  3762.     /**
  3763.      * Serialize to output stream <var>out</var> the object <var>datiAnagraficiVettoreType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiVettoreType}
  3764.      *
  3765.      * @param out OutputStream to serialize the object <var>datiAnagraficiVettoreType</var>
  3766.      * @param datiAnagraficiVettoreType Object to be serialized in xml file <var>fileName</var>
  3767.      * @param prettyPrint if true output the XML with indenting
  3768.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3769.      */
  3770.     public void write(OutputStream out,DatiAnagraficiVettoreType datiAnagraficiVettoreType,boolean prettyPrint) throws SerializerException {
  3771.         this.objToXml(out, DatiAnagraficiVettoreType.class, datiAnagraficiVettoreType, prettyPrint);
  3772.     }
  3773.            
  3774.     /**
  3775.      * Serialize to byte array the object <var>datiAnagraficiVettoreType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiVettoreType}
  3776.      *
  3777.      * @param datiAnagraficiVettoreType Object to be serialized
  3778.      * @return Object to be serialized in byte array
  3779.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3780.      */
  3781.     public byte[] toByteArray(DatiAnagraficiVettoreType datiAnagraficiVettoreType) throws SerializerException {
  3782.         return this.objToXml(DatiAnagraficiVettoreType.class, datiAnagraficiVettoreType, false).toByteArray();
  3783.     }
  3784.     /**
  3785.      * Serialize to byte array the object <var>datiAnagraficiVettoreType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiVettoreType}
  3786.      *
  3787.      * @param datiAnagraficiVettoreType Object to be serialized
  3788.      * @param prettyPrint if true output the XML with indenting
  3789.      * @return Object to be serialized in byte array
  3790.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3791.      */
  3792.     public byte[] toByteArray(DatiAnagraficiVettoreType datiAnagraficiVettoreType,boolean prettyPrint) throws SerializerException {
  3793.         return this.objToXml(DatiAnagraficiVettoreType.class, datiAnagraficiVettoreType, prettyPrint).toByteArray();
  3794.     }
  3795.    
  3796.     /**
  3797.      * Serialize to String the object <var>datiAnagraficiVettoreType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiVettoreType}
  3798.      *
  3799.      * @param datiAnagraficiVettoreType Object to be serialized
  3800.      * @return Object to be serialized as String
  3801.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3802.      */
  3803.     public String toString(DatiAnagraficiVettoreType datiAnagraficiVettoreType) throws SerializerException {
  3804.         return this.objToXml(DatiAnagraficiVettoreType.class, datiAnagraficiVettoreType, false).toString();
  3805.     }
  3806.     /**
  3807.      * Serialize to String the object <var>datiAnagraficiVettoreType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiAnagraficiVettoreType}
  3808.      *
  3809.      * @param datiAnagraficiVettoreType Object to be serialized
  3810.      * @param prettyPrint if true output the XML with indenting
  3811.      * @return Object to be serialized as String
  3812.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3813.      */
  3814.     public String toString(DatiAnagraficiVettoreType datiAnagraficiVettoreType,boolean prettyPrint) throws SerializerException {
  3815.         return this.objToXml(DatiAnagraficiVettoreType.class, datiAnagraficiVettoreType, prettyPrint).toString();
  3816.     }
  3817.    
  3818.    
  3819.    
  3820.     /*
  3821.      =================================================================================
  3822.      Object: DatiVeicoliType
  3823.      =================================================================================
  3824.     */
  3825.    
  3826.     /**
  3827.      * Serialize to file system in <var>fileName</var> the object <var>datiVeicoliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiVeicoliType}
  3828.      *
  3829.      * @param fileName Xml file to serialize the object <var>datiVeicoliType</var>
  3830.      * @param datiVeicoliType Object to be serialized in xml file <var>fileName</var>
  3831.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3832.      */
  3833.     public void write(String fileName,DatiVeicoliType datiVeicoliType) throws SerializerException {
  3834.         this.objToXml(fileName, DatiVeicoliType.class, datiVeicoliType, false);
  3835.     }
  3836.     /**
  3837.      * Serialize to file system in <var>fileName</var> the object <var>datiVeicoliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiVeicoliType}
  3838.      *
  3839.      * @param fileName Xml file to serialize the object <var>datiVeicoliType</var>
  3840.      * @param datiVeicoliType Object to be serialized in xml file <var>fileName</var>
  3841.      * @param prettyPrint if true output the XML with indenting
  3842.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3843.      */
  3844.     public void write(String fileName,DatiVeicoliType datiVeicoliType,boolean prettyPrint) throws SerializerException {
  3845.         this.objToXml(fileName, DatiVeicoliType.class, datiVeicoliType, prettyPrint);
  3846.     }
  3847.    
  3848.     /**
  3849.      * Serialize to file system in <var>file</var> the object <var>datiVeicoliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiVeicoliType}
  3850.      *
  3851.      * @param file Xml file to serialize the object <var>datiVeicoliType</var>
  3852.      * @param datiVeicoliType Object to be serialized in xml file <var>fileName</var>
  3853.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3854.      */
  3855.     public void write(File file,DatiVeicoliType datiVeicoliType) throws SerializerException {
  3856.         this.objToXml(file, DatiVeicoliType.class, datiVeicoliType, false);
  3857.     }
  3858.     /**
  3859.      * Serialize to file system in <var>file</var> the object <var>datiVeicoliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiVeicoliType}
  3860.      *
  3861.      * @param file Xml file to serialize the object <var>datiVeicoliType</var>
  3862.      * @param datiVeicoliType Object to be serialized in xml file <var>fileName</var>
  3863.      * @param prettyPrint if true output the XML with indenting
  3864.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3865.      */
  3866.     public void write(File file,DatiVeicoliType datiVeicoliType,boolean prettyPrint) throws SerializerException {
  3867.         this.objToXml(file, DatiVeicoliType.class, datiVeicoliType, prettyPrint);
  3868.     }
  3869.    
  3870.     /**
  3871.      * Serialize to output stream <var>out</var> the object <var>datiVeicoliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiVeicoliType}
  3872.      *
  3873.      * @param out OutputStream to serialize the object <var>datiVeicoliType</var>
  3874.      * @param datiVeicoliType Object to be serialized in xml file <var>fileName</var>
  3875.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3876.      */
  3877.     public void write(OutputStream out,DatiVeicoliType datiVeicoliType) throws SerializerException {
  3878.         this.objToXml(out, DatiVeicoliType.class, datiVeicoliType, false);
  3879.     }
  3880.     /**
  3881.      * Serialize to output stream <var>out</var> the object <var>datiVeicoliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiVeicoliType}
  3882.      *
  3883.      * @param out OutputStream to serialize the object <var>datiVeicoliType</var>
  3884.      * @param datiVeicoliType Object to be serialized in xml file <var>fileName</var>
  3885.      * @param prettyPrint if true output the XML with indenting
  3886.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3887.      */
  3888.     public void write(OutputStream out,DatiVeicoliType datiVeicoliType,boolean prettyPrint) throws SerializerException {
  3889.         this.objToXml(out, DatiVeicoliType.class, datiVeicoliType, prettyPrint);
  3890.     }
  3891.            
  3892.     /**
  3893.      * Serialize to byte array the object <var>datiVeicoliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiVeicoliType}
  3894.      *
  3895.      * @param datiVeicoliType Object to be serialized
  3896.      * @return Object to be serialized in byte array
  3897.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3898.      */
  3899.     public byte[] toByteArray(DatiVeicoliType datiVeicoliType) throws SerializerException {
  3900.         return this.objToXml(DatiVeicoliType.class, datiVeicoliType, false).toByteArray();
  3901.     }
  3902.     /**
  3903.      * Serialize to byte array the object <var>datiVeicoliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiVeicoliType}
  3904.      *
  3905.      * @param datiVeicoliType Object to be serialized
  3906.      * @param prettyPrint if true output the XML with indenting
  3907.      * @return Object to be serialized in byte array
  3908.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3909.      */
  3910.     public byte[] toByteArray(DatiVeicoliType datiVeicoliType,boolean prettyPrint) throws SerializerException {
  3911.         return this.objToXml(DatiVeicoliType.class, datiVeicoliType, prettyPrint).toByteArray();
  3912.     }
  3913.    
  3914.     /**
  3915.      * Serialize to String the object <var>datiVeicoliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiVeicoliType}
  3916.      *
  3917.      * @param datiVeicoliType Object to be serialized
  3918.      * @return Object to be serialized as String
  3919.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3920.      */
  3921.     public String toString(DatiVeicoliType datiVeicoliType) throws SerializerException {
  3922.         return this.objToXml(DatiVeicoliType.class, datiVeicoliType, false).toString();
  3923.     }
  3924.     /**
  3925.      * Serialize to String the object <var>datiVeicoliType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiVeicoliType}
  3926.      *
  3927.      * @param datiVeicoliType Object to be serialized
  3928.      * @param prettyPrint if true output the XML with indenting
  3929.      * @return Object to be serialized as String
  3930.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3931.      */
  3932.     public String toString(DatiVeicoliType datiVeicoliType,boolean prettyPrint) throws SerializerException {
  3933.         return this.objToXml(DatiVeicoliType.class, datiVeicoliType, prettyPrint).toString();
  3934.     }
  3935.    
  3936.    
  3937.    
  3938.     /*
  3939.      =================================================================================
  3940.      Object: FatturaElettronicaType
  3941.      =================================================================================
  3942.     */
  3943.    
  3944.     /**
  3945.      * Serialize to file system in <var>fileName</var> the object <var>fatturaElettronicaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaType}
  3946.      *
  3947.      * @param fileName Xml file to serialize the object <var>fatturaElettronicaType</var>
  3948.      * @param fatturaElettronicaType Object to be serialized in xml file <var>fileName</var>
  3949.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3950.      */
  3951.     public void write(String fileName,FatturaElettronicaType fatturaElettronicaType) throws SerializerException {
  3952.         this.objToXml(fileName, FatturaElettronicaType.class, fatturaElettronicaType, false);
  3953.     }
  3954.     /**
  3955.      * Serialize to file system in <var>fileName</var> the object <var>fatturaElettronicaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaType}
  3956.      *
  3957.      * @param fileName Xml file to serialize the object <var>fatturaElettronicaType</var>
  3958.      * @param fatturaElettronicaType Object to be serialized in xml file <var>fileName</var>
  3959.      * @param prettyPrint if true output the XML with indenting
  3960.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3961.      */
  3962.     public void write(String fileName,FatturaElettronicaType fatturaElettronicaType,boolean prettyPrint) throws SerializerException {
  3963.         this.objToXml(fileName, FatturaElettronicaType.class, fatturaElettronicaType, prettyPrint);
  3964.     }
  3965.    
  3966.     /**
  3967.      * Serialize to file system in <var>file</var> the object <var>fatturaElettronicaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaType}
  3968.      *
  3969.      * @param file Xml file to serialize the object <var>fatturaElettronicaType</var>
  3970.      * @param fatturaElettronicaType Object to be serialized in xml file <var>fileName</var>
  3971.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3972.      */
  3973.     public void write(File file,FatturaElettronicaType fatturaElettronicaType) throws SerializerException {
  3974.         this.objToXml(file, FatturaElettronicaType.class, fatturaElettronicaType, false);
  3975.     }
  3976.     /**
  3977.      * Serialize to file system in <var>file</var> the object <var>fatturaElettronicaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaType}
  3978.      *
  3979.      * @param file Xml file to serialize the object <var>fatturaElettronicaType</var>
  3980.      * @param fatturaElettronicaType Object to be serialized in xml file <var>fileName</var>
  3981.      * @param prettyPrint if true output the XML with indenting
  3982.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3983.      */
  3984.     public void write(File file,FatturaElettronicaType fatturaElettronicaType,boolean prettyPrint) throws SerializerException {
  3985.         this.objToXml(file, FatturaElettronicaType.class, fatturaElettronicaType, prettyPrint);
  3986.     }
  3987.    
  3988.     /**
  3989.      * Serialize to output stream <var>out</var> the object <var>fatturaElettronicaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaType}
  3990.      *
  3991.      * @param out OutputStream to serialize the object <var>fatturaElettronicaType</var>
  3992.      * @param fatturaElettronicaType Object to be serialized in xml file <var>fileName</var>
  3993.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3994.      */
  3995.     public void write(OutputStream out,FatturaElettronicaType fatturaElettronicaType) throws SerializerException {
  3996.         this.objToXml(out, FatturaElettronicaType.class, fatturaElettronicaType, false);
  3997.     }
  3998.     /**
  3999.      * Serialize to output stream <var>out</var> the object <var>fatturaElettronicaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaType}
  4000.      *
  4001.      * @param out OutputStream to serialize the object <var>fatturaElettronicaType</var>
  4002.      * @param fatturaElettronicaType Object to be serialized in xml file <var>fileName</var>
  4003.      * @param prettyPrint if true output the XML with indenting
  4004.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4005.      */
  4006.     public void write(OutputStream out,FatturaElettronicaType fatturaElettronicaType,boolean prettyPrint) throws SerializerException {
  4007.         this.objToXml(out, FatturaElettronicaType.class, fatturaElettronicaType, prettyPrint);
  4008.     }
  4009.            
  4010.     /**
  4011.      * Serialize to byte array the object <var>fatturaElettronicaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaType}
  4012.      *
  4013.      * @param fatturaElettronicaType Object to be serialized
  4014.      * @return Object to be serialized in byte array
  4015.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4016.      */
  4017.     public byte[] toByteArray(FatturaElettronicaType fatturaElettronicaType) throws SerializerException {
  4018.         return this.objToXml(FatturaElettronicaType.class, fatturaElettronicaType, false).toByteArray();
  4019.     }
  4020.     /**
  4021.      * Serialize to byte array the object <var>fatturaElettronicaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaType}
  4022.      *
  4023.      * @param fatturaElettronicaType Object to be serialized
  4024.      * @param prettyPrint if true output the XML with indenting
  4025.      * @return Object to be serialized in byte array
  4026.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4027.      */
  4028.     public byte[] toByteArray(FatturaElettronicaType fatturaElettronicaType,boolean prettyPrint) throws SerializerException {
  4029.         return this.objToXml(FatturaElettronicaType.class, fatturaElettronicaType, prettyPrint).toByteArray();
  4030.     }
  4031.    
  4032.     /**
  4033.      * Serialize to String the object <var>fatturaElettronicaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaType}
  4034.      *
  4035.      * @param fatturaElettronicaType Object to be serialized
  4036.      * @return Object to be serialized as String
  4037.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4038.      */
  4039.     public String toString(FatturaElettronicaType fatturaElettronicaType) throws SerializerException {
  4040.         return this.objToXml(FatturaElettronicaType.class, fatturaElettronicaType, false).toString();
  4041.     }
  4042.     /**
  4043.      * Serialize to String the object <var>fatturaElettronicaType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaType}
  4044.      *
  4045.      * @param fatturaElettronicaType Object to be serialized
  4046.      * @param prettyPrint if true output the XML with indenting
  4047.      * @return Object to be serialized as String
  4048.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4049.      */
  4050.     public String toString(FatturaElettronicaType fatturaElettronicaType,boolean prettyPrint) throws SerializerException {
  4051.         return this.objToXml(FatturaElettronicaType.class, fatturaElettronicaType, prettyPrint).toString();
  4052.     }
  4053.    
  4054.    
  4055.    
  4056.     /*
  4057.      =================================================================================
  4058.      Object: FatturaElettronicaBodyType
  4059.      =================================================================================
  4060.     */
  4061.    
  4062.     /**
  4063.      * Serialize to file system in <var>fileName</var> the object <var>fatturaElettronicaBodyType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaBodyType}
  4064.      *
  4065.      * @param fileName Xml file to serialize the object <var>fatturaElettronicaBodyType</var>
  4066.      * @param fatturaElettronicaBodyType Object to be serialized in xml file <var>fileName</var>
  4067.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4068.      */
  4069.     public void write(String fileName,FatturaElettronicaBodyType fatturaElettronicaBodyType) throws SerializerException {
  4070.         this.objToXml(fileName, FatturaElettronicaBodyType.class, fatturaElettronicaBodyType, false);
  4071.     }
  4072.     /**
  4073.      * Serialize to file system in <var>fileName</var> the object <var>fatturaElettronicaBodyType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaBodyType}
  4074.      *
  4075.      * @param fileName Xml file to serialize the object <var>fatturaElettronicaBodyType</var>
  4076.      * @param fatturaElettronicaBodyType Object to be serialized in xml file <var>fileName</var>
  4077.      * @param prettyPrint if true output the XML with indenting
  4078.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4079.      */
  4080.     public void write(String fileName,FatturaElettronicaBodyType fatturaElettronicaBodyType,boolean prettyPrint) throws SerializerException {
  4081.         this.objToXml(fileName, FatturaElettronicaBodyType.class, fatturaElettronicaBodyType, prettyPrint);
  4082.     }
  4083.    
  4084.     /**
  4085.      * Serialize to file system in <var>file</var> the object <var>fatturaElettronicaBodyType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaBodyType}
  4086.      *
  4087.      * @param file Xml file to serialize the object <var>fatturaElettronicaBodyType</var>
  4088.      * @param fatturaElettronicaBodyType Object to be serialized in xml file <var>fileName</var>
  4089.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4090.      */
  4091.     public void write(File file,FatturaElettronicaBodyType fatturaElettronicaBodyType) throws SerializerException {
  4092.         this.objToXml(file, FatturaElettronicaBodyType.class, fatturaElettronicaBodyType, false);
  4093.     }
  4094.     /**
  4095.      * Serialize to file system in <var>file</var> the object <var>fatturaElettronicaBodyType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaBodyType}
  4096.      *
  4097.      * @param file Xml file to serialize the object <var>fatturaElettronicaBodyType</var>
  4098.      * @param fatturaElettronicaBodyType Object to be serialized in xml file <var>fileName</var>
  4099.      * @param prettyPrint if true output the XML with indenting
  4100.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4101.      */
  4102.     public void write(File file,FatturaElettronicaBodyType fatturaElettronicaBodyType,boolean prettyPrint) throws SerializerException {
  4103.         this.objToXml(file, FatturaElettronicaBodyType.class, fatturaElettronicaBodyType, prettyPrint);
  4104.     }
  4105.    
  4106.     /**
  4107.      * Serialize to output stream <var>out</var> the object <var>fatturaElettronicaBodyType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaBodyType}
  4108.      *
  4109.      * @param out OutputStream to serialize the object <var>fatturaElettronicaBodyType</var>
  4110.      * @param fatturaElettronicaBodyType Object to be serialized in xml file <var>fileName</var>
  4111.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4112.      */
  4113.     public void write(OutputStream out,FatturaElettronicaBodyType fatturaElettronicaBodyType) throws SerializerException {
  4114.         this.objToXml(out, FatturaElettronicaBodyType.class, fatturaElettronicaBodyType, false);
  4115.     }
  4116.     /**
  4117.      * Serialize to output stream <var>out</var> the object <var>fatturaElettronicaBodyType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaBodyType}
  4118.      *
  4119.      * @param out OutputStream to serialize the object <var>fatturaElettronicaBodyType</var>
  4120.      * @param fatturaElettronicaBodyType Object to be serialized in xml file <var>fileName</var>
  4121.      * @param prettyPrint if true output the XML with indenting
  4122.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4123.      */
  4124.     public void write(OutputStream out,FatturaElettronicaBodyType fatturaElettronicaBodyType,boolean prettyPrint) throws SerializerException {
  4125.         this.objToXml(out, FatturaElettronicaBodyType.class, fatturaElettronicaBodyType, prettyPrint);
  4126.     }
  4127.            
  4128.     /**
  4129.      * Serialize to byte array the object <var>fatturaElettronicaBodyType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaBodyType}
  4130.      *
  4131.      * @param fatturaElettronicaBodyType Object to be serialized
  4132.      * @return Object to be serialized in byte array
  4133.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4134.      */
  4135.     public byte[] toByteArray(FatturaElettronicaBodyType fatturaElettronicaBodyType) throws SerializerException {
  4136.         return this.objToXml(FatturaElettronicaBodyType.class, fatturaElettronicaBodyType, false).toByteArray();
  4137.     }
  4138.     /**
  4139.      * Serialize to byte array the object <var>fatturaElettronicaBodyType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaBodyType}
  4140.      *
  4141.      * @param fatturaElettronicaBodyType Object to be serialized
  4142.      * @param prettyPrint if true output the XML with indenting
  4143.      * @return Object to be serialized in byte array
  4144.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4145.      */
  4146.     public byte[] toByteArray(FatturaElettronicaBodyType fatturaElettronicaBodyType,boolean prettyPrint) throws SerializerException {
  4147.         return this.objToXml(FatturaElettronicaBodyType.class, fatturaElettronicaBodyType, prettyPrint).toByteArray();
  4148.     }
  4149.    
  4150.     /**
  4151.      * Serialize to String the object <var>fatturaElettronicaBodyType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaBodyType}
  4152.      *
  4153.      * @param fatturaElettronicaBodyType Object to be serialized
  4154.      * @return Object to be serialized as String
  4155.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4156.      */
  4157.     public String toString(FatturaElettronicaBodyType fatturaElettronicaBodyType) throws SerializerException {
  4158.         return this.objToXml(FatturaElettronicaBodyType.class, fatturaElettronicaBodyType, false).toString();
  4159.     }
  4160.     /**
  4161.      * Serialize to String the object <var>fatturaElettronicaBodyType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.FatturaElettronicaBodyType}
  4162.      *
  4163.      * @param fatturaElettronicaBodyType Object to be serialized
  4164.      * @param prettyPrint if true output the XML with indenting
  4165.      * @return Object to be serialized as String
  4166.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4167.      */
  4168.     public String toString(FatturaElettronicaBodyType fatturaElettronicaBodyType,boolean prettyPrint) throws SerializerException {
  4169.         return this.objToXml(FatturaElettronicaBodyType.class, fatturaElettronicaBodyType, prettyPrint).toString();
  4170.     }
  4171.    
  4172.    
  4173.    
  4174.     /*
  4175.      =================================================================================
  4176.      Object: DatiPagamentoType
  4177.      =================================================================================
  4178.     */
  4179.    
  4180.     /**
  4181.      * Serialize to file system in <var>fileName</var> the object <var>datiPagamentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiPagamentoType}
  4182.      *
  4183.      * @param fileName Xml file to serialize the object <var>datiPagamentoType</var>
  4184.      * @param datiPagamentoType Object to be serialized in xml file <var>fileName</var>
  4185.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4186.      */
  4187.     public void write(String fileName,DatiPagamentoType datiPagamentoType) throws SerializerException {
  4188.         this.objToXml(fileName, DatiPagamentoType.class, datiPagamentoType, false);
  4189.     }
  4190.     /**
  4191.      * Serialize to file system in <var>fileName</var> the object <var>datiPagamentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiPagamentoType}
  4192.      *
  4193.      * @param fileName Xml file to serialize the object <var>datiPagamentoType</var>
  4194.      * @param datiPagamentoType Object to be serialized in xml file <var>fileName</var>
  4195.      * @param prettyPrint if true output the XML with indenting
  4196.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4197.      */
  4198.     public void write(String fileName,DatiPagamentoType datiPagamentoType,boolean prettyPrint) throws SerializerException {
  4199.         this.objToXml(fileName, DatiPagamentoType.class, datiPagamentoType, prettyPrint);
  4200.     }
  4201.    
  4202.     /**
  4203.      * Serialize to file system in <var>file</var> the object <var>datiPagamentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiPagamentoType}
  4204.      *
  4205.      * @param file Xml file to serialize the object <var>datiPagamentoType</var>
  4206.      * @param datiPagamentoType Object to be serialized in xml file <var>fileName</var>
  4207.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4208.      */
  4209.     public void write(File file,DatiPagamentoType datiPagamentoType) throws SerializerException {
  4210.         this.objToXml(file, DatiPagamentoType.class, datiPagamentoType, false);
  4211.     }
  4212.     /**
  4213.      * Serialize to file system in <var>file</var> the object <var>datiPagamentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiPagamentoType}
  4214.      *
  4215.      * @param file Xml file to serialize the object <var>datiPagamentoType</var>
  4216.      * @param datiPagamentoType Object to be serialized in xml file <var>fileName</var>
  4217.      * @param prettyPrint if true output the XML with indenting
  4218.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4219.      */
  4220.     public void write(File file,DatiPagamentoType datiPagamentoType,boolean prettyPrint) throws SerializerException {
  4221.         this.objToXml(file, DatiPagamentoType.class, datiPagamentoType, prettyPrint);
  4222.     }
  4223.    
  4224.     /**
  4225.      * Serialize to output stream <var>out</var> the object <var>datiPagamentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiPagamentoType}
  4226.      *
  4227.      * @param out OutputStream to serialize the object <var>datiPagamentoType</var>
  4228.      * @param datiPagamentoType Object to be serialized in xml file <var>fileName</var>
  4229.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4230.      */
  4231.     public void write(OutputStream out,DatiPagamentoType datiPagamentoType) throws SerializerException {
  4232.         this.objToXml(out, DatiPagamentoType.class, datiPagamentoType, false);
  4233.     }
  4234.     /**
  4235.      * Serialize to output stream <var>out</var> the object <var>datiPagamentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiPagamentoType}
  4236.      *
  4237.      * @param out OutputStream to serialize the object <var>datiPagamentoType</var>
  4238.      * @param datiPagamentoType Object to be serialized in xml file <var>fileName</var>
  4239.      * @param prettyPrint if true output the XML with indenting
  4240.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4241.      */
  4242.     public void write(OutputStream out,DatiPagamentoType datiPagamentoType,boolean prettyPrint) throws SerializerException {
  4243.         this.objToXml(out, DatiPagamentoType.class, datiPagamentoType, prettyPrint);
  4244.     }
  4245.            
  4246.     /**
  4247.      * Serialize to byte array the object <var>datiPagamentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiPagamentoType}
  4248.      *
  4249.      * @param datiPagamentoType Object to be serialized
  4250.      * @return Object to be serialized in byte array
  4251.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4252.      */
  4253.     public byte[] toByteArray(DatiPagamentoType datiPagamentoType) throws SerializerException {
  4254.         return this.objToXml(DatiPagamentoType.class, datiPagamentoType, false).toByteArray();
  4255.     }
  4256.     /**
  4257.      * Serialize to byte array the object <var>datiPagamentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiPagamentoType}
  4258.      *
  4259.      * @param datiPagamentoType Object to be serialized
  4260.      * @param prettyPrint if true output the XML with indenting
  4261.      * @return Object to be serialized in byte array
  4262.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4263.      */
  4264.     public byte[] toByteArray(DatiPagamentoType datiPagamentoType,boolean prettyPrint) throws SerializerException {
  4265.         return this.objToXml(DatiPagamentoType.class, datiPagamentoType, prettyPrint).toByteArray();
  4266.     }
  4267.    
  4268.     /**
  4269.      * Serialize to String the object <var>datiPagamentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiPagamentoType}
  4270.      *
  4271.      * @param datiPagamentoType Object to be serialized
  4272.      * @return Object to be serialized as String
  4273.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4274.      */
  4275.     public String toString(DatiPagamentoType datiPagamentoType) throws SerializerException {
  4276.         return this.objToXml(DatiPagamentoType.class, datiPagamentoType, false).toString();
  4277.     }
  4278.     /**
  4279.      * Serialize to String the object <var>datiPagamentoType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiPagamentoType}
  4280.      *
  4281.      * @param datiPagamentoType Object to be serialized
  4282.      * @param prettyPrint if true output the XML with indenting
  4283.      * @return Object to be serialized as String
  4284.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4285.      */
  4286.     public String toString(DatiPagamentoType datiPagamentoType,boolean prettyPrint) throws SerializerException {
  4287.         return this.objToXml(DatiPagamentoType.class, datiPagamentoType, prettyPrint).toString();
  4288.     }
  4289.    
  4290.    
  4291.    
  4292.     /*
  4293.      =================================================================================
  4294.      Object: AllegatiType
  4295.      =================================================================================
  4296.     */
  4297.    
  4298.     /**
  4299.      * Serialize to file system in <var>fileName</var> the object <var>allegatiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AllegatiType}
  4300.      *
  4301.      * @param fileName Xml file to serialize the object <var>allegatiType</var>
  4302.      * @param allegatiType Object to be serialized in xml file <var>fileName</var>
  4303.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4304.      */
  4305.     public void write(String fileName,AllegatiType allegatiType) throws SerializerException {
  4306.         this.objToXml(fileName, AllegatiType.class, allegatiType, false);
  4307.     }
  4308.     /**
  4309.      * Serialize to file system in <var>fileName</var> the object <var>allegatiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AllegatiType}
  4310.      *
  4311.      * @param fileName Xml file to serialize the object <var>allegatiType</var>
  4312.      * @param allegatiType Object to be serialized in xml file <var>fileName</var>
  4313.      * @param prettyPrint if true output the XML with indenting
  4314.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4315.      */
  4316.     public void write(String fileName,AllegatiType allegatiType,boolean prettyPrint) throws SerializerException {
  4317.         this.objToXml(fileName, AllegatiType.class, allegatiType, prettyPrint);
  4318.     }
  4319.    
  4320.     /**
  4321.      * Serialize to file system in <var>file</var> the object <var>allegatiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AllegatiType}
  4322.      *
  4323.      * @param file Xml file to serialize the object <var>allegatiType</var>
  4324.      * @param allegatiType Object to be serialized in xml file <var>fileName</var>
  4325.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4326.      */
  4327.     public void write(File file,AllegatiType allegatiType) throws SerializerException {
  4328.         this.objToXml(file, AllegatiType.class, allegatiType, false);
  4329.     }
  4330.     /**
  4331.      * Serialize to file system in <var>file</var> the object <var>allegatiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AllegatiType}
  4332.      *
  4333.      * @param file Xml file to serialize the object <var>allegatiType</var>
  4334.      * @param allegatiType Object to be serialized in xml file <var>fileName</var>
  4335.      * @param prettyPrint if true output the XML with indenting
  4336.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4337.      */
  4338.     public void write(File file,AllegatiType allegatiType,boolean prettyPrint) throws SerializerException {
  4339.         this.objToXml(file, AllegatiType.class, allegatiType, prettyPrint);
  4340.     }
  4341.    
  4342.     /**
  4343.      * Serialize to output stream <var>out</var> the object <var>allegatiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AllegatiType}
  4344.      *
  4345.      * @param out OutputStream to serialize the object <var>allegatiType</var>
  4346.      * @param allegatiType Object to be serialized in xml file <var>fileName</var>
  4347.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4348.      */
  4349.     public void write(OutputStream out,AllegatiType allegatiType) throws SerializerException {
  4350.         this.objToXml(out, AllegatiType.class, allegatiType, false);
  4351.     }
  4352.     /**
  4353.      * Serialize to output stream <var>out</var> the object <var>allegatiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AllegatiType}
  4354.      *
  4355.      * @param out OutputStream to serialize the object <var>allegatiType</var>
  4356.      * @param allegatiType Object to be serialized in xml file <var>fileName</var>
  4357.      * @param prettyPrint if true output the XML with indenting
  4358.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4359.      */
  4360.     public void write(OutputStream out,AllegatiType allegatiType,boolean prettyPrint) throws SerializerException {
  4361.         this.objToXml(out, AllegatiType.class, allegatiType, prettyPrint);
  4362.     }
  4363.            
  4364.     /**
  4365.      * Serialize to byte array the object <var>allegatiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AllegatiType}
  4366.      *
  4367.      * @param allegatiType Object to be serialized
  4368.      * @return Object to be serialized in byte array
  4369.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4370.      */
  4371.     public byte[] toByteArray(AllegatiType allegatiType) throws SerializerException {
  4372.         return this.objToXml(AllegatiType.class, allegatiType, false).toByteArray();
  4373.     }
  4374.     /**
  4375.      * Serialize to byte array the object <var>allegatiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AllegatiType}
  4376.      *
  4377.      * @param allegatiType Object to be serialized
  4378.      * @param prettyPrint if true output the XML with indenting
  4379.      * @return Object to be serialized in byte array
  4380.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4381.      */
  4382.     public byte[] toByteArray(AllegatiType allegatiType,boolean prettyPrint) throws SerializerException {
  4383.         return this.objToXml(AllegatiType.class, allegatiType, prettyPrint).toByteArray();
  4384.     }
  4385.    
  4386.     /**
  4387.      * Serialize to String the object <var>allegatiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AllegatiType}
  4388.      *
  4389.      * @param allegatiType Object to be serialized
  4390.      * @return Object to be serialized as String
  4391.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4392.      */
  4393.     public String toString(AllegatiType allegatiType) throws SerializerException {
  4394.         return this.objToXml(AllegatiType.class, allegatiType, false).toString();
  4395.     }
  4396.     /**
  4397.      * Serialize to String the object <var>allegatiType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.AllegatiType}
  4398.      *
  4399.      * @param allegatiType Object to be serialized
  4400.      * @param prettyPrint if true output the XML with indenting
  4401.      * @return Object to be serialized as String
  4402.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4403.      */
  4404.     public String toString(AllegatiType allegatiType,boolean prettyPrint) throws SerializerException {
  4405.         return this.objToXml(AllegatiType.class, allegatiType, prettyPrint).toString();
  4406.     }
  4407.    
  4408.    
  4409.    
  4410.     /*
  4411.      =================================================================================
  4412.      Object: DatiCassaPrevidenzialeType
  4413.      =================================================================================
  4414.     */
  4415.    
  4416.     /**
  4417.      * Serialize to file system in <var>fileName</var> the object <var>datiCassaPrevidenzialeType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiCassaPrevidenzialeType}
  4418.      *
  4419.      * @param fileName Xml file to serialize the object <var>datiCassaPrevidenzialeType</var>
  4420.      * @param datiCassaPrevidenzialeType Object to be serialized in xml file <var>fileName</var>
  4421.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4422.      */
  4423.     public void write(String fileName,DatiCassaPrevidenzialeType datiCassaPrevidenzialeType) throws SerializerException {
  4424.         this.objToXml(fileName, DatiCassaPrevidenzialeType.class, datiCassaPrevidenzialeType, false);
  4425.     }
  4426.     /**
  4427.      * Serialize to file system in <var>fileName</var> the object <var>datiCassaPrevidenzialeType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiCassaPrevidenzialeType}
  4428.      *
  4429.      * @param fileName Xml file to serialize the object <var>datiCassaPrevidenzialeType</var>
  4430.      * @param datiCassaPrevidenzialeType Object to be serialized in xml file <var>fileName</var>
  4431.      * @param prettyPrint if true output the XML with indenting
  4432.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4433.      */
  4434.     public void write(String fileName,DatiCassaPrevidenzialeType datiCassaPrevidenzialeType,boolean prettyPrint) throws SerializerException {
  4435.         this.objToXml(fileName, DatiCassaPrevidenzialeType.class, datiCassaPrevidenzialeType, prettyPrint);
  4436.     }
  4437.    
  4438.     /**
  4439.      * Serialize to file system in <var>file</var> the object <var>datiCassaPrevidenzialeType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiCassaPrevidenzialeType}
  4440.      *
  4441.      * @param file Xml file to serialize the object <var>datiCassaPrevidenzialeType</var>
  4442.      * @param datiCassaPrevidenzialeType Object to be serialized in xml file <var>fileName</var>
  4443.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4444.      */
  4445.     public void write(File file,DatiCassaPrevidenzialeType datiCassaPrevidenzialeType) throws SerializerException {
  4446.         this.objToXml(file, DatiCassaPrevidenzialeType.class, datiCassaPrevidenzialeType, false);
  4447.     }
  4448.     /**
  4449.      * Serialize to file system in <var>file</var> the object <var>datiCassaPrevidenzialeType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiCassaPrevidenzialeType}
  4450.      *
  4451.      * @param file Xml file to serialize the object <var>datiCassaPrevidenzialeType</var>
  4452.      * @param datiCassaPrevidenzialeType Object to be serialized in xml file <var>fileName</var>
  4453.      * @param prettyPrint if true output the XML with indenting
  4454.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4455.      */
  4456.     public void write(File file,DatiCassaPrevidenzialeType datiCassaPrevidenzialeType,boolean prettyPrint) throws SerializerException {
  4457.         this.objToXml(file, DatiCassaPrevidenzialeType.class, datiCassaPrevidenzialeType, prettyPrint);
  4458.     }
  4459.    
  4460.     /**
  4461.      * Serialize to output stream <var>out</var> the object <var>datiCassaPrevidenzialeType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiCassaPrevidenzialeType}
  4462.      *
  4463.      * @param out OutputStream to serialize the object <var>datiCassaPrevidenzialeType</var>
  4464.      * @param datiCassaPrevidenzialeType Object to be serialized in xml file <var>fileName</var>
  4465.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4466.      */
  4467.     public void write(OutputStream out,DatiCassaPrevidenzialeType datiCassaPrevidenzialeType) throws SerializerException {
  4468.         this.objToXml(out, DatiCassaPrevidenzialeType.class, datiCassaPrevidenzialeType, false);
  4469.     }
  4470.     /**
  4471.      * Serialize to output stream <var>out</var> the object <var>datiCassaPrevidenzialeType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiCassaPrevidenzialeType}
  4472.      *
  4473.      * @param out OutputStream to serialize the object <var>datiCassaPrevidenzialeType</var>
  4474.      * @param datiCassaPrevidenzialeType Object to be serialized in xml file <var>fileName</var>
  4475.      * @param prettyPrint if true output the XML with indenting
  4476.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4477.      */
  4478.     public void write(OutputStream out,DatiCassaPrevidenzialeType datiCassaPrevidenzialeType,boolean prettyPrint) throws SerializerException {
  4479.         this.objToXml(out, DatiCassaPrevidenzialeType.class, datiCassaPrevidenzialeType, prettyPrint);
  4480.     }
  4481.            
  4482.     /**
  4483.      * Serialize to byte array the object <var>datiCassaPrevidenzialeType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiCassaPrevidenzialeType}
  4484.      *
  4485.      * @param datiCassaPrevidenzialeType Object to be serialized
  4486.      * @return Object to be serialized in byte array
  4487.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4488.      */
  4489.     public byte[] toByteArray(DatiCassaPrevidenzialeType datiCassaPrevidenzialeType) throws SerializerException {
  4490.         return this.objToXml(DatiCassaPrevidenzialeType.class, datiCassaPrevidenzialeType, false).toByteArray();
  4491.     }
  4492.     /**
  4493.      * Serialize to byte array the object <var>datiCassaPrevidenzialeType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiCassaPrevidenzialeType}
  4494.      *
  4495.      * @param datiCassaPrevidenzialeType Object to be serialized
  4496.      * @param prettyPrint if true output the XML with indenting
  4497.      * @return Object to be serialized in byte array
  4498.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4499.      */
  4500.     public byte[] toByteArray(DatiCassaPrevidenzialeType datiCassaPrevidenzialeType,boolean prettyPrint) throws SerializerException {
  4501.         return this.objToXml(DatiCassaPrevidenzialeType.class, datiCassaPrevidenzialeType, prettyPrint).toByteArray();
  4502.     }
  4503.    
  4504.     /**
  4505.      * Serialize to String the object <var>datiCassaPrevidenzialeType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiCassaPrevidenzialeType}
  4506.      *
  4507.      * @param datiCassaPrevidenzialeType Object to be serialized
  4508.      * @return Object to be serialized as String
  4509.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4510.      */
  4511.     public String toString(DatiCassaPrevidenzialeType datiCassaPrevidenzialeType) throws SerializerException {
  4512.         return this.objToXml(DatiCassaPrevidenzialeType.class, datiCassaPrevidenzialeType, false).toString();
  4513.     }
  4514.     /**
  4515.      * Serialize to String the object <var>datiCassaPrevidenzialeType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiCassaPrevidenzialeType}
  4516.      *
  4517.      * @param datiCassaPrevidenzialeType Object to be serialized
  4518.      * @param prettyPrint if true output the XML with indenting
  4519.      * @return Object to be serialized as String
  4520.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4521.      */
  4522.     public String toString(DatiCassaPrevidenzialeType datiCassaPrevidenzialeType,boolean prettyPrint) throws SerializerException {
  4523.         return this.objToXml(DatiCassaPrevidenzialeType.class, datiCassaPrevidenzialeType, prettyPrint).toString();
  4524.     }
  4525.    
  4526.    
  4527.    
  4528.     /*
  4529.      =================================================================================
  4530.      Object: DatiBolloType
  4531.      =================================================================================
  4532.     */
  4533.    
  4534.     /**
  4535.      * Serialize to file system in <var>fileName</var> the object <var>datiBolloType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiBolloType}
  4536.      *
  4537.      * @param fileName Xml file to serialize the object <var>datiBolloType</var>
  4538.      * @param datiBolloType Object to be serialized in xml file <var>fileName</var>
  4539.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4540.      */
  4541.     public void write(String fileName,DatiBolloType datiBolloType) throws SerializerException {
  4542.         this.objToXml(fileName, DatiBolloType.class, datiBolloType, false);
  4543.     }
  4544.     /**
  4545.      * Serialize to file system in <var>fileName</var> the object <var>datiBolloType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiBolloType}
  4546.      *
  4547.      * @param fileName Xml file to serialize the object <var>datiBolloType</var>
  4548.      * @param datiBolloType Object to be serialized in xml file <var>fileName</var>
  4549.      * @param prettyPrint if true output the XML with indenting
  4550.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4551.      */
  4552.     public void write(String fileName,DatiBolloType datiBolloType,boolean prettyPrint) throws SerializerException {
  4553.         this.objToXml(fileName, DatiBolloType.class, datiBolloType, prettyPrint);
  4554.     }
  4555.    
  4556.     /**
  4557.      * Serialize to file system in <var>file</var> the object <var>datiBolloType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiBolloType}
  4558.      *
  4559.      * @param file Xml file to serialize the object <var>datiBolloType</var>
  4560.      * @param datiBolloType Object to be serialized in xml file <var>fileName</var>
  4561.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4562.      */
  4563.     public void write(File file,DatiBolloType datiBolloType) throws SerializerException {
  4564.         this.objToXml(file, DatiBolloType.class, datiBolloType, false);
  4565.     }
  4566.     /**
  4567.      * Serialize to file system in <var>file</var> the object <var>datiBolloType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiBolloType}
  4568.      *
  4569.      * @param file Xml file to serialize the object <var>datiBolloType</var>
  4570.      * @param datiBolloType Object to be serialized in xml file <var>fileName</var>
  4571.      * @param prettyPrint if true output the XML with indenting
  4572.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4573.      */
  4574.     public void write(File file,DatiBolloType datiBolloType,boolean prettyPrint) throws SerializerException {
  4575.         this.objToXml(file, DatiBolloType.class, datiBolloType, prettyPrint);
  4576.     }
  4577.    
  4578.     /**
  4579.      * Serialize to output stream <var>out</var> the object <var>datiBolloType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiBolloType}
  4580.      *
  4581.      * @param out OutputStream to serialize the object <var>datiBolloType</var>
  4582.      * @param datiBolloType Object to be serialized in xml file <var>fileName</var>
  4583.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4584.      */
  4585.     public void write(OutputStream out,DatiBolloType datiBolloType) throws SerializerException {
  4586.         this.objToXml(out, DatiBolloType.class, datiBolloType, false);
  4587.     }
  4588.     /**
  4589.      * Serialize to output stream <var>out</var> the object <var>datiBolloType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiBolloType}
  4590.      *
  4591.      * @param out OutputStream to serialize the object <var>datiBolloType</var>
  4592.      * @param datiBolloType Object to be serialized in xml file <var>fileName</var>
  4593.      * @param prettyPrint if true output the XML with indenting
  4594.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4595.      */
  4596.     public void write(OutputStream out,DatiBolloType datiBolloType,boolean prettyPrint) throws SerializerException {
  4597.         this.objToXml(out, DatiBolloType.class, datiBolloType, prettyPrint);
  4598.     }
  4599.            
  4600.     /**
  4601.      * Serialize to byte array the object <var>datiBolloType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiBolloType}
  4602.      *
  4603.      * @param datiBolloType Object to be serialized
  4604.      * @return Object to be serialized in byte array
  4605.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4606.      */
  4607.     public byte[] toByteArray(DatiBolloType datiBolloType) throws SerializerException {
  4608.         return this.objToXml(DatiBolloType.class, datiBolloType, false).toByteArray();
  4609.     }
  4610.     /**
  4611.      * Serialize to byte array the object <var>datiBolloType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiBolloType}
  4612.      *
  4613.      * @param datiBolloType Object to be serialized
  4614.      * @param prettyPrint if true output the XML with indenting
  4615.      * @return Object to be serialized in byte array
  4616.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4617.      */
  4618.     public byte[] toByteArray(DatiBolloType datiBolloType,boolean prettyPrint) throws SerializerException {
  4619.         return this.objToXml(DatiBolloType.class, datiBolloType, prettyPrint).toByteArray();
  4620.     }
  4621.    
  4622.     /**
  4623.      * Serialize to String the object <var>datiBolloType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiBolloType}
  4624.      *
  4625.      * @param datiBolloType Object to be serialized
  4626.      * @return Object to be serialized as String
  4627.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4628.      */
  4629.     public String toString(DatiBolloType datiBolloType) throws SerializerException {
  4630.         return this.objToXml(DatiBolloType.class, datiBolloType, false).toString();
  4631.     }
  4632.     /**
  4633.      * Serialize to String the object <var>datiBolloType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.DatiBolloType}
  4634.      *
  4635.      * @param datiBolloType Object to be serialized
  4636.      * @param prettyPrint if true output the XML with indenting
  4637.      * @return Object to be serialized as String
  4638.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4639.      */
  4640.     public String toString(DatiBolloType datiBolloType,boolean prettyPrint) throws SerializerException {
  4641.         return this.objToXml(DatiBolloType.class, datiBolloType, prettyPrint).toString();
  4642.     }
  4643.    
  4644.    
  4645.    
  4646.     /*
  4647.      =================================================================================
  4648.      Object: ContattiTrasmittenteType
  4649.      =================================================================================
  4650.     */
  4651.    
  4652.     /**
  4653.      * Serialize to file system in <var>fileName</var> the object <var>contattiTrasmittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ContattiTrasmittenteType}
  4654.      *
  4655.      * @param fileName Xml file to serialize the object <var>contattiTrasmittenteType</var>
  4656.      * @param contattiTrasmittenteType Object to be serialized in xml file <var>fileName</var>
  4657.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4658.      */
  4659.     public void write(String fileName,ContattiTrasmittenteType contattiTrasmittenteType) throws SerializerException {
  4660.         this.objToXml(fileName, ContattiTrasmittenteType.class, contattiTrasmittenteType, false);
  4661.     }
  4662.     /**
  4663.      * Serialize to file system in <var>fileName</var> the object <var>contattiTrasmittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ContattiTrasmittenteType}
  4664.      *
  4665.      * @param fileName Xml file to serialize the object <var>contattiTrasmittenteType</var>
  4666.      * @param contattiTrasmittenteType Object to be serialized in xml file <var>fileName</var>
  4667.      * @param prettyPrint if true output the XML with indenting
  4668.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4669.      */
  4670.     public void write(String fileName,ContattiTrasmittenteType contattiTrasmittenteType,boolean prettyPrint) throws SerializerException {
  4671.         this.objToXml(fileName, ContattiTrasmittenteType.class, contattiTrasmittenteType, prettyPrint);
  4672.     }
  4673.    
  4674.     /**
  4675.      * Serialize to file system in <var>file</var> the object <var>contattiTrasmittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ContattiTrasmittenteType}
  4676.      *
  4677.      * @param file Xml file to serialize the object <var>contattiTrasmittenteType</var>
  4678.      * @param contattiTrasmittenteType Object to be serialized in xml file <var>fileName</var>
  4679.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4680.      */
  4681.     public void write(File file,ContattiTrasmittenteType contattiTrasmittenteType) throws SerializerException {
  4682.         this.objToXml(file, ContattiTrasmittenteType.class, contattiTrasmittenteType, false);
  4683.     }
  4684.     /**
  4685.      * Serialize to file system in <var>file</var> the object <var>contattiTrasmittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ContattiTrasmittenteType}
  4686.      *
  4687.      * @param file Xml file to serialize the object <var>contattiTrasmittenteType</var>
  4688.      * @param contattiTrasmittenteType Object to be serialized in xml file <var>fileName</var>
  4689.      * @param prettyPrint if true output the XML with indenting
  4690.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4691.      */
  4692.     public void write(File file,ContattiTrasmittenteType contattiTrasmittenteType,boolean prettyPrint) throws SerializerException {
  4693.         this.objToXml(file, ContattiTrasmittenteType.class, contattiTrasmittenteType, prettyPrint);
  4694.     }
  4695.    
  4696.     /**
  4697.      * Serialize to output stream <var>out</var> the object <var>contattiTrasmittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ContattiTrasmittenteType}
  4698.      *
  4699.      * @param out OutputStream to serialize the object <var>contattiTrasmittenteType</var>
  4700.      * @param contattiTrasmittenteType Object to be serialized in xml file <var>fileName</var>
  4701.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4702.      */
  4703.     public void write(OutputStream out,ContattiTrasmittenteType contattiTrasmittenteType) throws SerializerException {
  4704.         this.objToXml(out, ContattiTrasmittenteType.class, contattiTrasmittenteType, false);
  4705.     }
  4706.     /**
  4707.      * Serialize to output stream <var>out</var> the object <var>contattiTrasmittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ContattiTrasmittenteType}
  4708.      *
  4709.      * @param out OutputStream to serialize the object <var>contattiTrasmittenteType</var>
  4710.      * @param contattiTrasmittenteType Object to be serialized in xml file <var>fileName</var>
  4711.      * @param prettyPrint if true output the XML with indenting
  4712.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4713.      */
  4714.     public void write(OutputStream out,ContattiTrasmittenteType contattiTrasmittenteType,boolean prettyPrint) throws SerializerException {
  4715.         this.objToXml(out, ContattiTrasmittenteType.class, contattiTrasmittenteType, prettyPrint);
  4716.     }
  4717.            
  4718.     /**
  4719.      * Serialize to byte array the object <var>contattiTrasmittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ContattiTrasmittenteType}
  4720.      *
  4721.      * @param contattiTrasmittenteType Object to be serialized
  4722.      * @return Object to be serialized in byte array
  4723.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4724.      */
  4725.     public byte[] toByteArray(ContattiTrasmittenteType contattiTrasmittenteType) throws SerializerException {
  4726.         return this.objToXml(ContattiTrasmittenteType.class, contattiTrasmittenteType, false).toByteArray();
  4727.     }
  4728.     /**
  4729.      * Serialize to byte array the object <var>contattiTrasmittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ContattiTrasmittenteType}
  4730.      *
  4731.      * @param contattiTrasmittenteType Object to be serialized
  4732.      * @param prettyPrint if true output the XML with indenting
  4733.      * @return Object to be serialized in byte array
  4734.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4735.      */
  4736.     public byte[] toByteArray(ContattiTrasmittenteType contattiTrasmittenteType,boolean prettyPrint) throws SerializerException {
  4737.         return this.objToXml(ContattiTrasmittenteType.class, contattiTrasmittenteType, prettyPrint).toByteArray();
  4738.     }
  4739.    
  4740.     /**
  4741.      * Serialize to String the object <var>contattiTrasmittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ContattiTrasmittenteType}
  4742.      *
  4743.      * @param contattiTrasmittenteType Object to be serialized
  4744.      * @return Object to be serialized as String
  4745.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4746.      */
  4747.     public String toString(ContattiTrasmittenteType contattiTrasmittenteType) throws SerializerException {
  4748.         return this.objToXml(ContattiTrasmittenteType.class, contattiTrasmittenteType, false).toString();
  4749.     }
  4750.     /**
  4751.      * Serialize to String the object <var>contattiTrasmittenteType</var> of type {@link it.gov.fatturapa.sdi.fatturapa.v1_1.ContattiTrasmittenteType}
  4752.      *
  4753.      * @param contattiTrasmittenteType Object to be serialized
  4754.      * @param prettyPrint if true output the XML with indenting
  4755.      * @return Object to be serialized as String
  4756.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4757.      */
  4758.     public String toString(ContattiTrasmittenteType contattiTrasmittenteType,boolean prettyPrint) throws SerializerException {
  4759.         return this.objToXml(ContattiTrasmittenteType.class, contattiTrasmittenteType, prettyPrint).toString();
  4760.     }
  4761.    
  4762.    
  4763.    

  4764. }