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 org.openspcoop2.core.config.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 org.openspcoop2.core.config.PortaApplicativaAutorizzazioneSoggetto;
  25. import org.openspcoop2.core.config.Ruolo;
  26. import org.openspcoop2.core.config.TrasformazioneSoapRisposta;
  27. import org.openspcoop2.core.config.PortaApplicativaAutorizzazioneServizioApplicativo;
  28. import org.openspcoop2.core.config.PortaApplicativaAutorizzazioneSoggetti;
  29. import org.openspcoop2.core.config.PortaApplicativaAutorizzazioneServiziApplicativi;
  30. import org.openspcoop2.core.config.PortaApplicativaAutorizzazioneToken;
  31. import org.openspcoop2.core.config.AutorizzazioneRuoli;
  32. import org.openspcoop2.core.config.Route;
  33. import org.openspcoop2.core.config.RoutingTableDefault;
  34. import org.openspcoop2.core.config.Cache;
  35. import org.openspcoop2.core.config.AccessoConfigurazione;
  36. import org.openspcoop2.core.config.AccessoDatiGestioneToken;
  37. import org.openspcoop2.core.config.MtomProcessorFlow;
  38. import org.openspcoop2.core.config.MtomProcessor;
  39. import org.openspcoop2.core.config.GestioneErroreCodiceTrasporto;
  40. import org.openspcoop2.core.config.GestioneErrore;
  41. import org.openspcoop2.core.config.GestioneErroreSoapFault;
  42. import org.openspcoop2.core.config.GestioneTokenAutenticazione;
  43. import org.openspcoop2.core.config.GestioneToken;
  44. import org.openspcoop2.core.config.ServizioApplicativoRuoli;
  45. import org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaRisposta;
  46. import org.openspcoop2.core.config.Proprieta;
  47. import org.openspcoop2.core.config.AccessoRegistroRegistro;
  48. import org.openspcoop2.core.config.InvocazioneCredenziali;
  49. import org.openspcoop2.core.config.RispostaAsincrona;
  50. import org.openspcoop2.core.config.Connettore;
  51. import org.openspcoop2.core.config.RouteRegistro;
  52. import org.openspcoop2.core.config.AccessoDatiKeystore;
  53. import org.openspcoop2.core.config.TrasformazioneRegolaRichiesta;
  54. import org.openspcoop2.core.config.TrasformazioneRegolaParametro;
  55. import org.openspcoop2.core.config.TrasformazioneRest;
  56. import org.openspcoop2.core.config.TrasformazioneSoap;
  57. import org.openspcoop2.core.config.IdSoggetto;
  58. import org.openspcoop2.core.config.PortaDelegata;
  59. import org.openspcoop2.core.config.Soggetto;
  60. import org.openspcoop2.core.config.PortaApplicativa;
  61. import org.openspcoop2.core.config.ServizioApplicativo;
  62. import org.openspcoop2.core.config.Property;
  63. import org.openspcoop2.core.config.OpenspcoopAppender;
  64. import org.openspcoop2.core.config.RegistroPlugin;
  65. import org.openspcoop2.core.config.RegistroPlugins;
  66. import org.openspcoop2.core.config.PortaDelegataAutorizzazioneServiziApplicativi;
  67. import org.openspcoop2.core.config.PortaDelegataAutorizzazioneToken;
  68. import org.openspcoop2.core.config.ConfigurazioneUrlInvocazioneRegola;
  69. import org.openspcoop2.core.config.IdPortaApplicativa;
  70. import org.openspcoop2.core.config.PortaApplicativaSoggettoVirtuale;
  71. import org.openspcoop2.core.config.TracciamentoConfigurazioneFiletraceConnector;
  72. import org.openspcoop2.core.config.TracciamentoConfigurazioneFiletrace;
  73. import org.openspcoop2.core.config.TrasformazioneRegolaRisposta;
  74. import org.openspcoop2.core.config.MessageSecurityFlowParameter;
  75. import org.openspcoop2.core.config.PortaDelegataSoggettoErogatore;
  76. import org.openspcoop2.core.config.PortaApplicativaServizioApplicativoConnettore;
  77. import org.openspcoop2.core.config.ProprietaOggetto;
  78. import org.openspcoop2.core.config.RegistroPluginArchivio;
  79. import org.openspcoop2.core.config.IdPortaDelegata;
  80. import org.openspcoop2.core.config.PortaDelegataServizio;
  81. import org.openspcoop2.core.config.PortaDelegataAzione;
  82. import org.openspcoop2.core.config.PortaDelegataServizioApplicativo;
  83. import org.openspcoop2.core.config.AutorizzazioneScope;
  84. import org.openspcoop2.core.config.PortaDelegataLocalForward;
  85. import org.openspcoop2.core.config.MessageSecurity;
  86. import org.openspcoop2.core.config.ValidazioneContenutiApplicativi;
  87. import org.openspcoop2.core.config.CorrelazioneApplicativa;
  88. import org.openspcoop2.core.config.CorrelazioneApplicativaRisposta;
  89. import org.openspcoop2.core.config.DumpConfigurazione;
  90. import org.openspcoop2.core.config.PortaTracciamento;
  91. import org.openspcoop2.core.config.CorsConfigurazione;
  92. import org.openspcoop2.core.config.ResponseCachingConfigurazione;
  93. import org.openspcoop2.core.config.Trasformazioni;
  94. import org.openspcoop2.core.config.ConfigurazionePortaHandler;
  95. import org.openspcoop2.core.config.AttributeAuthority;
  96. import org.openspcoop2.core.config.ResponseCachingConfigurazioneRegola;
  97. import org.openspcoop2.core.config.GenericProperties;
  98. import org.openspcoop2.core.config.IdServizioApplicativo;
  99. import org.openspcoop2.core.config.CanaleConfigurazione;
  100. import org.openspcoop2.core.config.TracciamentoConfigurazione;
  101. import org.openspcoop2.core.config.ConfigurazioneTracciamentoPorta;
  102. import org.openspcoop2.core.config.Transazioni;
  103. import org.openspcoop2.core.config.CorsConfigurazioneHeaders;
  104. import org.openspcoop2.core.config.CanaliConfigurazione;
  105. import org.openspcoop2.core.config.CanaleConfigurazioneNodo;
  106. import org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaRichiesta;
  107. import org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaSoggetto;
  108. import org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaServizioApplicativo;
  109. import org.openspcoop2.core.config.PortaApplicativaServizioApplicativo;
  110. import org.openspcoop2.core.config.CorrelazioneApplicativaRispostaElemento;
  111. import org.openspcoop2.core.config.ConfigurazioneHandler;
  112. import org.openspcoop2.core.config.ConfigurazioneMessageHandlers;
  113. import org.openspcoop2.core.config.SystemProperties;
  114. import org.openspcoop2.core.config.CorrelazioneApplicativaElemento;
  115. import org.openspcoop2.core.config.TrasformazioneRegola;
  116. import org.openspcoop2.core.config.InoltroBusteNonRiscontrate;
  117. import org.openspcoop2.core.config.RouteGateway;
  118. import org.openspcoop2.core.config.Openspcoop2;
  119. import org.openspcoop2.core.config.Configurazione;
  120. import org.openspcoop2.core.config.CorsConfigurazioneOrigin;
  121. import org.openspcoop2.core.config.CorsConfigurazioneMethods;
  122. import org.openspcoop2.core.config.Scope;
  123. import org.openspcoop2.core.config.AccessoDatiConsegnaApplicativi;
  124. import org.openspcoop2.core.config.TipoFiltroAbilitazioneServizi;
  125. import org.openspcoop2.core.config.StatoServiziPddPortaApplicativa;
  126. import org.openspcoop2.core.config.MessaggiDiagnostici;
  127. import org.openspcoop2.core.config.OpenspcoopSorgenteDati;
  128. import org.openspcoop2.core.config.ConfigurazioneGeneraleHandler;
  129. import org.openspcoop2.core.config.ConfigurazioneServiceHandlers;
  130. import org.openspcoop2.core.config.ResponseCachingConfigurazioneControl;
  131. import org.openspcoop2.core.config.Credenziali;
  132. import org.openspcoop2.core.config.InvocazionePorta;
  133. import org.openspcoop2.core.config.InvocazionePortaGestioneErrore;
  134. import org.openspcoop2.core.config.AccessoDatiRichieste;
  135. import org.openspcoop2.core.config.Tracciamento;
  136. import org.openspcoop2.core.config.ConfigurazioneGestioneErrore;
  137. import org.openspcoop2.core.config.AccessoDatiAttributeAuthority;
  138. import org.openspcoop2.core.config.AccessoDatiAutorizzazione;
  139. import org.openspcoop2.core.config.PortaApplicativaServizio;
  140. import org.openspcoop2.core.config.PortaApplicativaAzione;
  141. import org.openspcoop2.core.config.PortaApplicativaBehaviour;
  142. import org.openspcoop2.core.config.RoutingTable;
  143. import org.openspcoop2.core.config.AccessoRegistro;
  144. import org.openspcoop2.core.config.AccessoDatiAutenticazione;
  145. import org.openspcoop2.core.config.ConfigurazioneMultitenant;
  146. import org.openspcoop2.core.config.ConfigurazioneUrlInvocazione;
  147. import org.openspcoop2.core.config.ValidazioneBuste;
  148. import org.openspcoop2.core.config.IndirizzoRisposta;
  149. import org.openspcoop2.core.config.Attachments;
  150. import org.openspcoop2.core.config.Risposte;
  151. import org.openspcoop2.core.config.Dump;
  152. import org.openspcoop2.core.config.IntegrationManager;
  153. import org.openspcoop2.core.config.StatoServiziPdd;
  154. import org.openspcoop2.core.config.ResponseCachingConfigurazioneGenerale;
  155. import org.openspcoop2.core.config.ResponseCachingConfigurazioneHashGenerator;
  156. import org.openspcoop2.core.config.MtomProcessorFlowParameter;
  157. import org.openspcoop2.core.config.RoutingTableDestinazione;
  158. import org.openspcoop2.core.config.InvocazioneServizio;
  159. import org.openspcoop2.core.config.ProtocolProperty;
  160. import org.openspcoop2.core.config.StatoServiziPddPortaDelegata;
  161. import org.openspcoop2.core.config.StatoServiziPddIntegrationManager;
  162. import org.openspcoop2.core.config.DumpConfigurazioneRegola;
  163. import org.openspcoop2.core.config.MessageSecurityFlow;

  164. import java.io.ByteArrayOutputStream;
  165. import java.io.FileOutputStream;
  166. import java.io.OutputStream;
  167. import java.io.File;
  168. import java.lang.reflect.Method;

  169. import javax.xml.bind.JAXBElement;

  170. /**    
  171.  * XML Serializer of beans
  172.  *
  173.  * @author Poli Andrea (poli@link.it)
  174.  * @author $Author$
  175.  * @version $Rev$, $Date$
  176.  */
  177. public abstract class AbstractSerializer {


  178.     protected abstract WriteToSerializerType getType();
  179.    
  180.     protected void _objToXml(OutputStream out, Class<?> c, Object object,
  181.             boolean prettyPrint) throws Exception {
  182.         if(object instanceof JAXBElement){
  183.             // solo per il tipo WriteToSerializerType.JAXB
  184.             JaxbUtils.objToXml(out, c, object, prettyPrint);
  185.         }else{
  186.             Method m = c.getMethod("writeTo", OutputStream.class, WriteToSerializerType.class);
  187.             m.invoke(object, out, this.getType());
  188.         }
  189.     }
  190.    
  191.     protected void objToXml(OutputStream out,Class<?> c,Object object,boolean prettyPrint) throws SerializerException{
  192.         try{
  193.             this._objToXml(out, c, object, prettyPrint);
  194.         }catch(Exception e){
  195.             throw new SerializerException(e.getMessage(), e);
  196.         }
  197.         finally{
  198.             try{
  199.                 out.flush();
  200.             }catch(Exception e){
  201.                 // ignore
  202.             }
  203.         }
  204.     }
  205.     protected void objToXml(String fileName,Class<?> c,Object object,boolean prettyPrint) throws SerializerException{
  206.         try{
  207.             this.objToXml(new File(fileName), c, object, prettyPrint);
  208.         }catch(Exception e){
  209.             throw new SerializerException(e.getMessage(), e);
  210.         }
  211.     }
  212.     protected void objToXml(File file,Class<?> c,Object object,boolean prettyPrint) throws SerializerException{
  213.         FileOutputStream fout = null;
  214.         try{
  215.             fout = new FileOutputStream(file);
  216.             this._objToXml(fout, c, object, prettyPrint);
  217.         }catch(Exception e){
  218.             throw new SerializerException(e.getMessage(), e);
  219.         }
  220.         finally{
  221.             try{
  222.                 if(fout!=null){
  223.                     fout.flush();
  224.                 }
  225.             }catch(Exception e){
  226.                 // ignore
  227.             }
  228.             try{
  229.                 if(fout!=null){
  230.                     fout.close();
  231.                 }
  232.             }catch(Exception e){
  233.                 // ignore
  234.             }
  235.         }
  236.     }
  237.     protected ByteArrayOutputStream objToXml(Class<?> c,Object object,boolean prettyPrint) throws SerializerException{
  238.         ByteArrayOutputStream bout = null;
  239.         try{
  240.             bout = new ByteArrayOutputStream();
  241.             this._objToXml(bout, c, object, prettyPrint);
  242.         }catch(Exception e){
  243.             throw new SerializerException(e.getMessage(), e);
  244.         }
  245.         finally{
  246.             try{
  247.                 if(bout!=null){
  248.                     bout.flush();
  249.                 }
  250.             }catch(Exception e){
  251.                 // ignore
  252.             }
  253.             try{
  254.                 if(bout!=null){
  255.                     bout.close();
  256.                 }
  257.             }catch(Exception e){
  258.                 // ignore
  259.             }
  260.         }
  261.         return bout;
  262.     }




  263.     /*
  264.      =================================================================================
  265.      Object: porta-applicativa-autorizzazione-soggetto
  266.      =================================================================================
  267.     */
  268.    
  269.     /**
  270.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativaAutorizzazioneSoggetto</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneSoggetto}
  271.      *
  272.      * @param fileName Xml file to serialize the object <var>portaApplicativaAutorizzazioneSoggetto</var>
  273.      * @param portaApplicativaAutorizzazioneSoggetto Object to be serialized in xml file <var>fileName</var>
  274.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  275.      */
  276.     public void write(String fileName,PortaApplicativaAutorizzazioneSoggetto portaApplicativaAutorizzazioneSoggetto) throws SerializerException {
  277.         this.objToXml(fileName, PortaApplicativaAutorizzazioneSoggetto.class, portaApplicativaAutorizzazioneSoggetto, false);
  278.     }
  279.     /**
  280.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativaAutorizzazioneSoggetto</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneSoggetto}
  281.      *
  282.      * @param fileName Xml file to serialize the object <var>portaApplicativaAutorizzazioneSoggetto</var>
  283.      * @param portaApplicativaAutorizzazioneSoggetto Object to be serialized in xml file <var>fileName</var>
  284.      * @param prettyPrint if true output the XML with indenting
  285.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  286.      */
  287.     public void write(String fileName,PortaApplicativaAutorizzazioneSoggetto portaApplicativaAutorizzazioneSoggetto,boolean prettyPrint) throws SerializerException {
  288.         this.objToXml(fileName, PortaApplicativaAutorizzazioneSoggetto.class, portaApplicativaAutorizzazioneSoggetto, prettyPrint);
  289.     }
  290.    
  291.     /**
  292.      * Serialize to file system in <var>file</var> the object <var>portaApplicativaAutorizzazioneSoggetto</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneSoggetto}
  293.      *
  294.      * @param file Xml file to serialize the object <var>portaApplicativaAutorizzazioneSoggetto</var>
  295.      * @param portaApplicativaAutorizzazioneSoggetto Object to be serialized in xml file <var>fileName</var>
  296.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  297.      */
  298.     public void write(File file,PortaApplicativaAutorizzazioneSoggetto portaApplicativaAutorizzazioneSoggetto) throws SerializerException {
  299.         this.objToXml(file, PortaApplicativaAutorizzazioneSoggetto.class, portaApplicativaAutorizzazioneSoggetto, false);
  300.     }
  301.     /**
  302.      * Serialize to file system in <var>file</var> the object <var>portaApplicativaAutorizzazioneSoggetto</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneSoggetto}
  303.      *
  304.      * @param file Xml file to serialize the object <var>portaApplicativaAutorizzazioneSoggetto</var>
  305.      * @param portaApplicativaAutorizzazioneSoggetto Object to be serialized in xml file <var>fileName</var>
  306.      * @param prettyPrint if true output the XML with indenting
  307.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  308.      */
  309.     public void write(File file,PortaApplicativaAutorizzazioneSoggetto portaApplicativaAutorizzazioneSoggetto,boolean prettyPrint) throws SerializerException {
  310.         this.objToXml(file, PortaApplicativaAutorizzazioneSoggetto.class, portaApplicativaAutorizzazioneSoggetto, prettyPrint);
  311.     }
  312.    
  313.     /**
  314.      * Serialize to output stream <var>out</var> the object <var>portaApplicativaAutorizzazioneSoggetto</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneSoggetto}
  315.      *
  316.      * @param out OutputStream to serialize the object <var>portaApplicativaAutorizzazioneSoggetto</var>
  317.      * @param portaApplicativaAutorizzazioneSoggetto Object to be serialized in xml file <var>fileName</var>
  318.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  319.      */
  320.     public void write(OutputStream out,PortaApplicativaAutorizzazioneSoggetto portaApplicativaAutorizzazioneSoggetto) throws SerializerException {
  321.         this.objToXml(out, PortaApplicativaAutorizzazioneSoggetto.class, portaApplicativaAutorizzazioneSoggetto, false);
  322.     }
  323.     /**
  324.      * Serialize to output stream <var>out</var> the object <var>portaApplicativaAutorizzazioneSoggetto</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneSoggetto}
  325.      *
  326.      * @param out OutputStream to serialize the object <var>portaApplicativaAutorizzazioneSoggetto</var>
  327.      * @param portaApplicativaAutorizzazioneSoggetto Object to be serialized in xml file <var>fileName</var>
  328.      * @param prettyPrint if true output the XML with indenting
  329.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  330.      */
  331.     public void write(OutputStream out,PortaApplicativaAutorizzazioneSoggetto portaApplicativaAutorizzazioneSoggetto,boolean prettyPrint) throws SerializerException {
  332.         this.objToXml(out, PortaApplicativaAutorizzazioneSoggetto.class, portaApplicativaAutorizzazioneSoggetto, prettyPrint);
  333.     }
  334.            
  335.     /**
  336.      * Serialize to byte array the object <var>portaApplicativaAutorizzazioneSoggetto</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneSoggetto}
  337.      *
  338.      * @param portaApplicativaAutorizzazioneSoggetto Object to be serialized
  339.      * @return Object to be serialized in byte array
  340.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  341.      */
  342.     public byte[] toByteArray(PortaApplicativaAutorizzazioneSoggetto portaApplicativaAutorizzazioneSoggetto) throws SerializerException {
  343.         return this.objToXml(PortaApplicativaAutorizzazioneSoggetto.class, portaApplicativaAutorizzazioneSoggetto, false).toByteArray();
  344.     }
  345.     /**
  346.      * Serialize to byte array the object <var>portaApplicativaAutorizzazioneSoggetto</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneSoggetto}
  347.      *
  348.      * @param portaApplicativaAutorizzazioneSoggetto Object to be serialized
  349.      * @param prettyPrint if true output the XML with indenting
  350.      * @return Object to be serialized in byte array
  351.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  352.      */
  353.     public byte[] toByteArray(PortaApplicativaAutorizzazioneSoggetto portaApplicativaAutorizzazioneSoggetto,boolean prettyPrint) throws SerializerException {
  354.         return this.objToXml(PortaApplicativaAutorizzazioneSoggetto.class, portaApplicativaAutorizzazioneSoggetto, prettyPrint).toByteArray();
  355.     }
  356.    
  357.     /**
  358.      * Serialize to String the object <var>portaApplicativaAutorizzazioneSoggetto</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneSoggetto}
  359.      *
  360.      * @param portaApplicativaAutorizzazioneSoggetto Object to be serialized
  361.      * @return Object to be serialized as String
  362.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  363.      */
  364.     public String toString(PortaApplicativaAutorizzazioneSoggetto portaApplicativaAutorizzazioneSoggetto) throws SerializerException {
  365.         return this.objToXml(PortaApplicativaAutorizzazioneSoggetto.class, portaApplicativaAutorizzazioneSoggetto, false).toString();
  366.     }
  367.     /**
  368.      * Serialize to String the object <var>portaApplicativaAutorizzazioneSoggetto</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneSoggetto}
  369.      *
  370.      * @param portaApplicativaAutorizzazioneSoggetto Object to be serialized
  371.      * @param prettyPrint if true output the XML with indenting
  372.      * @return Object to be serialized as String
  373.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  374.      */
  375.     public String toString(PortaApplicativaAutorizzazioneSoggetto portaApplicativaAutorizzazioneSoggetto,boolean prettyPrint) throws SerializerException {
  376.         return this.objToXml(PortaApplicativaAutorizzazioneSoggetto.class, portaApplicativaAutorizzazioneSoggetto, prettyPrint).toString();
  377.     }
  378.    
  379.    
  380.    
  381.     /*
  382.      =================================================================================
  383.      Object: ruolo
  384.      =================================================================================
  385.     */
  386.    
  387.     /**
  388.      * Serialize to file system in <var>fileName</var> the object <var>ruolo</var> of type {@link org.openspcoop2.core.config.Ruolo}
  389.      *
  390.      * @param fileName Xml file to serialize the object <var>ruolo</var>
  391.      * @param ruolo Object to be serialized in xml file <var>fileName</var>
  392.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  393.      */
  394.     public void write(String fileName,Ruolo ruolo) throws SerializerException {
  395.         this.objToXml(fileName, Ruolo.class, ruolo, false);
  396.     }
  397.     /**
  398.      * Serialize to file system in <var>fileName</var> the object <var>ruolo</var> of type {@link org.openspcoop2.core.config.Ruolo}
  399.      *
  400.      * @param fileName Xml file to serialize the object <var>ruolo</var>
  401.      * @param ruolo Object to be serialized in xml file <var>fileName</var>
  402.      * @param prettyPrint if true output the XML with indenting
  403.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  404.      */
  405.     public void write(String fileName,Ruolo ruolo,boolean prettyPrint) throws SerializerException {
  406.         this.objToXml(fileName, Ruolo.class, ruolo, prettyPrint);
  407.     }
  408.    
  409.     /**
  410.      * Serialize to file system in <var>file</var> the object <var>ruolo</var> of type {@link org.openspcoop2.core.config.Ruolo}
  411.      *
  412.      * @param file Xml file to serialize the object <var>ruolo</var>
  413.      * @param ruolo Object to be serialized in xml file <var>fileName</var>
  414.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  415.      */
  416.     public void write(File file,Ruolo ruolo) throws SerializerException {
  417.         this.objToXml(file, Ruolo.class, ruolo, false);
  418.     }
  419.     /**
  420.      * Serialize to file system in <var>file</var> the object <var>ruolo</var> of type {@link org.openspcoop2.core.config.Ruolo}
  421.      *
  422.      * @param file Xml file to serialize the object <var>ruolo</var>
  423.      * @param ruolo Object to be serialized in xml file <var>fileName</var>
  424.      * @param prettyPrint if true output the XML with indenting
  425.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  426.      */
  427.     public void write(File file,Ruolo ruolo,boolean prettyPrint) throws SerializerException {
  428.         this.objToXml(file, Ruolo.class, ruolo, prettyPrint);
  429.     }
  430.    
  431.     /**
  432.      * Serialize to output stream <var>out</var> the object <var>ruolo</var> of type {@link org.openspcoop2.core.config.Ruolo}
  433.      *
  434.      * @param out OutputStream to serialize the object <var>ruolo</var>
  435.      * @param ruolo Object to be serialized in xml file <var>fileName</var>
  436.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  437.      */
  438.     public void write(OutputStream out,Ruolo ruolo) throws SerializerException {
  439.         this.objToXml(out, Ruolo.class, ruolo, false);
  440.     }
  441.     /**
  442.      * Serialize to output stream <var>out</var> the object <var>ruolo</var> of type {@link org.openspcoop2.core.config.Ruolo}
  443.      *
  444.      * @param out OutputStream to serialize the object <var>ruolo</var>
  445.      * @param ruolo Object to be serialized in xml file <var>fileName</var>
  446.      * @param prettyPrint if true output the XML with indenting
  447.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  448.      */
  449.     public void write(OutputStream out,Ruolo ruolo,boolean prettyPrint) throws SerializerException {
  450.         this.objToXml(out, Ruolo.class, ruolo, prettyPrint);
  451.     }
  452.            
  453.     /**
  454.      * Serialize to byte array the object <var>ruolo</var> of type {@link org.openspcoop2.core.config.Ruolo}
  455.      *
  456.      * @param ruolo Object to be serialized
  457.      * @return Object to be serialized in byte array
  458.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  459.      */
  460.     public byte[] toByteArray(Ruolo ruolo) throws SerializerException {
  461.         return this.objToXml(Ruolo.class, ruolo, false).toByteArray();
  462.     }
  463.     /**
  464.      * Serialize to byte array the object <var>ruolo</var> of type {@link org.openspcoop2.core.config.Ruolo}
  465.      *
  466.      * @param ruolo Object to be serialized
  467.      * @param prettyPrint if true output the XML with indenting
  468.      * @return Object to be serialized in byte array
  469.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  470.      */
  471.     public byte[] toByteArray(Ruolo ruolo,boolean prettyPrint) throws SerializerException {
  472.         return this.objToXml(Ruolo.class, ruolo, prettyPrint).toByteArray();
  473.     }
  474.    
  475.     /**
  476.      * Serialize to String the object <var>ruolo</var> of type {@link org.openspcoop2.core.config.Ruolo}
  477.      *
  478.      * @param ruolo Object to be serialized
  479.      * @return Object to be serialized as String
  480.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  481.      */
  482.     public String toString(Ruolo ruolo) throws SerializerException {
  483.         return this.objToXml(Ruolo.class, ruolo, false).toString();
  484.     }
  485.     /**
  486.      * Serialize to String the object <var>ruolo</var> of type {@link org.openspcoop2.core.config.Ruolo}
  487.      *
  488.      * @param ruolo Object to be serialized
  489.      * @param prettyPrint if true output the XML with indenting
  490.      * @return Object to be serialized as String
  491.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  492.      */
  493.     public String toString(Ruolo ruolo,boolean prettyPrint) throws SerializerException {
  494.         return this.objToXml(Ruolo.class, ruolo, prettyPrint).toString();
  495.     }
  496.    
  497.    
  498.    
  499.     /*
  500.      =================================================================================
  501.      Object: trasformazione-soap-risposta
  502.      =================================================================================
  503.     */
  504.    
  505.     /**
  506.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioneSoapRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneSoapRisposta}
  507.      *
  508.      * @param fileName Xml file to serialize the object <var>trasformazioneSoapRisposta</var>
  509.      * @param trasformazioneSoapRisposta Object to be serialized in xml file <var>fileName</var>
  510.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  511.      */
  512.     public void write(String fileName,TrasformazioneSoapRisposta trasformazioneSoapRisposta) throws SerializerException {
  513.         this.objToXml(fileName, TrasformazioneSoapRisposta.class, trasformazioneSoapRisposta, false);
  514.     }
  515.     /**
  516.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioneSoapRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneSoapRisposta}
  517.      *
  518.      * @param fileName Xml file to serialize the object <var>trasformazioneSoapRisposta</var>
  519.      * @param trasformazioneSoapRisposta Object to be serialized in xml file <var>fileName</var>
  520.      * @param prettyPrint if true output the XML with indenting
  521.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  522.      */
  523.     public void write(String fileName,TrasformazioneSoapRisposta trasformazioneSoapRisposta,boolean prettyPrint) throws SerializerException {
  524.         this.objToXml(fileName, TrasformazioneSoapRisposta.class, trasformazioneSoapRisposta, prettyPrint);
  525.     }
  526.    
  527.     /**
  528.      * Serialize to file system in <var>file</var> the object <var>trasformazioneSoapRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneSoapRisposta}
  529.      *
  530.      * @param file Xml file to serialize the object <var>trasformazioneSoapRisposta</var>
  531.      * @param trasformazioneSoapRisposta Object to be serialized in xml file <var>fileName</var>
  532.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  533.      */
  534.     public void write(File file,TrasformazioneSoapRisposta trasformazioneSoapRisposta) throws SerializerException {
  535.         this.objToXml(file, TrasformazioneSoapRisposta.class, trasformazioneSoapRisposta, false);
  536.     }
  537.     /**
  538.      * Serialize to file system in <var>file</var> the object <var>trasformazioneSoapRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneSoapRisposta}
  539.      *
  540.      * @param file Xml file to serialize the object <var>trasformazioneSoapRisposta</var>
  541.      * @param trasformazioneSoapRisposta Object to be serialized in xml file <var>fileName</var>
  542.      * @param prettyPrint if true output the XML with indenting
  543.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  544.      */
  545.     public void write(File file,TrasformazioneSoapRisposta trasformazioneSoapRisposta,boolean prettyPrint) throws SerializerException {
  546.         this.objToXml(file, TrasformazioneSoapRisposta.class, trasformazioneSoapRisposta, prettyPrint);
  547.     }
  548.    
  549.     /**
  550.      * Serialize to output stream <var>out</var> the object <var>trasformazioneSoapRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneSoapRisposta}
  551.      *
  552.      * @param out OutputStream to serialize the object <var>trasformazioneSoapRisposta</var>
  553.      * @param trasformazioneSoapRisposta Object to be serialized in xml file <var>fileName</var>
  554.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  555.      */
  556.     public void write(OutputStream out,TrasformazioneSoapRisposta trasformazioneSoapRisposta) throws SerializerException {
  557.         this.objToXml(out, TrasformazioneSoapRisposta.class, trasformazioneSoapRisposta, false);
  558.     }
  559.     /**
  560.      * Serialize to output stream <var>out</var> the object <var>trasformazioneSoapRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneSoapRisposta}
  561.      *
  562.      * @param out OutputStream to serialize the object <var>trasformazioneSoapRisposta</var>
  563.      * @param trasformazioneSoapRisposta Object to be serialized in xml file <var>fileName</var>
  564.      * @param prettyPrint if true output the XML with indenting
  565.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  566.      */
  567.     public void write(OutputStream out,TrasformazioneSoapRisposta trasformazioneSoapRisposta,boolean prettyPrint) throws SerializerException {
  568.         this.objToXml(out, TrasformazioneSoapRisposta.class, trasformazioneSoapRisposta, prettyPrint);
  569.     }
  570.            
  571.     /**
  572.      * Serialize to byte array the object <var>trasformazioneSoapRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneSoapRisposta}
  573.      *
  574.      * @param trasformazioneSoapRisposta Object to be serialized
  575.      * @return Object to be serialized in byte array
  576.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  577.      */
  578.     public byte[] toByteArray(TrasformazioneSoapRisposta trasformazioneSoapRisposta) throws SerializerException {
  579.         return this.objToXml(TrasformazioneSoapRisposta.class, trasformazioneSoapRisposta, false).toByteArray();
  580.     }
  581.     /**
  582.      * Serialize to byte array the object <var>trasformazioneSoapRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneSoapRisposta}
  583.      *
  584.      * @param trasformazioneSoapRisposta Object to be serialized
  585.      * @param prettyPrint if true output the XML with indenting
  586.      * @return Object to be serialized in byte array
  587.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  588.      */
  589.     public byte[] toByteArray(TrasformazioneSoapRisposta trasformazioneSoapRisposta,boolean prettyPrint) throws SerializerException {
  590.         return this.objToXml(TrasformazioneSoapRisposta.class, trasformazioneSoapRisposta, prettyPrint).toByteArray();
  591.     }
  592.    
  593.     /**
  594.      * Serialize to String the object <var>trasformazioneSoapRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneSoapRisposta}
  595.      *
  596.      * @param trasformazioneSoapRisposta Object to be serialized
  597.      * @return Object to be serialized as String
  598.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  599.      */
  600.     public String toString(TrasformazioneSoapRisposta trasformazioneSoapRisposta) throws SerializerException {
  601.         return this.objToXml(TrasformazioneSoapRisposta.class, trasformazioneSoapRisposta, false).toString();
  602.     }
  603.     /**
  604.      * Serialize to String the object <var>trasformazioneSoapRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneSoapRisposta}
  605.      *
  606.      * @param trasformazioneSoapRisposta Object to be serialized
  607.      * @param prettyPrint if true output the XML with indenting
  608.      * @return Object to be serialized as String
  609.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  610.      */
  611.     public String toString(TrasformazioneSoapRisposta trasformazioneSoapRisposta,boolean prettyPrint) throws SerializerException {
  612.         return this.objToXml(TrasformazioneSoapRisposta.class, trasformazioneSoapRisposta, prettyPrint).toString();
  613.     }
  614.    
  615.    
  616.    
  617.     /*
  618.      =================================================================================
  619.      Object: porta-applicativa-autorizzazione-servizio-applicativo
  620.      =================================================================================
  621.     */
  622.    
  623.     /**
  624.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativaAutorizzazioneServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneServizioApplicativo}
  625.      *
  626.      * @param fileName Xml file to serialize the object <var>portaApplicativaAutorizzazioneServizioApplicativo</var>
  627.      * @param portaApplicativaAutorizzazioneServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  628.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  629.      */
  630.     public void write(String fileName,PortaApplicativaAutorizzazioneServizioApplicativo portaApplicativaAutorizzazioneServizioApplicativo) throws SerializerException {
  631.         this.objToXml(fileName, PortaApplicativaAutorizzazioneServizioApplicativo.class, portaApplicativaAutorizzazioneServizioApplicativo, false);
  632.     }
  633.     /**
  634.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativaAutorizzazioneServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneServizioApplicativo}
  635.      *
  636.      * @param fileName Xml file to serialize the object <var>portaApplicativaAutorizzazioneServizioApplicativo</var>
  637.      * @param portaApplicativaAutorizzazioneServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  638.      * @param prettyPrint if true output the XML with indenting
  639.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  640.      */
  641.     public void write(String fileName,PortaApplicativaAutorizzazioneServizioApplicativo portaApplicativaAutorizzazioneServizioApplicativo,boolean prettyPrint) throws SerializerException {
  642.         this.objToXml(fileName, PortaApplicativaAutorizzazioneServizioApplicativo.class, portaApplicativaAutorizzazioneServizioApplicativo, prettyPrint);
  643.     }
  644.    
  645.     /**
  646.      * Serialize to file system in <var>file</var> the object <var>portaApplicativaAutorizzazioneServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneServizioApplicativo}
  647.      *
  648.      * @param file Xml file to serialize the object <var>portaApplicativaAutorizzazioneServizioApplicativo</var>
  649.      * @param portaApplicativaAutorizzazioneServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  650.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  651.      */
  652.     public void write(File file,PortaApplicativaAutorizzazioneServizioApplicativo portaApplicativaAutorizzazioneServizioApplicativo) throws SerializerException {
  653.         this.objToXml(file, PortaApplicativaAutorizzazioneServizioApplicativo.class, portaApplicativaAutorizzazioneServizioApplicativo, false);
  654.     }
  655.     /**
  656.      * Serialize to file system in <var>file</var> the object <var>portaApplicativaAutorizzazioneServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneServizioApplicativo}
  657.      *
  658.      * @param file Xml file to serialize the object <var>portaApplicativaAutorizzazioneServizioApplicativo</var>
  659.      * @param portaApplicativaAutorizzazioneServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  660.      * @param prettyPrint if true output the XML with indenting
  661.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  662.      */
  663.     public void write(File file,PortaApplicativaAutorizzazioneServizioApplicativo portaApplicativaAutorizzazioneServizioApplicativo,boolean prettyPrint) throws SerializerException {
  664.         this.objToXml(file, PortaApplicativaAutorizzazioneServizioApplicativo.class, portaApplicativaAutorizzazioneServizioApplicativo, prettyPrint);
  665.     }
  666.    
  667.     /**
  668.      * Serialize to output stream <var>out</var> the object <var>portaApplicativaAutorizzazioneServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneServizioApplicativo}
  669.      *
  670.      * @param out OutputStream to serialize the object <var>portaApplicativaAutorizzazioneServizioApplicativo</var>
  671.      * @param portaApplicativaAutorizzazioneServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  672.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  673.      */
  674.     public void write(OutputStream out,PortaApplicativaAutorizzazioneServizioApplicativo portaApplicativaAutorizzazioneServizioApplicativo) throws SerializerException {
  675.         this.objToXml(out, PortaApplicativaAutorizzazioneServizioApplicativo.class, portaApplicativaAutorizzazioneServizioApplicativo, false);
  676.     }
  677.     /**
  678.      * Serialize to output stream <var>out</var> the object <var>portaApplicativaAutorizzazioneServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneServizioApplicativo}
  679.      *
  680.      * @param out OutputStream to serialize the object <var>portaApplicativaAutorizzazioneServizioApplicativo</var>
  681.      * @param portaApplicativaAutorizzazioneServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  682.      * @param prettyPrint if true output the XML with indenting
  683.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  684.      */
  685.     public void write(OutputStream out,PortaApplicativaAutorizzazioneServizioApplicativo portaApplicativaAutorizzazioneServizioApplicativo,boolean prettyPrint) throws SerializerException {
  686.         this.objToXml(out, PortaApplicativaAutorizzazioneServizioApplicativo.class, portaApplicativaAutorizzazioneServizioApplicativo, prettyPrint);
  687.     }
  688.            
  689.     /**
  690.      * Serialize to byte array the object <var>portaApplicativaAutorizzazioneServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneServizioApplicativo}
  691.      *
  692.      * @param portaApplicativaAutorizzazioneServizioApplicativo Object to be serialized
  693.      * @return Object to be serialized in byte array
  694.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  695.      */
  696.     public byte[] toByteArray(PortaApplicativaAutorizzazioneServizioApplicativo portaApplicativaAutorizzazioneServizioApplicativo) throws SerializerException {
  697.         return this.objToXml(PortaApplicativaAutorizzazioneServizioApplicativo.class, portaApplicativaAutorizzazioneServizioApplicativo, false).toByteArray();
  698.     }
  699.     /**
  700.      * Serialize to byte array the object <var>portaApplicativaAutorizzazioneServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneServizioApplicativo}
  701.      *
  702.      * @param portaApplicativaAutorizzazioneServizioApplicativo Object to be serialized
  703.      * @param prettyPrint if true output the XML with indenting
  704.      * @return Object to be serialized in byte array
  705.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  706.      */
  707.     public byte[] toByteArray(PortaApplicativaAutorizzazioneServizioApplicativo portaApplicativaAutorizzazioneServizioApplicativo,boolean prettyPrint) throws SerializerException {
  708.         return this.objToXml(PortaApplicativaAutorizzazioneServizioApplicativo.class, portaApplicativaAutorizzazioneServizioApplicativo, prettyPrint).toByteArray();
  709.     }
  710.    
  711.     /**
  712.      * Serialize to String the object <var>portaApplicativaAutorizzazioneServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneServizioApplicativo}
  713.      *
  714.      * @param portaApplicativaAutorizzazioneServizioApplicativo Object to be serialized
  715.      * @return Object to be serialized as String
  716.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  717.      */
  718.     public String toString(PortaApplicativaAutorizzazioneServizioApplicativo portaApplicativaAutorizzazioneServizioApplicativo) throws SerializerException {
  719.         return this.objToXml(PortaApplicativaAutorizzazioneServizioApplicativo.class, portaApplicativaAutorizzazioneServizioApplicativo, false).toString();
  720.     }
  721.     /**
  722.      * Serialize to String the object <var>portaApplicativaAutorizzazioneServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneServizioApplicativo}
  723.      *
  724.      * @param portaApplicativaAutorizzazioneServizioApplicativo Object to be serialized
  725.      * @param prettyPrint if true output the XML with indenting
  726.      * @return Object to be serialized as String
  727.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  728.      */
  729.     public String toString(PortaApplicativaAutorizzazioneServizioApplicativo portaApplicativaAutorizzazioneServizioApplicativo,boolean prettyPrint) throws SerializerException {
  730.         return this.objToXml(PortaApplicativaAutorizzazioneServizioApplicativo.class, portaApplicativaAutorizzazioneServizioApplicativo, prettyPrint).toString();
  731.     }
  732.    
  733.    
  734.    
  735.     /*
  736.      =================================================================================
  737.      Object: porta-applicativa-autorizzazione-soggetti
  738.      =================================================================================
  739.     */
  740.    
  741.     /**
  742.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativaAutorizzazioneSoggetti</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneSoggetti}
  743.      *
  744.      * @param fileName Xml file to serialize the object <var>portaApplicativaAutorizzazioneSoggetti</var>
  745.      * @param portaApplicativaAutorizzazioneSoggetti Object to be serialized in xml file <var>fileName</var>
  746.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  747.      */
  748.     public void write(String fileName,PortaApplicativaAutorizzazioneSoggetti portaApplicativaAutorizzazioneSoggetti) throws SerializerException {
  749.         this.objToXml(fileName, PortaApplicativaAutorizzazioneSoggetti.class, portaApplicativaAutorizzazioneSoggetti, false);
  750.     }
  751.     /**
  752.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativaAutorizzazioneSoggetti</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneSoggetti}
  753.      *
  754.      * @param fileName Xml file to serialize the object <var>portaApplicativaAutorizzazioneSoggetti</var>
  755.      * @param portaApplicativaAutorizzazioneSoggetti Object to be serialized in xml file <var>fileName</var>
  756.      * @param prettyPrint if true output the XML with indenting
  757.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  758.      */
  759.     public void write(String fileName,PortaApplicativaAutorizzazioneSoggetti portaApplicativaAutorizzazioneSoggetti,boolean prettyPrint) throws SerializerException {
  760.         this.objToXml(fileName, PortaApplicativaAutorizzazioneSoggetti.class, portaApplicativaAutorizzazioneSoggetti, prettyPrint);
  761.     }
  762.    
  763.     /**
  764.      * Serialize to file system in <var>file</var> the object <var>portaApplicativaAutorizzazioneSoggetti</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneSoggetti}
  765.      *
  766.      * @param file Xml file to serialize the object <var>portaApplicativaAutorizzazioneSoggetti</var>
  767.      * @param portaApplicativaAutorizzazioneSoggetti Object to be serialized in xml file <var>fileName</var>
  768.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  769.      */
  770.     public void write(File file,PortaApplicativaAutorizzazioneSoggetti portaApplicativaAutorizzazioneSoggetti) throws SerializerException {
  771.         this.objToXml(file, PortaApplicativaAutorizzazioneSoggetti.class, portaApplicativaAutorizzazioneSoggetti, false);
  772.     }
  773.     /**
  774.      * Serialize to file system in <var>file</var> the object <var>portaApplicativaAutorizzazioneSoggetti</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneSoggetti}
  775.      *
  776.      * @param file Xml file to serialize the object <var>portaApplicativaAutorizzazioneSoggetti</var>
  777.      * @param portaApplicativaAutorizzazioneSoggetti Object to be serialized in xml file <var>fileName</var>
  778.      * @param prettyPrint if true output the XML with indenting
  779.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  780.      */
  781.     public void write(File file,PortaApplicativaAutorizzazioneSoggetti portaApplicativaAutorizzazioneSoggetti,boolean prettyPrint) throws SerializerException {
  782.         this.objToXml(file, PortaApplicativaAutorizzazioneSoggetti.class, portaApplicativaAutorizzazioneSoggetti, prettyPrint);
  783.     }
  784.    
  785.     /**
  786.      * Serialize to output stream <var>out</var> the object <var>portaApplicativaAutorizzazioneSoggetti</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneSoggetti}
  787.      *
  788.      * @param out OutputStream to serialize the object <var>portaApplicativaAutorizzazioneSoggetti</var>
  789.      * @param portaApplicativaAutorizzazioneSoggetti Object to be serialized in xml file <var>fileName</var>
  790.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  791.      */
  792.     public void write(OutputStream out,PortaApplicativaAutorizzazioneSoggetti portaApplicativaAutorizzazioneSoggetti) throws SerializerException {
  793.         this.objToXml(out, PortaApplicativaAutorizzazioneSoggetti.class, portaApplicativaAutorizzazioneSoggetti, false);
  794.     }
  795.     /**
  796.      * Serialize to output stream <var>out</var> the object <var>portaApplicativaAutorizzazioneSoggetti</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneSoggetti}
  797.      *
  798.      * @param out OutputStream to serialize the object <var>portaApplicativaAutorizzazioneSoggetti</var>
  799.      * @param portaApplicativaAutorizzazioneSoggetti Object to be serialized in xml file <var>fileName</var>
  800.      * @param prettyPrint if true output the XML with indenting
  801.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  802.      */
  803.     public void write(OutputStream out,PortaApplicativaAutorizzazioneSoggetti portaApplicativaAutorizzazioneSoggetti,boolean prettyPrint) throws SerializerException {
  804.         this.objToXml(out, PortaApplicativaAutorizzazioneSoggetti.class, portaApplicativaAutorizzazioneSoggetti, prettyPrint);
  805.     }
  806.            
  807.     /**
  808.      * Serialize to byte array the object <var>portaApplicativaAutorizzazioneSoggetti</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneSoggetti}
  809.      *
  810.      * @param portaApplicativaAutorizzazioneSoggetti Object to be serialized
  811.      * @return Object to be serialized in byte array
  812.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  813.      */
  814.     public byte[] toByteArray(PortaApplicativaAutorizzazioneSoggetti portaApplicativaAutorizzazioneSoggetti) throws SerializerException {
  815.         return this.objToXml(PortaApplicativaAutorizzazioneSoggetti.class, portaApplicativaAutorizzazioneSoggetti, false).toByteArray();
  816.     }
  817.     /**
  818.      * Serialize to byte array the object <var>portaApplicativaAutorizzazioneSoggetti</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneSoggetti}
  819.      *
  820.      * @param portaApplicativaAutorizzazioneSoggetti Object to be serialized
  821.      * @param prettyPrint if true output the XML with indenting
  822.      * @return Object to be serialized in byte array
  823.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  824.      */
  825.     public byte[] toByteArray(PortaApplicativaAutorizzazioneSoggetti portaApplicativaAutorizzazioneSoggetti,boolean prettyPrint) throws SerializerException {
  826.         return this.objToXml(PortaApplicativaAutorizzazioneSoggetti.class, portaApplicativaAutorizzazioneSoggetti, prettyPrint).toByteArray();
  827.     }
  828.    
  829.     /**
  830.      * Serialize to String the object <var>portaApplicativaAutorizzazioneSoggetti</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneSoggetti}
  831.      *
  832.      * @param portaApplicativaAutorizzazioneSoggetti Object to be serialized
  833.      * @return Object to be serialized as String
  834.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  835.      */
  836.     public String toString(PortaApplicativaAutorizzazioneSoggetti portaApplicativaAutorizzazioneSoggetti) throws SerializerException {
  837.         return this.objToXml(PortaApplicativaAutorizzazioneSoggetti.class, portaApplicativaAutorizzazioneSoggetti, false).toString();
  838.     }
  839.     /**
  840.      * Serialize to String the object <var>portaApplicativaAutorizzazioneSoggetti</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneSoggetti}
  841.      *
  842.      * @param portaApplicativaAutorizzazioneSoggetti Object to be serialized
  843.      * @param prettyPrint if true output the XML with indenting
  844.      * @return Object to be serialized as String
  845.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  846.      */
  847.     public String toString(PortaApplicativaAutorizzazioneSoggetti portaApplicativaAutorizzazioneSoggetti,boolean prettyPrint) throws SerializerException {
  848.         return this.objToXml(PortaApplicativaAutorizzazioneSoggetti.class, portaApplicativaAutorizzazioneSoggetti, prettyPrint).toString();
  849.     }
  850.    
  851.    
  852.    
  853.     /*
  854.      =================================================================================
  855.      Object: porta-applicativa-autorizzazione-servizi-applicativi
  856.      =================================================================================
  857.     */
  858.    
  859.     /**
  860.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativaAutorizzazioneServiziApplicativi</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneServiziApplicativi}
  861.      *
  862.      * @param fileName Xml file to serialize the object <var>portaApplicativaAutorizzazioneServiziApplicativi</var>
  863.      * @param portaApplicativaAutorizzazioneServiziApplicativi Object to be serialized in xml file <var>fileName</var>
  864.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  865.      */
  866.     public void write(String fileName,PortaApplicativaAutorizzazioneServiziApplicativi portaApplicativaAutorizzazioneServiziApplicativi) throws SerializerException {
  867.         this.objToXml(fileName, PortaApplicativaAutorizzazioneServiziApplicativi.class, portaApplicativaAutorizzazioneServiziApplicativi, false);
  868.     }
  869.     /**
  870.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativaAutorizzazioneServiziApplicativi</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneServiziApplicativi}
  871.      *
  872.      * @param fileName Xml file to serialize the object <var>portaApplicativaAutorizzazioneServiziApplicativi</var>
  873.      * @param portaApplicativaAutorizzazioneServiziApplicativi Object to be serialized in xml file <var>fileName</var>
  874.      * @param prettyPrint if true output the XML with indenting
  875.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  876.      */
  877.     public void write(String fileName,PortaApplicativaAutorizzazioneServiziApplicativi portaApplicativaAutorizzazioneServiziApplicativi,boolean prettyPrint) throws SerializerException {
  878.         this.objToXml(fileName, PortaApplicativaAutorizzazioneServiziApplicativi.class, portaApplicativaAutorizzazioneServiziApplicativi, prettyPrint);
  879.     }
  880.    
  881.     /**
  882.      * Serialize to file system in <var>file</var> the object <var>portaApplicativaAutorizzazioneServiziApplicativi</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneServiziApplicativi}
  883.      *
  884.      * @param file Xml file to serialize the object <var>portaApplicativaAutorizzazioneServiziApplicativi</var>
  885.      * @param portaApplicativaAutorizzazioneServiziApplicativi Object to be serialized in xml file <var>fileName</var>
  886.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  887.      */
  888.     public void write(File file,PortaApplicativaAutorizzazioneServiziApplicativi portaApplicativaAutorizzazioneServiziApplicativi) throws SerializerException {
  889.         this.objToXml(file, PortaApplicativaAutorizzazioneServiziApplicativi.class, portaApplicativaAutorizzazioneServiziApplicativi, false);
  890.     }
  891.     /**
  892.      * Serialize to file system in <var>file</var> the object <var>portaApplicativaAutorizzazioneServiziApplicativi</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneServiziApplicativi}
  893.      *
  894.      * @param file Xml file to serialize the object <var>portaApplicativaAutorizzazioneServiziApplicativi</var>
  895.      * @param portaApplicativaAutorizzazioneServiziApplicativi Object to be serialized in xml file <var>fileName</var>
  896.      * @param prettyPrint if true output the XML with indenting
  897.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  898.      */
  899.     public void write(File file,PortaApplicativaAutorizzazioneServiziApplicativi portaApplicativaAutorizzazioneServiziApplicativi,boolean prettyPrint) throws SerializerException {
  900.         this.objToXml(file, PortaApplicativaAutorizzazioneServiziApplicativi.class, portaApplicativaAutorizzazioneServiziApplicativi, prettyPrint);
  901.     }
  902.    
  903.     /**
  904.      * Serialize to output stream <var>out</var> the object <var>portaApplicativaAutorizzazioneServiziApplicativi</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneServiziApplicativi}
  905.      *
  906.      * @param out OutputStream to serialize the object <var>portaApplicativaAutorizzazioneServiziApplicativi</var>
  907.      * @param portaApplicativaAutorizzazioneServiziApplicativi Object to be serialized in xml file <var>fileName</var>
  908.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  909.      */
  910.     public void write(OutputStream out,PortaApplicativaAutorizzazioneServiziApplicativi portaApplicativaAutorizzazioneServiziApplicativi) throws SerializerException {
  911.         this.objToXml(out, PortaApplicativaAutorizzazioneServiziApplicativi.class, portaApplicativaAutorizzazioneServiziApplicativi, false);
  912.     }
  913.     /**
  914.      * Serialize to output stream <var>out</var> the object <var>portaApplicativaAutorizzazioneServiziApplicativi</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneServiziApplicativi}
  915.      *
  916.      * @param out OutputStream to serialize the object <var>portaApplicativaAutorizzazioneServiziApplicativi</var>
  917.      * @param portaApplicativaAutorizzazioneServiziApplicativi Object to be serialized in xml file <var>fileName</var>
  918.      * @param prettyPrint if true output the XML with indenting
  919.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  920.      */
  921.     public void write(OutputStream out,PortaApplicativaAutorizzazioneServiziApplicativi portaApplicativaAutorizzazioneServiziApplicativi,boolean prettyPrint) throws SerializerException {
  922.         this.objToXml(out, PortaApplicativaAutorizzazioneServiziApplicativi.class, portaApplicativaAutorizzazioneServiziApplicativi, prettyPrint);
  923.     }
  924.            
  925.     /**
  926.      * Serialize to byte array the object <var>portaApplicativaAutorizzazioneServiziApplicativi</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneServiziApplicativi}
  927.      *
  928.      * @param portaApplicativaAutorizzazioneServiziApplicativi Object to be serialized
  929.      * @return Object to be serialized in byte array
  930.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  931.      */
  932.     public byte[] toByteArray(PortaApplicativaAutorizzazioneServiziApplicativi portaApplicativaAutorizzazioneServiziApplicativi) throws SerializerException {
  933.         return this.objToXml(PortaApplicativaAutorizzazioneServiziApplicativi.class, portaApplicativaAutorizzazioneServiziApplicativi, false).toByteArray();
  934.     }
  935.     /**
  936.      * Serialize to byte array the object <var>portaApplicativaAutorizzazioneServiziApplicativi</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneServiziApplicativi}
  937.      *
  938.      * @param portaApplicativaAutorizzazioneServiziApplicativi Object to be serialized
  939.      * @param prettyPrint if true output the XML with indenting
  940.      * @return Object to be serialized in byte array
  941.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  942.      */
  943.     public byte[] toByteArray(PortaApplicativaAutorizzazioneServiziApplicativi portaApplicativaAutorizzazioneServiziApplicativi,boolean prettyPrint) throws SerializerException {
  944.         return this.objToXml(PortaApplicativaAutorizzazioneServiziApplicativi.class, portaApplicativaAutorizzazioneServiziApplicativi, prettyPrint).toByteArray();
  945.     }
  946.    
  947.     /**
  948.      * Serialize to String the object <var>portaApplicativaAutorizzazioneServiziApplicativi</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneServiziApplicativi}
  949.      *
  950.      * @param portaApplicativaAutorizzazioneServiziApplicativi Object to be serialized
  951.      * @return Object to be serialized as String
  952.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  953.      */
  954.     public String toString(PortaApplicativaAutorizzazioneServiziApplicativi portaApplicativaAutorizzazioneServiziApplicativi) throws SerializerException {
  955.         return this.objToXml(PortaApplicativaAutorizzazioneServiziApplicativi.class, portaApplicativaAutorizzazioneServiziApplicativi, false).toString();
  956.     }
  957.     /**
  958.      * Serialize to String the object <var>portaApplicativaAutorizzazioneServiziApplicativi</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneServiziApplicativi}
  959.      *
  960.      * @param portaApplicativaAutorizzazioneServiziApplicativi Object to be serialized
  961.      * @param prettyPrint if true output the XML with indenting
  962.      * @return Object to be serialized as String
  963.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  964.      */
  965.     public String toString(PortaApplicativaAutorizzazioneServiziApplicativi portaApplicativaAutorizzazioneServiziApplicativi,boolean prettyPrint) throws SerializerException {
  966.         return this.objToXml(PortaApplicativaAutorizzazioneServiziApplicativi.class, portaApplicativaAutorizzazioneServiziApplicativi, prettyPrint).toString();
  967.     }
  968.    
  969.    
  970.    
  971.     /*
  972.      =================================================================================
  973.      Object: porta-applicativa-autorizzazione-token
  974.      =================================================================================
  975.     */
  976.    
  977.     /**
  978.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativaAutorizzazioneToken</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneToken}
  979.      *
  980.      * @param fileName Xml file to serialize the object <var>portaApplicativaAutorizzazioneToken</var>
  981.      * @param portaApplicativaAutorizzazioneToken Object to be serialized in xml file <var>fileName</var>
  982.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  983.      */
  984.     public void write(String fileName,PortaApplicativaAutorizzazioneToken portaApplicativaAutorizzazioneToken) throws SerializerException {
  985.         this.objToXml(fileName, PortaApplicativaAutorizzazioneToken.class, portaApplicativaAutorizzazioneToken, false);
  986.     }
  987.     /**
  988.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativaAutorizzazioneToken</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneToken}
  989.      *
  990.      * @param fileName Xml file to serialize the object <var>portaApplicativaAutorizzazioneToken</var>
  991.      * @param portaApplicativaAutorizzazioneToken Object to be serialized in xml file <var>fileName</var>
  992.      * @param prettyPrint if true output the XML with indenting
  993.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  994.      */
  995.     public void write(String fileName,PortaApplicativaAutorizzazioneToken portaApplicativaAutorizzazioneToken,boolean prettyPrint) throws SerializerException {
  996.         this.objToXml(fileName, PortaApplicativaAutorizzazioneToken.class, portaApplicativaAutorizzazioneToken, prettyPrint);
  997.     }
  998.    
  999.     /**
  1000.      * Serialize to file system in <var>file</var> the object <var>portaApplicativaAutorizzazioneToken</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneToken}
  1001.      *
  1002.      * @param file Xml file to serialize the object <var>portaApplicativaAutorizzazioneToken</var>
  1003.      * @param portaApplicativaAutorizzazioneToken Object to be serialized in xml file <var>fileName</var>
  1004.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1005.      */
  1006.     public void write(File file,PortaApplicativaAutorizzazioneToken portaApplicativaAutorizzazioneToken) throws SerializerException {
  1007.         this.objToXml(file, PortaApplicativaAutorizzazioneToken.class, portaApplicativaAutorizzazioneToken, false);
  1008.     }
  1009.     /**
  1010.      * Serialize to file system in <var>file</var> the object <var>portaApplicativaAutorizzazioneToken</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneToken}
  1011.      *
  1012.      * @param file Xml file to serialize the object <var>portaApplicativaAutorizzazioneToken</var>
  1013.      * @param portaApplicativaAutorizzazioneToken Object to be serialized in xml file <var>fileName</var>
  1014.      * @param prettyPrint if true output the XML with indenting
  1015.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1016.      */
  1017.     public void write(File file,PortaApplicativaAutorizzazioneToken portaApplicativaAutorizzazioneToken,boolean prettyPrint) throws SerializerException {
  1018.         this.objToXml(file, PortaApplicativaAutorizzazioneToken.class, portaApplicativaAutorizzazioneToken, prettyPrint);
  1019.     }
  1020.    
  1021.     /**
  1022.      * Serialize to output stream <var>out</var> the object <var>portaApplicativaAutorizzazioneToken</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneToken}
  1023.      *
  1024.      * @param out OutputStream to serialize the object <var>portaApplicativaAutorizzazioneToken</var>
  1025.      * @param portaApplicativaAutorizzazioneToken Object to be serialized in xml file <var>fileName</var>
  1026.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1027.      */
  1028.     public void write(OutputStream out,PortaApplicativaAutorizzazioneToken portaApplicativaAutorizzazioneToken) throws SerializerException {
  1029.         this.objToXml(out, PortaApplicativaAutorizzazioneToken.class, portaApplicativaAutorizzazioneToken, false);
  1030.     }
  1031.     /**
  1032.      * Serialize to output stream <var>out</var> the object <var>portaApplicativaAutorizzazioneToken</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneToken}
  1033.      *
  1034.      * @param out OutputStream to serialize the object <var>portaApplicativaAutorizzazioneToken</var>
  1035.      * @param portaApplicativaAutorizzazioneToken Object to be serialized in xml file <var>fileName</var>
  1036.      * @param prettyPrint if true output the XML with indenting
  1037.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1038.      */
  1039.     public void write(OutputStream out,PortaApplicativaAutorizzazioneToken portaApplicativaAutorizzazioneToken,boolean prettyPrint) throws SerializerException {
  1040.         this.objToXml(out, PortaApplicativaAutorizzazioneToken.class, portaApplicativaAutorizzazioneToken, prettyPrint);
  1041.     }
  1042.            
  1043.     /**
  1044.      * Serialize to byte array the object <var>portaApplicativaAutorizzazioneToken</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneToken}
  1045.      *
  1046.      * @param portaApplicativaAutorizzazioneToken Object to be serialized
  1047.      * @return Object to be serialized in byte array
  1048.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1049.      */
  1050.     public byte[] toByteArray(PortaApplicativaAutorizzazioneToken portaApplicativaAutorizzazioneToken) throws SerializerException {
  1051.         return this.objToXml(PortaApplicativaAutorizzazioneToken.class, portaApplicativaAutorizzazioneToken, false).toByteArray();
  1052.     }
  1053.     /**
  1054.      * Serialize to byte array the object <var>portaApplicativaAutorizzazioneToken</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneToken}
  1055.      *
  1056.      * @param portaApplicativaAutorizzazioneToken Object to be serialized
  1057.      * @param prettyPrint if true output the XML with indenting
  1058.      * @return Object to be serialized in byte array
  1059.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1060.      */
  1061.     public byte[] toByteArray(PortaApplicativaAutorizzazioneToken portaApplicativaAutorizzazioneToken,boolean prettyPrint) throws SerializerException {
  1062.         return this.objToXml(PortaApplicativaAutorizzazioneToken.class, portaApplicativaAutorizzazioneToken, prettyPrint).toByteArray();
  1063.     }
  1064.    
  1065.     /**
  1066.      * Serialize to String the object <var>portaApplicativaAutorizzazioneToken</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneToken}
  1067.      *
  1068.      * @param portaApplicativaAutorizzazioneToken Object to be serialized
  1069.      * @return Object to be serialized as String
  1070.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1071.      */
  1072.     public String toString(PortaApplicativaAutorizzazioneToken portaApplicativaAutorizzazioneToken) throws SerializerException {
  1073.         return this.objToXml(PortaApplicativaAutorizzazioneToken.class, portaApplicativaAutorizzazioneToken, false).toString();
  1074.     }
  1075.     /**
  1076.      * Serialize to String the object <var>portaApplicativaAutorizzazioneToken</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAutorizzazioneToken}
  1077.      *
  1078.      * @param portaApplicativaAutorizzazioneToken Object to be serialized
  1079.      * @param prettyPrint if true output the XML with indenting
  1080.      * @return Object to be serialized as String
  1081.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1082.      */
  1083.     public String toString(PortaApplicativaAutorizzazioneToken portaApplicativaAutorizzazioneToken,boolean prettyPrint) throws SerializerException {
  1084.         return this.objToXml(PortaApplicativaAutorizzazioneToken.class, portaApplicativaAutorizzazioneToken, prettyPrint).toString();
  1085.     }
  1086.    
  1087.    
  1088.    
  1089.     /*
  1090.      =================================================================================
  1091.      Object: autorizzazione-ruoli
  1092.      =================================================================================
  1093.     */
  1094.    
  1095.     /**
  1096.      * Serialize to file system in <var>fileName</var> the object <var>autorizzazioneRuoli</var> of type {@link org.openspcoop2.core.config.AutorizzazioneRuoli}
  1097.      *
  1098.      * @param fileName Xml file to serialize the object <var>autorizzazioneRuoli</var>
  1099.      * @param autorizzazioneRuoli Object to be serialized in xml file <var>fileName</var>
  1100.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1101.      */
  1102.     public void write(String fileName,AutorizzazioneRuoli autorizzazioneRuoli) throws SerializerException {
  1103.         this.objToXml(fileName, AutorizzazioneRuoli.class, autorizzazioneRuoli, false);
  1104.     }
  1105.     /**
  1106.      * Serialize to file system in <var>fileName</var> the object <var>autorizzazioneRuoli</var> of type {@link org.openspcoop2.core.config.AutorizzazioneRuoli}
  1107.      *
  1108.      * @param fileName Xml file to serialize the object <var>autorizzazioneRuoli</var>
  1109.      * @param autorizzazioneRuoli Object to be serialized in xml file <var>fileName</var>
  1110.      * @param prettyPrint if true output the XML with indenting
  1111.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1112.      */
  1113.     public void write(String fileName,AutorizzazioneRuoli autorizzazioneRuoli,boolean prettyPrint) throws SerializerException {
  1114.         this.objToXml(fileName, AutorizzazioneRuoli.class, autorizzazioneRuoli, prettyPrint);
  1115.     }
  1116.    
  1117.     /**
  1118.      * Serialize to file system in <var>file</var> the object <var>autorizzazioneRuoli</var> of type {@link org.openspcoop2.core.config.AutorizzazioneRuoli}
  1119.      *
  1120.      * @param file Xml file to serialize the object <var>autorizzazioneRuoli</var>
  1121.      * @param autorizzazioneRuoli Object to be serialized in xml file <var>fileName</var>
  1122.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1123.      */
  1124.     public void write(File file,AutorizzazioneRuoli autorizzazioneRuoli) throws SerializerException {
  1125.         this.objToXml(file, AutorizzazioneRuoli.class, autorizzazioneRuoli, false);
  1126.     }
  1127.     /**
  1128.      * Serialize to file system in <var>file</var> the object <var>autorizzazioneRuoli</var> of type {@link org.openspcoop2.core.config.AutorizzazioneRuoli}
  1129.      *
  1130.      * @param file Xml file to serialize the object <var>autorizzazioneRuoli</var>
  1131.      * @param autorizzazioneRuoli Object to be serialized in xml file <var>fileName</var>
  1132.      * @param prettyPrint if true output the XML with indenting
  1133.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1134.      */
  1135.     public void write(File file,AutorizzazioneRuoli autorizzazioneRuoli,boolean prettyPrint) throws SerializerException {
  1136.         this.objToXml(file, AutorizzazioneRuoli.class, autorizzazioneRuoli, prettyPrint);
  1137.     }
  1138.    
  1139.     /**
  1140.      * Serialize to output stream <var>out</var> the object <var>autorizzazioneRuoli</var> of type {@link org.openspcoop2.core.config.AutorizzazioneRuoli}
  1141.      *
  1142.      * @param out OutputStream to serialize the object <var>autorizzazioneRuoli</var>
  1143.      * @param autorizzazioneRuoli Object to be serialized in xml file <var>fileName</var>
  1144.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1145.      */
  1146.     public void write(OutputStream out,AutorizzazioneRuoli autorizzazioneRuoli) throws SerializerException {
  1147.         this.objToXml(out, AutorizzazioneRuoli.class, autorizzazioneRuoli, false);
  1148.     }
  1149.     /**
  1150.      * Serialize to output stream <var>out</var> the object <var>autorizzazioneRuoli</var> of type {@link org.openspcoop2.core.config.AutorizzazioneRuoli}
  1151.      *
  1152.      * @param out OutputStream to serialize the object <var>autorizzazioneRuoli</var>
  1153.      * @param autorizzazioneRuoli Object to be serialized in xml file <var>fileName</var>
  1154.      * @param prettyPrint if true output the XML with indenting
  1155.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1156.      */
  1157.     public void write(OutputStream out,AutorizzazioneRuoli autorizzazioneRuoli,boolean prettyPrint) throws SerializerException {
  1158.         this.objToXml(out, AutorizzazioneRuoli.class, autorizzazioneRuoli, prettyPrint);
  1159.     }
  1160.            
  1161.     /**
  1162.      * Serialize to byte array the object <var>autorizzazioneRuoli</var> of type {@link org.openspcoop2.core.config.AutorizzazioneRuoli}
  1163.      *
  1164.      * @param autorizzazioneRuoli Object to be serialized
  1165.      * @return Object to be serialized in byte array
  1166.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1167.      */
  1168.     public byte[] toByteArray(AutorizzazioneRuoli autorizzazioneRuoli) throws SerializerException {
  1169.         return this.objToXml(AutorizzazioneRuoli.class, autorizzazioneRuoli, false).toByteArray();
  1170.     }
  1171.     /**
  1172.      * Serialize to byte array the object <var>autorizzazioneRuoli</var> of type {@link org.openspcoop2.core.config.AutorizzazioneRuoli}
  1173.      *
  1174.      * @param autorizzazioneRuoli Object to be serialized
  1175.      * @param prettyPrint if true output the XML with indenting
  1176.      * @return Object to be serialized in byte array
  1177.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1178.      */
  1179.     public byte[] toByteArray(AutorizzazioneRuoli autorizzazioneRuoli,boolean prettyPrint) throws SerializerException {
  1180.         return this.objToXml(AutorizzazioneRuoli.class, autorizzazioneRuoli, prettyPrint).toByteArray();
  1181.     }
  1182.    
  1183.     /**
  1184.      * Serialize to String the object <var>autorizzazioneRuoli</var> of type {@link org.openspcoop2.core.config.AutorizzazioneRuoli}
  1185.      *
  1186.      * @param autorizzazioneRuoli Object to be serialized
  1187.      * @return Object to be serialized as String
  1188.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1189.      */
  1190.     public String toString(AutorizzazioneRuoli autorizzazioneRuoli) throws SerializerException {
  1191.         return this.objToXml(AutorizzazioneRuoli.class, autorizzazioneRuoli, false).toString();
  1192.     }
  1193.     /**
  1194.      * Serialize to String the object <var>autorizzazioneRuoli</var> of type {@link org.openspcoop2.core.config.AutorizzazioneRuoli}
  1195.      *
  1196.      * @param autorizzazioneRuoli Object to be serialized
  1197.      * @param prettyPrint if true output the XML with indenting
  1198.      * @return Object to be serialized as String
  1199.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1200.      */
  1201.     public String toString(AutorizzazioneRuoli autorizzazioneRuoli,boolean prettyPrint) throws SerializerException {
  1202.         return this.objToXml(AutorizzazioneRuoli.class, autorizzazioneRuoli, prettyPrint).toString();
  1203.     }
  1204.    
  1205.    
  1206.    
  1207.     /*
  1208.      =================================================================================
  1209.      Object: route
  1210.      =================================================================================
  1211.     */
  1212.    
  1213.     /**
  1214.      * Serialize to file system in <var>fileName</var> the object <var>route</var> of type {@link org.openspcoop2.core.config.Route}
  1215.      *
  1216.      * @param fileName Xml file to serialize the object <var>route</var>
  1217.      * @param route Object to be serialized in xml file <var>fileName</var>
  1218.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1219.      */
  1220.     public void write(String fileName,Route route) throws SerializerException {
  1221.         this.objToXml(fileName, Route.class, route, false);
  1222.     }
  1223.     /**
  1224.      * Serialize to file system in <var>fileName</var> the object <var>route</var> of type {@link org.openspcoop2.core.config.Route}
  1225.      *
  1226.      * @param fileName Xml file to serialize the object <var>route</var>
  1227.      * @param route Object to be serialized in xml file <var>fileName</var>
  1228.      * @param prettyPrint if true output the XML with indenting
  1229.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1230.      */
  1231.     public void write(String fileName,Route route,boolean prettyPrint) throws SerializerException {
  1232.         this.objToXml(fileName, Route.class, route, prettyPrint);
  1233.     }
  1234.    
  1235.     /**
  1236.      * Serialize to file system in <var>file</var> the object <var>route</var> of type {@link org.openspcoop2.core.config.Route}
  1237.      *
  1238.      * @param file Xml file to serialize the object <var>route</var>
  1239.      * @param route Object to be serialized in xml file <var>fileName</var>
  1240.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1241.      */
  1242.     public void write(File file,Route route) throws SerializerException {
  1243.         this.objToXml(file, Route.class, route, false);
  1244.     }
  1245.     /**
  1246.      * Serialize to file system in <var>file</var> the object <var>route</var> of type {@link org.openspcoop2.core.config.Route}
  1247.      *
  1248.      * @param file Xml file to serialize the object <var>route</var>
  1249.      * @param route Object to be serialized in xml file <var>fileName</var>
  1250.      * @param prettyPrint if true output the XML with indenting
  1251.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1252.      */
  1253.     public void write(File file,Route route,boolean prettyPrint) throws SerializerException {
  1254.         this.objToXml(file, Route.class, route, prettyPrint);
  1255.     }
  1256.    
  1257.     /**
  1258.      * Serialize to output stream <var>out</var> the object <var>route</var> of type {@link org.openspcoop2.core.config.Route}
  1259.      *
  1260.      * @param out OutputStream to serialize the object <var>route</var>
  1261.      * @param route Object to be serialized in xml file <var>fileName</var>
  1262.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1263.      */
  1264.     public void write(OutputStream out,Route route) throws SerializerException {
  1265.         this.objToXml(out, Route.class, route, false);
  1266.     }
  1267.     /**
  1268.      * Serialize to output stream <var>out</var> the object <var>route</var> of type {@link org.openspcoop2.core.config.Route}
  1269.      *
  1270.      * @param out OutputStream to serialize the object <var>route</var>
  1271.      * @param route Object to be serialized in xml file <var>fileName</var>
  1272.      * @param prettyPrint if true output the XML with indenting
  1273.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1274.      */
  1275.     public void write(OutputStream out,Route route,boolean prettyPrint) throws SerializerException {
  1276.         this.objToXml(out, Route.class, route, prettyPrint);
  1277.     }
  1278.            
  1279.     /**
  1280.      * Serialize to byte array the object <var>route</var> of type {@link org.openspcoop2.core.config.Route}
  1281.      *
  1282.      * @param route Object to be serialized
  1283.      * @return Object to be serialized in byte array
  1284.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1285.      */
  1286.     public byte[] toByteArray(Route route) throws SerializerException {
  1287.         return this.objToXml(Route.class, route, false).toByteArray();
  1288.     }
  1289.     /**
  1290.      * Serialize to byte array the object <var>route</var> of type {@link org.openspcoop2.core.config.Route}
  1291.      *
  1292.      * @param route Object to be serialized
  1293.      * @param prettyPrint if true output the XML with indenting
  1294.      * @return Object to be serialized in byte array
  1295.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1296.      */
  1297.     public byte[] toByteArray(Route route,boolean prettyPrint) throws SerializerException {
  1298.         return this.objToXml(Route.class, route, prettyPrint).toByteArray();
  1299.     }
  1300.    
  1301.     /**
  1302.      * Serialize to String the object <var>route</var> of type {@link org.openspcoop2.core.config.Route}
  1303.      *
  1304.      * @param route Object to be serialized
  1305.      * @return Object to be serialized as String
  1306.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1307.      */
  1308.     public String toString(Route route) throws SerializerException {
  1309.         return this.objToXml(Route.class, route, false).toString();
  1310.     }
  1311.     /**
  1312.      * Serialize to String the object <var>route</var> of type {@link org.openspcoop2.core.config.Route}
  1313.      *
  1314.      * @param route Object to be serialized
  1315.      * @param prettyPrint if true output the XML with indenting
  1316.      * @return Object to be serialized as String
  1317.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1318.      */
  1319.     public String toString(Route route,boolean prettyPrint) throws SerializerException {
  1320.         return this.objToXml(Route.class, route, prettyPrint).toString();
  1321.     }
  1322.    
  1323.    
  1324.    
  1325.     /*
  1326.      =================================================================================
  1327.      Object: routing-table-default
  1328.      =================================================================================
  1329.     */
  1330.    
  1331.     /**
  1332.      * Serialize to file system in <var>fileName</var> the object <var>routingTableDefault</var> of type {@link org.openspcoop2.core.config.RoutingTableDefault}
  1333.      *
  1334.      * @param fileName Xml file to serialize the object <var>routingTableDefault</var>
  1335.      * @param routingTableDefault Object to be serialized in xml file <var>fileName</var>
  1336.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1337.      */
  1338.     public void write(String fileName,RoutingTableDefault routingTableDefault) throws SerializerException {
  1339.         this.objToXml(fileName, RoutingTableDefault.class, routingTableDefault, false);
  1340.     }
  1341.     /**
  1342.      * Serialize to file system in <var>fileName</var> the object <var>routingTableDefault</var> of type {@link org.openspcoop2.core.config.RoutingTableDefault}
  1343.      *
  1344.      * @param fileName Xml file to serialize the object <var>routingTableDefault</var>
  1345.      * @param routingTableDefault Object to be serialized in xml file <var>fileName</var>
  1346.      * @param prettyPrint if true output the XML with indenting
  1347.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1348.      */
  1349.     public void write(String fileName,RoutingTableDefault routingTableDefault,boolean prettyPrint) throws SerializerException {
  1350.         this.objToXml(fileName, RoutingTableDefault.class, routingTableDefault, prettyPrint);
  1351.     }
  1352.    
  1353.     /**
  1354.      * Serialize to file system in <var>file</var> the object <var>routingTableDefault</var> of type {@link org.openspcoop2.core.config.RoutingTableDefault}
  1355.      *
  1356.      * @param file Xml file to serialize the object <var>routingTableDefault</var>
  1357.      * @param routingTableDefault Object to be serialized in xml file <var>fileName</var>
  1358.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1359.      */
  1360.     public void write(File file,RoutingTableDefault routingTableDefault) throws SerializerException {
  1361.         this.objToXml(file, RoutingTableDefault.class, routingTableDefault, false);
  1362.     }
  1363.     /**
  1364.      * Serialize to file system in <var>file</var> the object <var>routingTableDefault</var> of type {@link org.openspcoop2.core.config.RoutingTableDefault}
  1365.      *
  1366.      * @param file Xml file to serialize the object <var>routingTableDefault</var>
  1367.      * @param routingTableDefault Object to be serialized in xml file <var>fileName</var>
  1368.      * @param prettyPrint if true output the XML with indenting
  1369.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1370.      */
  1371.     public void write(File file,RoutingTableDefault routingTableDefault,boolean prettyPrint) throws SerializerException {
  1372.         this.objToXml(file, RoutingTableDefault.class, routingTableDefault, prettyPrint);
  1373.     }
  1374.    
  1375.     /**
  1376.      * Serialize to output stream <var>out</var> the object <var>routingTableDefault</var> of type {@link org.openspcoop2.core.config.RoutingTableDefault}
  1377.      *
  1378.      * @param out OutputStream to serialize the object <var>routingTableDefault</var>
  1379.      * @param routingTableDefault Object to be serialized in xml file <var>fileName</var>
  1380.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1381.      */
  1382.     public void write(OutputStream out,RoutingTableDefault routingTableDefault) throws SerializerException {
  1383.         this.objToXml(out, RoutingTableDefault.class, routingTableDefault, false);
  1384.     }
  1385.     /**
  1386.      * Serialize to output stream <var>out</var> the object <var>routingTableDefault</var> of type {@link org.openspcoop2.core.config.RoutingTableDefault}
  1387.      *
  1388.      * @param out OutputStream to serialize the object <var>routingTableDefault</var>
  1389.      * @param routingTableDefault Object to be serialized in xml file <var>fileName</var>
  1390.      * @param prettyPrint if true output the XML with indenting
  1391.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1392.      */
  1393.     public void write(OutputStream out,RoutingTableDefault routingTableDefault,boolean prettyPrint) throws SerializerException {
  1394.         this.objToXml(out, RoutingTableDefault.class, routingTableDefault, prettyPrint);
  1395.     }
  1396.            
  1397.     /**
  1398.      * Serialize to byte array the object <var>routingTableDefault</var> of type {@link org.openspcoop2.core.config.RoutingTableDefault}
  1399.      *
  1400.      * @param routingTableDefault Object to be serialized
  1401.      * @return Object to be serialized in byte array
  1402.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1403.      */
  1404.     public byte[] toByteArray(RoutingTableDefault routingTableDefault) throws SerializerException {
  1405.         return this.objToXml(RoutingTableDefault.class, routingTableDefault, false).toByteArray();
  1406.     }
  1407.     /**
  1408.      * Serialize to byte array the object <var>routingTableDefault</var> of type {@link org.openspcoop2.core.config.RoutingTableDefault}
  1409.      *
  1410.      * @param routingTableDefault Object to be serialized
  1411.      * @param prettyPrint if true output the XML with indenting
  1412.      * @return Object to be serialized in byte array
  1413.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1414.      */
  1415.     public byte[] toByteArray(RoutingTableDefault routingTableDefault,boolean prettyPrint) throws SerializerException {
  1416.         return this.objToXml(RoutingTableDefault.class, routingTableDefault, prettyPrint).toByteArray();
  1417.     }
  1418.    
  1419.     /**
  1420.      * Serialize to String the object <var>routingTableDefault</var> of type {@link org.openspcoop2.core.config.RoutingTableDefault}
  1421.      *
  1422.      * @param routingTableDefault Object to be serialized
  1423.      * @return Object to be serialized as String
  1424.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1425.      */
  1426.     public String toString(RoutingTableDefault routingTableDefault) throws SerializerException {
  1427.         return this.objToXml(RoutingTableDefault.class, routingTableDefault, false).toString();
  1428.     }
  1429.     /**
  1430.      * Serialize to String the object <var>routingTableDefault</var> of type {@link org.openspcoop2.core.config.RoutingTableDefault}
  1431.      *
  1432.      * @param routingTableDefault Object to be serialized
  1433.      * @param prettyPrint if true output the XML with indenting
  1434.      * @return Object to be serialized as String
  1435.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1436.      */
  1437.     public String toString(RoutingTableDefault routingTableDefault,boolean prettyPrint) throws SerializerException {
  1438.         return this.objToXml(RoutingTableDefault.class, routingTableDefault, prettyPrint).toString();
  1439.     }
  1440.    
  1441.    
  1442.    
  1443.     /*
  1444.      =================================================================================
  1445.      Object: cache
  1446.      =================================================================================
  1447.     */
  1448.    
  1449.     /**
  1450.      * Serialize to file system in <var>fileName</var> the object <var>cache</var> of type {@link org.openspcoop2.core.config.Cache}
  1451.      *
  1452.      * @param fileName Xml file to serialize the object <var>cache</var>
  1453.      * @param cache Object to be serialized in xml file <var>fileName</var>
  1454.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1455.      */
  1456.     public void write(String fileName,Cache cache) throws SerializerException {
  1457.         this.objToXml(fileName, Cache.class, cache, false);
  1458.     }
  1459.     /**
  1460.      * Serialize to file system in <var>fileName</var> the object <var>cache</var> of type {@link org.openspcoop2.core.config.Cache}
  1461.      *
  1462.      * @param fileName Xml file to serialize the object <var>cache</var>
  1463.      * @param cache Object to be serialized in xml file <var>fileName</var>
  1464.      * @param prettyPrint if true output the XML with indenting
  1465.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1466.      */
  1467.     public void write(String fileName,Cache cache,boolean prettyPrint) throws SerializerException {
  1468.         this.objToXml(fileName, Cache.class, cache, prettyPrint);
  1469.     }
  1470.    
  1471.     /**
  1472.      * Serialize to file system in <var>file</var> the object <var>cache</var> of type {@link org.openspcoop2.core.config.Cache}
  1473.      *
  1474.      * @param file Xml file to serialize the object <var>cache</var>
  1475.      * @param cache Object to be serialized in xml file <var>fileName</var>
  1476.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1477.      */
  1478.     public void write(File file,Cache cache) throws SerializerException {
  1479.         this.objToXml(file, Cache.class, cache, false);
  1480.     }
  1481.     /**
  1482.      * Serialize to file system in <var>file</var> the object <var>cache</var> of type {@link org.openspcoop2.core.config.Cache}
  1483.      *
  1484.      * @param file Xml file to serialize the object <var>cache</var>
  1485.      * @param cache Object to be serialized in xml file <var>fileName</var>
  1486.      * @param prettyPrint if true output the XML with indenting
  1487.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1488.      */
  1489.     public void write(File file,Cache cache,boolean prettyPrint) throws SerializerException {
  1490.         this.objToXml(file, Cache.class, cache, prettyPrint);
  1491.     }
  1492.    
  1493.     /**
  1494.      * Serialize to output stream <var>out</var> the object <var>cache</var> of type {@link org.openspcoop2.core.config.Cache}
  1495.      *
  1496.      * @param out OutputStream to serialize the object <var>cache</var>
  1497.      * @param cache Object to be serialized in xml file <var>fileName</var>
  1498.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1499.      */
  1500.     public void write(OutputStream out,Cache cache) throws SerializerException {
  1501.         this.objToXml(out, Cache.class, cache, false);
  1502.     }
  1503.     /**
  1504.      * Serialize to output stream <var>out</var> the object <var>cache</var> of type {@link org.openspcoop2.core.config.Cache}
  1505.      *
  1506.      * @param out OutputStream to serialize the object <var>cache</var>
  1507.      * @param cache Object to be serialized in xml file <var>fileName</var>
  1508.      * @param prettyPrint if true output the XML with indenting
  1509.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1510.      */
  1511.     public void write(OutputStream out,Cache cache,boolean prettyPrint) throws SerializerException {
  1512.         this.objToXml(out, Cache.class, cache, prettyPrint);
  1513.     }
  1514.            
  1515.     /**
  1516.      * Serialize to byte array the object <var>cache</var> of type {@link org.openspcoop2.core.config.Cache}
  1517.      *
  1518.      * @param cache Object to be serialized
  1519.      * @return Object to be serialized in byte array
  1520.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1521.      */
  1522.     public byte[] toByteArray(Cache cache) throws SerializerException {
  1523.         return this.objToXml(Cache.class, cache, false).toByteArray();
  1524.     }
  1525.     /**
  1526.      * Serialize to byte array the object <var>cache</var> of type {@link org.openspcoop2.core.config.Cache}
  1527.      *
  1528.      * @param cache Object to be serialized
  1529.      * @param prettyPrint if true output the XML with indenting
  1530.      * @return Object to be serialized in byte array
  1531.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1532.      */
  1533.     public byte[] toByteArray(Cache cache,boolean prettyPrint) throws SerializerException {
  1534.         return this.objToXml(Cache.class, cache, prettyPrint).toByteArray();
  1535.     }
  1536.    
  1537.     /**
  1538.      * Serialize to String the object <var>cache</var> of type {@link org.openspcoop2.core.config.Cache}
  1539.      *
  1540.      * @param cache Object to be serialized
  1541.      * @return Object to be serialized as String
  1542.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1543.      */
  1544.     public String toString(Cache cache) throws SerializerException {
  1545.         return this.objToXml(Cache.class, cache, false).toString();
  1546.     }
  1547.     /**
  1548.      * Serialize to String the object <var>cache</var> of type {@link org.openspcoop2.core.config.Cache}
  1549.      *
  1550.      * @param cache Object to be serialized
  1551.      * @param prettyPrint if true output the XML with indenting
  1552.      * @return Object to be serialized as String
  1553.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1554.      */
  1555.     public String toString(Cache cache,boolean prettyPrint) throws SerializerException {
  1556.         return this.objToXml(Cache.class, cache, prettyPrint).toString();
  1557.     }
  1558.    
  1559.    
  1560.    
  1561.     /*
  1562.      =================================================================================
  1563.      Object: accesso-configurazione
  1564.      =================================================================================
  1565.     */
  1566.    
  1567.     /**
  1568.      * Serialize to file system in <var>fileName</var> the object <var>accessoConfigurazione</var> of type {@link org.openspcoop2.core.config.AccessoConfigurazione}
  1569.      *
  1570.      * @param fileName Xml file to serialize the object <var>accessoConfigurazione</var>
  1571.      * @param accessoConfigurazione Object to be serialized in xml file <var>fileName</var>
  1572.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1573.      */
  1574.     public void write(String fileName,AccessoConfigurazione accessoConfigurazione) throws SerializerException {
  1575.         this.objToXml(fileName, AccessoConfigurazione.class, accessoConfigurazione, false);
  1576.     }
  1577.     /**
  1578.      * Serialize to file system in <var>fileName</var> the object <var>accessoConfigurazione</var> of type {@link org.openspcoop2.core.config.AccessoConfigurazione}
  1579.      *
  1580.      * @param fileName Xml file to serialize the object <var>accessoConfigurazione</var>
  1581.      * @param accessoConfigurazione Object to be serialized in xml file <var>fileName</var>
  1582.      * @param prettyPrint if true output the XML with indenting
  1583.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1584.      */
  1585.     public void write(String fileName,AccessoConfigurazione accessoConfigurazione,boolean prettyPrint) throws SerializerException {
  1586.         this.objToXml(fileName, AccessoConfigurazione.class, accessoConfigurazione, prettyPrint);
  1587.     }
  1588.    
  1589.     /**
  1590.      * Serialize to file system in <var>file</var> the object <var>accessoConfigurazione</var> of type {@link org.openspcoop2.core.config.AccessoConfigurazione}
  1591.      *
  1592.      * @param file Xml file to serialize the object <var>accessoConfigurazione</var>
  1593.      * @param accessoConfigurazione Object to be serialized in xml file <var>fileName</var>
  1594.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1595.      */
  1596.     public void write(File file,AccessoConfigurazione accessoConfigurazione) throws SerializerException {
  1597.         this.objToXml(file, AccessoConfigurazione.class, accessoConfigurazione, false);
  1598.     }
  1599.     /**
  1600.      * Serialize to file system in <var>file</var> the object <var>accessoConfigurazione</var> of type {@link org.openspcoop2.core.config.AccessoConfigurazione}
  1601.      *
  1602.      * @param file Xml file to serialize the object <var>accessoConfigurazione</var>
  1603.      * @param accessoConfigurazione Object to be serialized in xml file <var>fileName</var>
  1604.      * @param prettyPrint if true output the XML with indenting
  1605.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1606.      */
  1607.     public void write(File file,AccessoConfigurazione accessoConfigurazione,boolean prettyPrint) throws SerializerException {
  1608.         this.objToXml(file, AccessoConfigurazione.class, accessoConfigurazione, prettyPrint);
  1609.     }
  1610.    
  1611.     /**
  1612.      * Serialize to output stream <var>out</var> the object <var>accessoConfigurazione</var> of type {@link org.openspcoop2.core.config.AccessoConfigurazione}
  1613.      *
  1614.      * @param out OutputStream to serialize the object <var>accessoConfigurazione</var>
  1615.      * @param accessoConfigurazione Object to be serialized in xml file <var>fileName</var>
  1616.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1617.      */
  1618.     public void write(OutputStream out,AccessoConfigurazione accessoConfigurazione) throws SerializerException {
  1619.         this.objToXml(out, AccessoConfigurazione.class, accessoConfigurazione, false);
  1620.     }
  1621.     /**
  1622.      * Serialize to output stream <var>out</var> the object <var>accessoConfigurazione</var> of type {@link org.openspcoop2.core.config.AccessoConfigurazione}
  1623.      *
  1624.      * @param out OutputStream to serialize the object <var>accessoConfigurazione</var>
  1625.      * @param accessoConfigurazione Object to be serialized in xml file <var>fileName</var>
  1626.      * @param prettyPrint if true output the XML with indenting
  1627.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1628.      */
  1629.     public void write(OutputStream out,AccessoConfigurazione accessoConfigurazione,boolean prettyPrint) throws SerializerException {
  1630.         this.objToXml(out, AccessoConfigurazione.class, accessoConfigurazione, prettyPrint);
  1631.     }
  1632.            
  1633.     /**
  1634.      * Serialize to byte array the object <var>accessoConfigurazione</var> of type {@link org.openspcoop2.core.config.AccessoConfigurazione}
  1635.      *
  1636.      * @param accessoConfigurazione Object to be serialized
  1637.      * @return Object to be serialized in byte array
  1638.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1639.      */
  1640.     public byte[] toByteArray(AccessoConfigurazione accessoConfigurazione) throws SerializerException {
  1641.         return this.objToXml(AccessoConfigurazione.class, accessoConfigurazione, false).toByteArray();
  1642.     }
  1643.     /**
  1644.      * Serialize to byte array the object <var>accessoConfigurazione</var> of type {@link org.openspcoop2.core.config.AccessoConfigurazione}
  1645.      *
  1646.      * @param accessoConfigurazione Object to be serialized
  1647.      * @param prettyPrint if true output the XML with indenting
  1648.      * @return Object to be serialized in byte array
  1649.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1650.      */
  1651.     public byte[] toByteArray(AccessoConfigurazione accessoConfigurazione,boolean prettyPrint) throws SerializerException {
  1652.         return this.objToXml(AccessoConfigurazione.class, accessoConfigurazione, prettyPrint).toByteArray();
  1653.     }
  1654.    
  1655.     /**
  1656.      * Serialize to String the object <var>accessoConfigurazione</var> of type {@link org.openspcoop2.core.config.AccessoConfigurazione}
  1657.      *
  1658.      * @param accessoConfigurazione Object to be serialized
  1659.      * @return Object to be serialized as String
  1660.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1661.      */
  1662.     public String toString(AccessoConfigurazione accessoConfigurazione) throws SerializerException {
  1663.         return this.objToXml(AccessoConfigurazione.class, accessoConfigurazione, false).toString();
  1664.     }
  1665.     /**
  1666.      * Serialize to String the object <var>accessoConfigurazione</var> of type {@link org.openspcoop2.core.config.AccessoConfigurazione}
  1667.      *
  1668.      * @param accessoConfigurazione Object to be serialized
  1669.      * @param prettyPrint if true output the XML with indenting
  1670.      * @return Object to be serialized as String
  1671.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1672.      */
  1673.     public String toString(AccessoConfigurazione accessoConfigurazione,boolean prettyPrint) throws SerializerException {
  1674.         return this.objToXml(AccessoConfigurazione.class, accessoConfigurazione, prettyPrint).toString();
  1675.     }
  1676.    
  1677.    
  1678.    
  1679.     /*
  1680.      =================================================================================
  1681.      Object: accesso-dati-gestione-token
  1682.      =================================================================================
  1683.     */
  1684.    
  1685.     /**
  1686.      * Serialize to file system in <var>fileName</var> the object <var>accessoDatiGestioneToken</var> of type {@link org.openspcoop2.core.config.AccessoDatiGestioneToken}
  1687.      *
  1688.      * @param fileName Xml file to serialize the object <var>accessoDatiGestioneToken</var>
  1689.      * @param accessoDatiGestioneToken Object to be serialized in xml file <var>fileName</var>
  1690.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1691.      */
  1692.     public void write(String fileName,AccessoDatiGestioneToken accessoDatiGestioneToken) throws SerializerException {
  1693.         this.objToXml(fileName, AccessoDatiGestioneToken.class, accessoDatiGestioneToken, false);
  1694.     }
  1695.     /**
  1696.      * Serialize to file system in <var>fileName</var> the object <var>accessoDatiGestioneToken</var> of type {@link org.openspcoop2.core.config.AccessoDatiGestioneToken}
  1697.      *
  1698.      * @param fileName Xml file to serialize the object <var>accessoDatiGestioneToken</var>
  1699.      * @param accessoDatiGestioneToken Object to be serialized in xml file <var>fileName</var>
  1700.      * @param prettyPrint if true output the XML with indenting
  1701.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1702.      */
  1703.     public void write(String fileName,AccessoDatiGestioneToken accessoDatiGestioneToken,boolean prettyPrint) throws SerializerException {
  1704.         this.objToXml(fileName, AccessoDatiGestioneToken.class, accessoDatiGestioneToken, prettyPrint);
  1705.     }
  1706.    
  1707.     /**
  1708.      * Serialize to file system in <var>file</var> the object <var>accessoDatiGestioneToken</var> of type {@link org.openspcoop2.core.config.AccessoDatiGestioneToken}
  1709.      *
  1710.      * @param file Xml file to serialize the object <var>accessoDatiGestioneToken</var>
  1711.      * @param accessoDatiGestioneToken Object to be serialized in xml file <var>fileName</var>
  1712.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1713.      */
  1714.     public void write(File file,AccessoDatiGestioneToken accessoDatiGestioneToken) throws SerializerException {
  1715.         this.objToXml(file, AccessoDatiGestioneToken.class, accessoDatiGestioneToken, false);
  1716.     }
  1717.     /**
  1718.      * Serialize to file system in <var>file</var> the object <var>accessoDatiGestioneToken</var> of type {@link org.openspcoop2.core.config.AccessoDatiGestioneToken}
  1719.      *
  1720.      * @param file Xml file to serialize the object <var>accessoDatiGestioneToken</var>
  1721.      * @param accessoDatiGestioneToken Object to be serialized in xml file <var>fileName</var>
  1722.      * @param prettyPrint if true output the XML with indenting
  1723.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1724.      */
  1725.     public void write(File file,AccessoDatiGestioneToken accessoDatiGestioneToken,boolean prettyPrint) throws SerializerException {
  1726.         this.objToXml(file, AccessoDatiGestioneToken.class, accessoDatiGestioneToken, prettyPrint);
  1727.     }
  1728.    
  1729.     /**
  1730.      * Serialize to output stream <var>out</var> the object <var>accessoDatiGestioneToken</var> of type {@link org.openspcoop2.core.config.AccessoDatiGestioneToken}
  1731.      *
  1732.      * @param out OutputStream to serialize the object <var>accessoDatiGestioneToken</var>
  1733.      * @param accessoDatiGestioneToken Object to be serialized in xml file <var>fileName</var>
  1734.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1735.      */
  1736.     public void write(OutputStream out,AccessoDatiGestioneToken accessoDatiGestioneToken) throws SerializerException {
  1737.         this.objToXml(out, AccessoDatiGestioneToken.class, accessoDatiGestioneToken, false);
  1738.     }
  1739.     /**
  1740.      * Serialize to output stream <var>out</var> the object <var>accessoDatiGestioneToken</var> of type {@link org.openspcoop2.core.config.AccessoDatiGestioneToken}
  1741.      *
  1742.      * @param out OutputStream to serialize the object <var>accessoDatiGestioneToken</var>
  1743.      * @param accessoDatiGestioneToken Object to be serialized in xml file <var>fileName</var>
  1744.      * @param prettyPrint if true output the XML with indenting
  1745.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1746.      */
  1747.     public void write(OutputStream out,AccessoDatiGestioneToken accessoDatiGestioneToken,boolean prettyPrint) throws SerializerException {
  1748.         this.objToXml(out, AccessoDatiGestioneToken.class, accessoDatiGestioneToken, prettyPrint);
  1749.     }
  1750.            
  1751.     /**
  1752.      * Serialize to byte array the object <var>accessoDatiGestioneToken</var> of type {@link org.openspcoop2.core.config.AccessoDatiGestioneToken}
  1753.      *
  1754.      * @param accessoDatiGestioneToken Object to be serialized
  1755.      * @return Object to be serialized in byte array
  1756.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1757.      */
  1758.     public byte[] toByteArray(AccessoDatiGestioneToken accessoDatiGestioneToken) throws SerializerException {
  1759.         return this.objToXml(AccessoDatiGestioneToken.class, accessoDatiGestioneToken, false).toByteArray();
  1760.     }
  1761.     /**
  1762.      * Serialize to byte array the object <var>accessoDatiGestioneToken</var> of type {@link org.openspcoop2.core.config.AccessoDatiGestioneToken}
  1763.      *
  1764.      * @param accessoDatiGestioneToken Object to be serialized
  1765.      * @param prettyPrint if true output the XML with indenting
  1766.      * @return Object to be serialized in byte array
  1767.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1768.      */
  1769.     public byte[] toByteArray(AccessoDatiGestioneToken accessoDatiGestioneToken,boolean prettyPrint) throws SerializerException {
  1770.         return this.objToXml(AccessoDatiGestioneToken.class, accessoDatiGestioneToken, prettyPrint).toByteArray();
  1771.     }
  1772.    
  1773.     /**
  1774.      * Serialize to String the object <var>accessoDatiGestioneToken</var> of type {@link org.openspcoop2.core.config.AccessoDatiGestioneToken}
  1775.      *
  1776.      * @param accessoDatiGestioneToken Object to be serialized
  1777.      * @return Object to be serialized as String
  1778.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1779.      */
  1780.     public String toString(AccessoDatiGestioneToken accessoDatiGestioneToken) throws SerializerException {
  1781.         return this.objToXml(AccessoDatiGestioneToken.class, accessoDatiGestioneToken, false).toString();
  1782.     }
  1783.     /**
  1784.      * Serialize to String the object <var>accessoDatiGestioneToken</var> of type {@link org.openspcoop2.core.config.AccessoDatiGestioneToken}
  1785.      *
  1786.      * @param accessoDatiGestioneToken Object to be serialized
  1787.      * @param prettyPrint if true output the XML with indenting
  1788.      * @return Object to be serialized as String
  1789.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1790.      */
  1791.     public String toString(AccessoDatiGestioneToken accessoDatiGestioneToken,boolean prettyPrint) throws SerializerException {
  1792.         return this.objToXml(AccessoDatiGestioneToken.class, accessoDatiGestioneToken, prettyPrint).toString();
  1793.     }
  1794.    
  1795.    
  1796.    
  1797.     /*
  1798.      =================================================================================
  1799.      Object: mtom-processor-flow
  1800.      =================================================================================
  1801.     */
  1802.    
  1803.     /**
  1804.      * Serialize to file system in <var>fileName</var> the object <var>mtomProcessorFlow</var> of type {@link org.openspcoop2.core.config.MtomProcessorFlow}
  1805.      *
  1806.      * @param fileName Xml file to serialize the object <var>mtomProcessorFlow</var>
  1807.      * @param mtomProcessorFlow Object to be serialized in xml file <var>fileName</var>
  1808.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1809.      */
  1810.     public void write(String fileName,MtomProcessorFlow mtomProcessorFlow) throws SerializerException {
  1811.         this.objToXml(fileName, MtomProcessorFlow.class, mtomProcessorFlow, false);
  1812.     }
  1813.     /**
  1814.      * Serialize to file system in <var>fileName</var> the object <var>mtomProcessorFlow</var> of type {@link org.openspcoop2.core.config.MtomProcessorFlow}
  1815.      *
  1816.      * @param fileName Xml file to serialize the object <var>mtomProcessorFlow</var>
  1817.      * @param mtomProcessorFlow Object to be serialized in xml file <var>fileName</var>
  1818.      * @param prettyPrint if true output the XML with indenting
  1819.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1820.      */
  1821.     public void write(String fileName,MtomProcessorFlow mtomProcessorFlow,boolean prettyPrint) throws SerializerException {
  1822.         this.objToXml(fileName, MtomProcessorFlow.class, mtomProcessorFlow, prettyPrint);
  1823.     }
  1824.    
  1825.     /**
  1826.      * Serialize to file system in <var>file</var> the object <var>mtomProcessorFlow</var> of type {@link org.openspcoop2.core.config.MtomProcessorFlow}
  1827.      *
  1828.      * @param file Xml file to serialize the object <var>mtomProcessorFlow</var>
  1829.      * @param mtomProcessorFlow Object to be serialized in xml file <var>fileName</var>
  1830.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1831.      */
  1832.     public void write(File file,MtomProcessorFlow mtomProcessorFlow) throws SerializerException {
  1833.         this.objToXml(file, MtomProcessorFlow.class, mtomProcessorFlow, false);
  1834.     }
  1835.     /**
  1836.      * Serialize to file system in <var>file</var> the object <var>mtomProcessorFlow</var> of type {@link org.openspcoop2.core.config.MtomProcessorFlow}
  1837.      *
  1838.      * @param file Xml file to serialize the object <var>mtomProcessorFlow</var>
  1839.      * @param mtomProcessorFlow Object to be serialized in xml file <var>fileName</var>
  1840.      * @param prettyPrint if true output the XML with indenting
  1841.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1842.      */
  1843.     public void write(File file,MtomProcessorFlow mtomProcessorFlow,boolean prettyPrint) throws SerializerException {
  1844.         this.objToXml(file, MtomProcessorFlow.class, mtomProcessorFlow, prettyPrint);
  1845.     }
  1846.    
  1847.     /**
  1848.      * Serialize to output stream <var>out</var> the object <var>mtomProcessorFlow</var> of type {@link org.openspcoop2.core.config.MtomProcessorFlow}
  1849.      *
  1850.      * @param out OutputStream to serialize the object <var>mtomProcessorFlow</var>
  1851.      * @param mtomProcessorFlow Object to be serialized in xml file <var>fileName</var>
  1852.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1853.      */
  1854.     public void write(OutputStream out,MtomProcessorFlow mtomProcessorFlow) throws SerializerException {
  1855.         this.objToXml(out, MtomProcessorFlow.class, mtomProcessorFlow, false);
  1856.     }
  1857.     /**
  1858.      * Serialize to output stream <var>out</var> the object <var>mtomProcessorFlow</var> of type {@link org.openspcoop2.core.config.MtomProcessorFlow}
  1859.      *
  1860.      * @param out OutputStream to serialize the object <var>mtomProcessorFlow</var>
  1861.      * @param mtomProcessorFlow Object to be serialized in xml file <var>fileName</var>
  1862.      * @param prettyPrint if true output the XML with indenting
  1863.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1864.      */
  1865.     public void write(OutputStream out,MtomProcessorFlow mtomProcessorFlow,boolean prettyPrint) throws SerializerException {
  1866.         this.objToXml(out, MtomProcessorFlow.class, mtomProcessorFlow, prettyPrint);
  1867.     }
  1868.            
  1869.     /**
  1870.      * Serialize to byte array the object <var>mtomProcessorFlow</var> of type {@link org.openspcoop2.core.config.MtomProcessorFlow}
  1871.      *
  1872.      * @param mtomProcessorFlow Object to be serialized
  1873.      * @return Object to be serialized in byte array
  1874.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1875.      */
  1876.     public byte[] toByteArray(MtomProcessorFlow mtomProcessorFlow) throws SerializerException {
  1877.         return this.objToXml(MtomProcessorFlow.class, mtomProcessorFlow, false).toByteArray();
  1878.     }
  1879.     /**
  1880.      * Serialize to byte array the object <var>mtomProcessorFlow</var> of type {@link org.openspcoop2.core.config.MtomProcessorFlow}
  1881.      *
  1882.      * @param mtomProcessorFlow Object to be serialized
  1883.      * @param prettyPrint if true output the XML with indenting
  1884.      * @return Object to be serialized in byte array
  1885.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1886.      */
  1887.     public byte[] toByteArray(MtomProcessorFlow mtomProcessorFlow,boolean prettyPrint) throws SerializerException {
  1888.         return this.objToXml(MtomProcessorFlow.class, mtomProcessorFlow, prettyPrint).toByteArray();
  1889.     }
  1890.    
  1891.     /**
  1892.      * Serialize to String the object <var>mtomProcessorFlow</var> of type {@link org.openspcoop2.core.config.MtomProcessorFlow}
  1893.      *
  1894.      * @param mtomProcessorFlow Object to be serialized
  1895.      * @return Object to be serialized as String
  1896.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1897.      */
  1898.     public String toString(MtomProcessorFlow mtomProcessorFlow) throws SerializerException {
  1899.         return this.objToXml(MtomProcessorFlow.class, mtomProcessorFlow, false).toString();
  1900.     }
  1901.     /**
  1902.      * Serialize to String the object <var>mtomProcessorFlow</var> of type {@link org.openspcoop2.core.config.MtomProcessorFlow}
  1903.      *
  1904.      * @param mtomProcessorFlow Object to be serialized
  1905.      * @param prettyPrint if true output the XML with indenting
  1906.      * @return Object to be serialized as String
  1907.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1908.      */
  1909.     public String toString(MtomProcessorFlow mtomProcessorFlow,boolean prettyPrint) throws SerializerException {
  1910.         return this.objToXml(MtomProcessorFlow.class, mtomProcessorFlow, prettyPrint).toString();
  1911.     }
  1912.    
  1913.    
  1914.    
  1915.     /*
  1916.      =================================================================================
  1917.      Object: mtom-processor
  1918.      =================================================================================
  1919.     */
  1920.    
  1921.     /**
  1922.      * Serialize to file system in <var>fileName</var> the object <var>mtomProcessor</var> of type {@link org.openspcoop2.core.config.MtomProcessor}
  1923.      *
  1924.      * @param fileName Xml file to serialize the object <var>mtomProcessor</var>
  1925.      * @param mtomProcessor Object to be serialized in xml file <var>fileName</var>
  1926.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1927.      */
  1928.     public void write(String fileName,MtomProcessor mtomProcessor) throws SerializerException {
  1929.         this.objToXml(fileName, MtomProcessor.class, mtomProcessor, false);
  1930.     }
  1931.     /**
  1932.      * Serialize to file system in <var>fileName</var> the object <var>mtomProcessor</var> of type {@link org.openspcoop2.core.config.MtomProcessor}
  1933.      *
  1934.      * @param fileName Xml file to serialize the object <var>mtomProcessor</var>
  1935.      * @param mtomProcessor Object to be serialized in xml file <var>fileName</var>
  1936.      * @param prettyPrint if true output the XML with indenting
  1937.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1938.      */
  1939.     public void write(String fileName,MtomProcessor mtomProcessor,boolean prettyPrint) throws SerializerException {
  1940.         this.objToXml(fileName, MtomProcessor.class, mtomProcessor, prettyPrint);
  1941.     }
  1942.    
  1943.     /**
  1944.      * Serialize to file system in <var>file</var> the object <var>mtomProcessor</var> of type {@link org.openspcoop2.core.config.MtomProcessor}
  1945.      *
  1946.      * @param file Xml file to serialize the object <var>mtomProcessor</var>
  1947.      * @param mtomProcessor Object to be serialized in xml file <var>fileName</var>
  1948.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1949.      */
  1950.     public void write(File file,MtomProcessor mtomProcessor) throws SerializerException {
  1951.         this.objToXml(file, MtomProcessor.class, mtomProcessor, false);
  1952.     }
  1953.     /**
  1954.      * Serialize to file system in <var>file</var> the object <var>mtomProcessor</var> of type {@link org.openspcoop2.core.config.MtomProcessor}
  1955.      *
  1956.      * @param file Xml file to serialize the object <var>mtomProcessor</var>
  1957.      * @param mtomProcessor Object to be serialized in xml file <var>fileName</var>
  1958.      * @param prettyPrint if true output the XML with indenting
  1959.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1960.      */
  1961.     public void write(File file,MtomProcessor mtomProcessor,boolean prettyPrint) throws SerializerException {
  1962.         this.objToXml(file, MtomProcessor.class, mtomProcessor, prettyPrint);
  1963.     }
  1964.    
  1965.     /**
  1966.      * Serialize to output stream <var>out</var> the object <var>mtomProcessor</var> of type {@link org.openspcoop2.core.config.MtomProcessor}
  1967.      *
  1968.      * @param out OutputStream to serialize the object <var>mtomProcessor</var>
  1969.      * @param mtomProcessor Object to be serialized in xml file <var>fileName</var>
  1970.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1971.      */
  1972.     public void write(OutputStream out,MtomProcessor mtomProcessor) throws SerializerException {
  1973.         this.objToXml(out, MtomProcessor.class, mtomProcessor, false);
  1974.     }
  1975.     /**
  1976.      * Serialize to output stream <var>out</var> the object <var>mtomProcessor</var> of type {@link org.openspcoop2.core.config.MtomProcessor}
  1977.      *
  1978.      * @param out OutputStream to serialize the object <var>mtomProcessor</var>
  1979.      * @param mtomProcessor Object to be serialized in xml file <var>fileName</var>
  1980.      * @param prettyPrint if true output the XML with indenting
  1981.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1982.      */
  1983.     public void write(OutputStream out,MtomProcessor mtomProcessor,boolean prettyPrint) throws SerializerException {
  1984.         this.objToXml(out, MtomProcessor.class, mtomProcessor, prettyPrint);
  1985.     }
  1986.            
  1987.     /**
  1988.      * Serialize to byte array the object <var>mtomProcessor</var> of type {@link org.openspcoop2.core.config.MtomProcessor}
  1989.      *
  1990.      * @param mtomProcessor Object to be serialized
  1991.      * @return Object to be serialized in byte array
  1992.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1993.      */
  1994.     public byte[] toByteArray(MtomProcessor mtomProcessor) throws SerializerException {
  1995.         return this.objToXml(MtomProcessor.class, mtomProcessor, false).toByteArray();
  1996.     }
  1997.     /**
  1998.      * Serialize to byte array the object <var>mtomProcessor</var> of type {@link org.openspcoop2.core.config.MtomProcessor}
  1999.      *
  2000.      * @param mtomProcessor Object to be serialized
  2001.      * @param prettyPrint if true output the XML with indenting
  2002.      * @return Object to be serialized in byte array
  2003.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2004.      */
  2005.     public byte[] toByteArray(MtomProcessor mtomProcessor,boolean prettyPrint) throws SerializerException {
  2006.         return this.objToXml(MtomProcessor.class, mtomProcessor, prettyPrint).toByteArray();
  2007.     }
  2008.    
  2009.     /**
  2010.      * Serialize to String the object <var>mtomProcessor</var> of type {@link org.openspcoop2.core.config.MtomProcessor}
  2011.      *
  2012.      * @param mtomProcessor Object to be serialized
  2013.      * @return Object to be serialized as String
  2014.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2015.      */
  2016.     public String toString(MtomProcessor mtomProcessor) throws SerializerException {
  2017.         return this.objToXml(MtomProcessor.class, mtomProcessor, false).toString();
  2018.     }
  2019.     /**
  2020.      * Serialize to String the object <var>mtomProcessor</var> of type {@link org.openspcoop2.core.config.MtomProcessor}
  2021.      *
  2022.      * @param mtomProcessor Object to be serialized
  2023.      * @param prettyPrint if true output the XML with indenting
  2024.      * @return Object to be serialized as String
  2025.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2026.      */
  2027.     public String toString(MtomProcessor mtomProcessor,boolean prettyPrint) throws SerializerException {
  2028.         return this.objToXml(MtomProcessor.class, mtomProcessor, prettyPrint).toString();
  2029.     }
  2030.    
  2031.    
  2032.    
  2033.     /*
  2034.      =================================================================================
  2035.      Object: gestione-errore-codice-trasporto
  2036.      =================================================================================
  2037.     */
  2038.    
  2039.     /**
  2040.      * Serialize to file system in <var>fileName</var> the object <var>gestioneErroreCodiceTrasporto</var> of type {@link org.openspcoop2.core.config.GestioneErroreCodiceTrasporto}
  2041.      *
  2042.      * @param fileName Xml file to serialize the object <var>gestioneErroreCodiceTrasporto</var>
  2043.      * @param gestioneErroreCodiceTrasporto Object to be serialized in xml file <var>fileName</var>
  2044.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2045.      */
  2046.     public void write(String fileName,GestioneErroreCodiceTrasporto gestioneErroreCodiceTrasporto) throws SerializerException {
  2047.         this.objToXml(fileName, GestioneErroreCodiceTrasporto.class, gestioneErroreCodiceTrasporto, false);
  2048.     }
  2049.     /**
  2050.      * Serialize to file system in <var>fileName</var> the object <var>gestioneErroreCodiceTrasporto</var> of type {@link org.openspcoop2.core.config.GestioneErroreCodiceTrasporto}
  2051.      *
  2052.      * @param fileName Xml file to serialize the object <var>gestioneErroreCodiceTrasporto</var>
  2053.      * @param gestioneErroreCodiceTrasporto Object to be serialized in xml file <var>fileName</var>
  2054.      * @param prettyPrint if true output the XML with indenting
  2055.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2056.      */
  2057.     public void write(String fileName,GestioneErroreCodiceTrasporto gestioneErroreCodiceTrasporto,boolean prettyPrint) throws SerializerException {
  2058.         this.objToXml(fileName, GestioneErroreCodiceTrasporto.class, gestioneErroreCodiceTrasporto, prettyPrint);
  2059.     }
  2060.    
  2061.     /**
  2062.      * Serialize to file system in <var>file</var> the object <var>gestioneErroreCodiceTrasporto</var> of type {@link org.openspcoop2.core.config.GestioneErroreCodiceTrasporto}
  2063.      *
  2064.      * @param file Xml file to serialize the object <var>gestioneErroreCodiceTrasporto</var>
  2065.      * @param gestioneErroreCodiceTrasporto Object to be serialized in xml file <var>fileName</var>
  2066.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2067.      */
  2068.     public void write(File file,GestioneErroreCodiceTrasporto gestioneErroreCodiceTrasporto) throws SerializerException {
  2069.         this.objToXml(file, GestioneErroreCodiceTrasporto.class, gestioneErroreCodiceTrasporto, false);
  2070.     }
  2071.     /**
  2072.      * Serialize to file system in <var>file</var> the object <var>gestioneErroreCodiceTrasporto</var> of type {@link org.openspcoop2.core.config.GestioneErroreCodiceTrasporto}
  2073.      *
  2074.      * @param file Xml file to serialize the object <var>gestioneErroreCodiceTrasporto</var>
  2075.      * @param gestioneErroreCodiceTrasporto Object to be serialized in xml file <var>fileName</var>
  2076.      * @param prettyPrint if true output the XML with indenting
  2077.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2078.      */
  2079.     public void write(File file,GestioneErroreCodiceTrasporto gestioneErroreCodiceTrasporto,boolean prettyPrint) throws SerializerException {
  2080.         this.objToXml(file, GestioneErroreCodiceTrasporto.class, gestioneErroreCodiceTrasporto, prettyPrint);
  2081.     }
  2082.    
  2083.     /**
  2084.      * Serialize to output stream <var>out</var> the object <var>gestioneErroreCodiceTrasporto</var> of type {@link org.openspcoop2.core.config.GestioneErroreCodiceTrasporto}
  2085.      *
  2086.      * @param out OutputStream to serialize the object <var>gestioneErroreCodiceTrasporto</var>
  2087.      * @param gestioneErroreCodiceTrasporto Object to be serialized in xml file <var>fileName</var>
  2088.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2089.      */
  2090.     public void write(OutputStream out,GestioneErroreCodiceTrasporto gestioneErroreCodiceTrasporto) throws SerializerException {
  2091.         this.objToXml(out, GestioneErroreCodiceTrasporto.class, gestioneErroreCodiceTrasporto, false);
  2092.     }
  2093.     /**
  2094.      * Serialize to output stream <var>out</var> the object <var>gestioneErroreCodiceTrasporto</var> of type {@link org.openspcoop2.core.config.GestioneErroreCodiceTrasporto}
  2095.      *
  2096.      * @param out OutputStream to serialize the object <var>gestioneErroreCodiceTrasporto</var>
  2097.      * @param gestioneErroreCodiceTrasporto Object to be serialized in xml file <var>fileName</var>
  2098.      * @param prettyPrint if true output the XML with indenting
  2099.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2100.      */
  2101.     public void write(OutputStream out,GestioneErroreCodiceTrasporto gestioneErroreCodiceTrasporto,boolean prettyPrint) throws SerializerException {
  2102.         this.objToXml(out, GestioneErroreCodiceTrasporto.class, gestioneErroreCodiceTrasporto, prettyPrint);
  2103.     }
  2104.            
  2105.     /**
  2106.      * Serialize to byte array the object <var>gestioneErroreCodiceTrasporto</var> of type {@link org.openspcoop2.core.config.GestioneErroreCodiceTrasporto}
  2107.      *
  2108.      * @param gestioneErroreCodiceTrasporto Object to be serialized
  2109.      * @return Object to be serialized in byte array
  2110.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2111.      */
  2112.     public byte[] toByteArray(GestioneErroreCodiceTrasporto gestioneErroreCodiceTrasporto) throws SerializerException {
  2113.         return this.objToXml(GestioneErroreCodiceTrasporto.class, gestioneErroreCodiceTrasporto, false).toByteArray();
  2114.     }
  2115.     /**
  2116.      * Serialize to byte array the object <var>gestioneErroreCodiceTrasporto</var> of type {@link org.openspcoop2.core.config.GestioneErroreCodiceTrasporto}
  2117.      *
  2118.      * @param gestioneErroreCodiceTrasporto Object to be serialized
  2119.      * @param prettyPrint if true output the XML with indenting
  2120.      * @return Object to be serialized in byte array
  2121.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2122.      */
  2123.     public byte[] toByteArray(GestioneErroreCodiceTrasporto gestioneErroreCodiceTrasporto,boolean prettyPrint) throws SerializerException {
  2124.         return this.objToXml(GestioneErroreCodiceTrasporto.class, gestioneErroreCodiceTrasporto, prettyPrint).toByteArray();
  2125.     }
  2126.    
  2127.     /**
  2128.      * Serialize to String the object <var>gestioneErroreCodiceTrasporto</var> of type {@link org.openspcoop2.core.config.GestioneErroreCodiceTrasporto}
  2129.      *
  2130.      * @param gestioneErroreCodiceTrasporto Object to be serialized
  2131.      * @return Object to be serialized as String
  2132.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2133.      */
  2134.     public String toString(GestioneErroreCodiceTrasporto gestioneErroreCodiceTrasporto) throws SerializerException {
  2135.         return this.objToXml(GestioneErroreCodiceTrasporto.class, gestioneErroreCodiceTrasporto, false).toString();
  2136.     }
  2137.     /**
  2138.      * Serialize to String the object <var>gestioneErroreCodiceTrasporto</var> of type {@link org.openspcoop2.core.config.GestioneErroreCodiceTrasporto}
  2139.      *
  2140.      * @param gestioneErroreCodiceTrasporto Object to be serialized
  2141.      * @param prettyPrint if true output the XML with indenting
  2142.      * @return Object to be serialized as String
  2143.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2144.      */
  2145.     public String toString(GestioneErroreCodiceTrasporto gestioneErroreCodiceTrasporto,boolean prettyPrint) throws SerializerException {
  2146.         return this.objToXml(GestioneErroreCodiceTrasporto.class, gestioneErroreCodiceTrasporto, prettyPrint).toString();
  2147.     }
  2148.    
  2149.    
  2150.    
  2151.     /*
  2152.      =================================================================================
  2153.      Object: gestione-errore
  2154.      =================================================================================
  2155.     */
  2156.    
  2157.     /**
  2158.      * Serialize to file system in <var>fileName</var> the object <var>gestioneErrore</var> of type {@link org.openspcoop2.core.config.GestioneErrore}
  2159.      *
  2160.      * @param fileName Xml file to serialize the object <var>gestioneErrore</var>
  2161.      * @param gestioneErrore Object to be serialized in xml file <var>fileName</var>
  2162.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2163.      */
  2164.     public void write(String fileName,GestioneErrore gestioneErrore) throws SerializerException {
  2165.         this.objToXml(fileName, GestioneErrore.class, gestioneErrore, false);
  2166.     }
  2167.     /**
  2168.      * Serialize to file system in <var>fileName</var> the object <var>gestioneErrore</var> of type {@link org.openspcoop2.core.config.GestioneErrore}
  2169.      *
  2170.      * @param fileName Xml file to serialize the object <var>gestioneErrore</var>
  2171.      * @param gestioneErrore Object to be serialized in xml file <var>fileName</var>
  2172.      * @param prettyPrint if true output the XML with indenting
  2173.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2174.      */
  2175.     public void write(String fileName,GestioneErrore gestioneErrore,boolean prettyPrint) throws SerializerException {
  2176.         this.objToXml(fileName, GestioneErrore.class, gestioneErrore, prettyPrint);
  2177.     }
  2178.    
  2179.     /**
  2180.      * Serialize to file system in <var>file</var> the object <var>gestioneErrore</var> of type {@link org.openspcoop2.core.config.GestioneErrore}
  2181.      *
  2182.      * @param file Xml file to serialize the object <var>gestioneErrore</var>
  2183.      * @param gestioneErrore Object to be serialized in xml file <var>fileName</var>
  2184.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2185.      */
  2186.     public void write(File file,GestioneErrore gestioneErrore) throws SerializerException {
  2187.         this.objToXml(file, GestioneErrore.class, gestioneErrore, false);
  2188.     }
  2189.     /**
  2190.      * Serialize to file system in <var>file</var> the object <var>gestioneErrore</var> of type {@link org.openspcoop2.core.config.GestioneErrore}
  2191.      *
  2192.      * @param file Xml file to serialize the object <var>gestioneErrore</var>
  2193.      * @param gestioneErrore Object to be serialized in xml file <var>fileName</var>
  2194.      * @param prettyPrint if true output the XML with indenting
  2195.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2196.      */
  2197.     public void write(File file,GestioneErrore gestioneErrore,boolean prettyPrint) throws SerializerException {
  2198.         this.objToXml(file, GestioneErrore.class, gestioneErrore, prettyPrint);
  2199.     }
  2200.    
  2201.     /**
  2202.      * Serialize to output stream <var>out</var> the object <var>gestioneErrore</var> of type {@link org.openspcoop2.core.config.GestioneErrore}
  2203.      *
  2204.      * @param out OutputStream to serialize the object <var>gestioneErrore</var>
  2205.      * @param gestioneErrore Object to be serialized in xml file <var>fileName</var>
  2206.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2207.      */
  2208.     public void write(OutputStream out,GestioneErrore gestioneErrore) throws SerializerException {
  2209.         this.objToXml(out, GestioneErrore.class, gestioneErrore, false);
  2210.     }
  2211.     /**
  2212.      * Serialize to output stream <var>out</var> the object <var>gestioneErrore</var> of type {@link org.openspcoop2.core.config.GestioneErrore}
  2213.      *
  2214.      * @param out OutputStream to serialize the object <var>gestioneErrore</var>
  2215.      * @param gestioneErrore Object to be serialized in xml file <var>fileName</var>
  2216.      * @param prettyPrint if true output the XML with indenting
  2217.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2218.      */
  2219.     public void write(OutputStream out,GestioneErrore gestioneErrore,boolean prettyPrint) throws SerializerException {
  2220.         this.objToXml(out, GestioneErrore.class, gestioneErrore, prettyPrint);
  2221.     }
  2222.            
  2223.     /**
  2224.      * Serialize to byte array the object <var>gestioneErrore</var> of type {@link org.openspcoop2.core.config.GestioneErrore}
  2225.      *
  2226.      * @param gestioneErrore Object to be serialized
  2227.      * @return Object to be serialized in byte array
  2228.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2229.      */
  2230.     public byte[] toByteArray(GestioneErrore gestioneErrore) throws SerializerException {
  2231.         return this.objToXml(GestioneErrore.class, gestioneErrore, false).toByteArray();
  2232.     }
  2233.     /**
  2234.      * Serialize to byte array the object <var>gestioneErrore</var> of type {@link org.openspcoop2.core.config.GestioneErrore}
  2235.      *
  2236.      * @param gestioneErrore Object to be serialized
  2237.      * @param prettyPrint if true output the XML with indenting
  2238.      * @return Object to be serialized in byte array
  2239.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2240.      */
  2241.     public byte[] toByteArray(GestioneErrore gestioneErrore,boolean prettyPrint) throws SerializerException {
  2242.         return this.objToXml(GestioneErrore.class, gestioneErrore, prettyPrint).toByteArray();
  2243.     }
  2244.    
  2245.     /**
  2246.      * Serialize to String the object <var>gestioneErrore</var> of type {@link org.openspcoop2.core.config.GestioneErrore}
  2247.      *
  2248.      * @param gestioneErrore Object to be serialized
  2249.      * @return Object to be serialized as String
  2250.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2251.      */
  2252.     public String toString(GestioneErrore gestioneErrore) throws SerializerException {
  2253.         return this.objToXml(GestioneErrore.class, gestioneErrore, false).toString();
  2254.     }
  2255.     /**
  2256.      * Serialize to String the object <var>gestioneErrore</var> of type {@link org.openspcoop2.core.config.GestioneErrore}
  2257.      *
  2258.      * @param gestioneErrore Object to be serialized
  2259.      * @param prettyPrint if true output the XML with indenting
  2260.      * @return Object to be serialized as String
  2261.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2262.      */
  2263.     public String toString(GestioneErrore gestioneErrore,boolean prettyPrint) throws SerializerException {
  2264.         return this.objToXml(GestioneErrore.class, gestioneErrore, prettyPrint).toString();
  2265.     }
  2266.    
  2267.    
  2268.    
  2269.     /*
  2270.      =================================================================================
  2271.      Object: gestione-errore-soap-fault
  2272.      =================================================================================
  2273.     */
  2274.    
  2275.     /**
  2276.      * Serialize to file system in <var>fileName</var> the object <var>gestioneErroreSoapFault</var> of type {@link org.openspcoop2.core.config.GestioneErroreSoapFault}
  2277.      *
  2278.      * @param fileName Xml file to serialize the object <var>gestioneErroreSoapFault</var>
  2279.      * @param gestioneErroreSoapFault Object to be serialized in xml file <var>fileName</var>
  2280.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2281.      */
  2282.     public void write(String fileName,GestioneErroreSoapFault gestioneErroreSoapFault) throws SerializerException {
  2283.         this.objToXml(fileName, GestioneErroreSoapFault.class, gestioneErroreSoapFault, false);
  2284.     }
  2285.     /**
  2286.      * Serialize to file system in <var>fileName</var> the object <var>gestioneErroreSoapFault</var> of type {@link org.openspcoop2.core.config.GestioneErroreSoapFault}
  2287.      *
  2288.      * @param fileName Xml file to serialize the object <var>gestioneErroreSoapFault</var>
  2289.      * @param gestioneErroreSoapFault Object to be serialized in xml file <var>fileName</var>
  2290.      * @param prettyPrint if true output the XML with indenting
  2291.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2292.      */
  2293.     public void write(String fileName,GestioneErroreSoapFault gestioneErroreSoapFault,boolean prettyPrint) throws SerializerException {
  2294.         this.objToXml(fileName, GestioneErroreSoapFault.class, gestioneErroreSoapFault, prettyPrint);
  2295.     }
  2296.    
  2297.     /**
  2298.      * Serialize to file system in <var>file</var> the object <var>gestioneErroreSoapFault</var> of type {@link org.openspcoop2.core.config.GestioneErroreSoapFault}
  2299.      *
  2300.      * @param file Xml file to serialize the object <var>gestioneErroreSoapFault</var>
  2301.      * @param gestioneErroreSoapFault Object to be serialized in xml file <var>fileName</var>
  2302.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2303.      */
  2304.     public void write(File file,GestioneErroreSoapFault gestioneErroreSoapFault) throws SerializerException {
  2305.         this.objToXml(file, GestioneErroreSoapFault.class, gestioneErroreSoapFault, false);
  2306.     }
  2307.     /**
  2308.      * Serialize to file system in <var>file</var> the object <var>gestioneErroreSoapFault</var> of type {@link org.openspcoop2.core.config.GestioneErroreSoapFault}
  2309.      *
  2310.      * @param file Xml file to serialize the object <var>gestioneErroreSoapFault</var>
  2311.      * @param gestioneErroreSoapFault Object to be serialized in xml file <var>fileName</var>
  2312.      * @param prettyPrint if true output the XML with indenting
  2313.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2314.      */
  2315.     public void write(File file,GestioneErroreSoapFault gestioneErroreSoapFault,boolean prettyPrint) throws SerializerException {
  2316.         this.objToXml(file, GestioneErroreSoapFault.class, gestioneErroreSoapFault, prettyPrint);
  2317.     }
  2318.    
  2319.     /**
  2320.      * Serialize to output stream <var>out</var> the object <var>gestioneErroreSoapFault</var> of type {@link org.openspcoop2.core.config.GestioneErroreSoapFault}
  2321.      *
  2322.      * @param out OutputStream to serialize the object <var>gestioneErroreSoapFault</var>
  2323.      * @param gestioneErroreSoapFault Object to be serialized in xml file <var>fileName</var>
  2324.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2325.      */
  2326.     public void write(OutputStream out,GestioneErroreSoapFault gestioneErroreSoapFault) throws SerializerException {
  2327.         this.objToXml(out, GestioneErroreSoapFault.class, gestioneErroreSoapFault, false);
  2328.     }
  2329.     /**
  2330.      * Serialize to output stream <var>out</var> the object <var>gestioneErroreSoapFault</var> of type {@link org.openspcoop2.core.config.GestioneErroreSoapFault}
  2331.      *
  2332.      * @param out OutputStream to serialize the object <var>gestioneErroreSoapFault</var>
  2333.      * @param gestioneErroreSoapFault Object to be serialized in xml file <var>fileName</var>
  2334.      * @param prettyPrint if true output the XML with indenting
  2335.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2336.      */
  2337.     public void write(OutputStream out,GestioneErroreSoapFault gestioneErroreSoapFault,boolean prettyPrint) throws SerializerException {
  2338.         this.objToXml(out, GestioneErroreSoapFault.class, gestioneErroreSoapFault, prettyPrint);
  2339.     }
  2340.            
  2341.     /**
  2342.      * Serialize to byte array the object <var>gestioneErroreSoapFault</var> of type {@link org.openspcoop2.core.config.GestioneErroreSoapFault}
  2343.      *
  2344.      * @param gestioneErroreSoapFault Object to be serialized
  2345.      * @return Object to be serialized in byte array
  2346.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2347.      */
  2348.     public byte[] toByteArray(GestioneErroreSoapFault gestioneErroreSoapFault) throws SerializerException {
  2349.         return this.objToXml(GestioneErroreSoapFault.class, gestioneErroreSoapFault, false).toByteArray();
  2350.     }
  2351.     /**
  2352.      * Serialize to byte array the object <var>gestioneErroreSoapFault</var> of type {@link org.openspcoop2.core.config.GestioneErroreSoapFault}
  2353.      *
  2354.      * @param gestioneErroreSoapFault Object to be serialized
  2355.      * @param prettyPrint if true output the XML with indenting
  2356.      * @return Object to be serialized in byte array
  2357.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2358.      */
  2359.     public byte[] toByteArray(GestioneErroreSoapFault gestioneErroreSoapFault,boolean prettyPrint) throws SerializerException {
  2360.         return this.objToXml(GestioneErroreSoapFault.class, gestioneErroreSoapFault, prettyPrint).toByteArray();
  2361.     }
  2362.    
  2363.     /**
  2364.      * Serialize to String the object <var>gestioneErroreSoapFault</var> of type {@link org.openspcoop2.core.config.GestioneErroreSoapFault}
  2365.      *
  2366.      * @param gestioneErroreSoapFault Object to be serialized
  2367.      * @return Object to be serialized as String
  2368.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2369.      */
  2370.     public String toString(GestioneErroreSoapFault gestioneErroreSoapFault) throws SerializerException {
  2371.         return this.objToXml(GestioneErroreSoapFault.class, gestioneErroreSoapFault, false).toString();
  2372.     }
  2373.     /**
  2374.      * Serialize to String the object <var>gestioneErroreSoapFault</var> of type {@link org.openspcoop2.core.config.GestioneErroreSoapFault}
  2375.      *
  2376.      * @param gestioneErroreSoapFault Object to be serialized
  2377.      * @param prettyPrint if true output the XML with indenting
  2378.      * @return Object to be serialized as String
  2379.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2380.      */
  2381.     public String toString(GestioneErroreSoapFault gestioneErroreSoapFault,boolean prettyPrint) throws SerializerException {
  2382.         return this.objToXml(GestioneErroreSoapFault.class, gestioneErroreSoapFault, prettyPrint).toString();
  2383.     }
  2384.    
  2385.    
  2386.    
  2387.     /*
  2388.      =================================================================================
  2389.      Object: gestione-token-autenticazione
  2390.      =================================================================================
  2391.     */
  2392.    
  2393.     /**
  2394.      * Serialize to file system in <var>fileName</var> the object <var>gestioneTokenAutenticazione</var> of type {@link org.openspcoop2.core.config.GestioneTokenAutenticazione}
  2395.      *
  2396.      * @param fileName Xml file to serialize the object <var>gestioneTokenAutenticazione</var>
  2397.      * @param gestioneTokenAutenticazione Object to be serialized in xml file <var>fileName</var>
  2398.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2399.      */
  2400.     public void write(String fileName,GestioneTokenAutenticazione gestioneTokenAutenticazione) throws SerializerException {
  2401.         this.objToXml(fileName, GestioneTokenAutenticazione.class, gestioneTokenAutenticazione, false);
  2402.     }
  2403.     /**
  2404.      * Serialize to file system in <var>fileName</var> the object <var>gestioneTokenAutenticazione</var> of type {@link org.openspcoop2.core.config.GestioneTokenAutenticazione}
  2405.      *
  2406.      * @param fileName Xml file to serialize the object <var>gestioneTokenAutenticazione</var>
  2407.      * @param gestioneTokenAutenticazione Object to be serialized in xml file <var>fileName</var>
  2408.      * @param prettyPrint if true output the XML with indenting
  2409.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2410.      */
  2411.     public void write(String fileName,GestioneTokenAutenticazione gestioneTokenAutenticazione,boolean prettyPrint) throws SerializerException {
  2412.         this.objToXml(fileName, GestioneTokenAutenticazione.class, gestioneTokenAutenticazione, prettyPrint);
  2413.     }
  2414.    
  2415.     /**
  2416.      * Serialize to file system in <var>file</var> the object <var>gestioneTokenAutenticazione</var> of type {@link org.openspcoop2.core.config.GestioneTokenAutenticazione}
  2417.      *
  2418.      * @param file Xml file to serialize the object <var>gestioneTokenAutenticazione</var>
  2419.      * @param gestioneTokenAutenticazione Object to be serialized in xml file <var>fileName</var>
  2420.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2421.      */
  2422.     public void write(File file,GestioneTokenAutenticazione gestioneTokenAutenticazione) throws SerializerException {
  2423.         this.objToXml(file, GestioneTokenAutenticazione.class, gestioneTokenAutenticazione, false);
  2424.     }
  2425.     /**
  2426.      * Serialize to file system in <var>file</var> the object <var>gestioneTokenAutenticazione</var> of type {@link org.openspcoop2.core.config.GestioneTokenAutenticazione}
  2427.      *
  2428.      * @param file Xml file to serialize the object <var>gestioneTokenAutenticazione</var>
  2429.      * @param gestioneTokenAutenticazione Object to be serialized in xml file <var>fileName</var>
  2430.      * @param prettyPrint if true output the XML with indenting
  2431.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2432.      */
  2433.     public void write(File file,GestioneTokenAutenticazione gestioneTokenAutenticazione,boolean prettyPrint) throws SerializerException {
  2434.         this.objToXml(file, GestioneTokenAutenticazione.class, gestioneTokenAutenticazione, prettyPrint);
  2435.     }
  2436.    
  2437.     /**
  2438.      * Serialize to output stream <var>out</var> the object <var>gestioneTokenAutenticazione</var> of type {@link org.openspcoop2.core.config.GestioneTokenAutenticazione}
  2439.      *
  2440.      * @param out OutputStream to serialize the object <var>gestioneTokenAutenticazione</var>
  2441.      * @param gestioneTokenAutenticazione Object to be serialized in xml file <var>fileName</var>
  2442.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2443.      */
  2444.     public void write(OutputStream out,GestioneTokenAutenticazione gestioneTokenAutenticazione) throws SerializerException {
  2445.         this.objToXml(out, GestioneTokenAutenticazione.class, gestioneTokenAutenticazione, false);
  2446.     }
  2447.     /**
  2448.      * Serialize to output stream <var>out</var> the object <var>gestioneTokenAutenticazione</var> of type {@link org.openspcoop2.core.config.GestioneTokenAutenticazione}
  2449.      *
  2450.      * @param out OutputStream to serialize the object <var>gestioneTokenAutenticazione</var>
  2451.      * @param gestioneTokenAutenticazione Object to be serialized in xml file <var>fileName</var>
  2452.      * @param prettyPrint if true output the XML with indenting
  2453.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2454.      */
  2455.     public void write(OutputStream out,GestioneTokenAutenticazione gestioneTokenAutenticazione,boolean prettyPrint) throws SerializerException {
  2456.         this.objToXml(out, GestioneTokenAutenticazione.class, gestioneTokenAutenticazione, prettyPrint);
  2457.     }
  2458.            
  2459.     /**
  2460.      * Serialize to byte array the object <var>gestioneTokenAutenticazione</var> of type {@link org.openspcoop2.core.config.GestioneTokenAutenticazione}
  2461.      *
  2462.      * @param gestioneTokenAutenticazione Object to be serialized
  2463.      * @return Object to be serialized in byte array
  2464.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2465.      */
  2466.     public byte[] toByteArray(GestioneTokenAutenticazione gestioneTokenAutenticazione) throws SerializerException {
  2467.         return this.objToXml(GestioneTokenAutenticazione.class, gestioneTokenAutenticazione, false).toByteArray();
  2468.     }
  2469.     /**
  2470.      * Serialize to byte array the object <var>gestioneTokenAutenticazione</var> of type {@link org.openspcoop2.core.config.GestioneTokenAutenticazione}
  2471.      *
  2472.      * @param gestioneTokenAutenticazione Object to be serialized
  2473.      * @param prettyPrint if true output the XML with indenting
  2474.      * @return Object to be serialized in byte array
  2475.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2476.      */
  2477.     public byte[] toByteArray(GestioneTokenAutenticazione gestioneTokenAutenticazione,boolean prettyPrint) throws SerializerException {
  2478.         return this.objToXml(GestioneTokenAutenticazione.class, gestioneTokenAutenticazione, prettyPrint).toByteArray();
  2479.     }
  2480.    
  2481.     /**
  2482.      * Serialize to String the object <var>gestioneTokenAutenticazione</var> of type {@link org.openspcoop2.core.config.GestioneTokenAutenticazione}
  2483.      *
  2484.      * @param gestioneTokenAutenticazione Object to be serialized
  2485.      * @return Object to be serialized as String
  2486.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2487.      */
  2488.     public String toString(GestioneTokenAutenticazione gestioneTokenAutenticazione) throws SerializerException {
  2489.         return this.objToXml(GestioneTokenAutenticazione.class, gestioneTokenAutenticazione, false).toString();
  2490.     }
  2491.     /**
  2492.      * Serialize to String the object <var>gestioneTokenAutenticazione</var> of type {@link org.openspcoop2.core.config.GestioneTokenAutenticazione}
  2493.      *
  2494.      * @param gestioneTokenAutenticazione Object to be serialized
  2495.      * @param prettyPrint if true output the XML with indenting
  2496.      * @return Object to be serialized as String
  2497.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2498.      */
  2499.     public String toString(GestioneTokenAutenticazione gestioneTokenAutenticazione,boolean prettyPrint) throws SerializerException {
  2500.         return this.objToXml(GestioneTokenAutenticazione.class, gestioneTokenAutenticazione, prettyPrint).toString();
  2501.     }
  2502.    
  2503.    
  2504.    
  2505.     /*
  2506.      =================================================================================
  2507.      Object: gestione-token
  2508.      =================================================================================
  2509.     */
  2510.    
  2511.     /**
  2512.      * Serialize to file system in <var>fileName</var> the object <var>gestioneToken</var> of type {@link org.openspcoop2.core.config.GestioneToken}
  2513.      *
  2514.      * @param fileName Xml file to serialize the object <var>gestioneToken</var>
  2515.      * @param gestioneToken Object to be serialized in xml file <var>fileName</var>
  2516.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2517.      */
  2518.     public void write(String fileName,GestioneToken gestioneToken) throws SerializerException {
  2519.         this.objToXml(fileName, GestioneToken.class, gestioneToken, false);
  2520.     }
  2521.     /**
  2522.      * Serialize to file system in <var>fileName</var> the object <var>gestioneToken</var> of type {@link org.openspcoop2.core.config.GestioneToken}
  2523.      *
  2524.      * @param fileName Xml file to serialize the object <var>gestioneToken</var>
  2525.      * @param gestioneToken Object to be serialized in xml file <var>fileName</var>
  2526.      * @param prettyPrint if true output the XML with indenting
  2527.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2528.      */
  2529.     public void write(String fileName,GestioneToken gestioneToken,boolean prettyPrint) throws SerializerException {
  2530.         this.objToXml(fileName, GestioneToken.class, gestioneToken, prettyPrint);
  2531.     }
  2532.    
  2533.     /**
  2534.      * Serialize to file system in <var>file</var> the object <var>gestioneToken</var> of type {@link org.openspcoop2.core.config.GestioneToken}
  2535.      *
  2536.      * @param file Xml file to serialize the object <var>gestioneToken</var>
  2537.      * @param gestioneToken Object to be serialized in xml file <var>fileName</var>
  2538.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2539.      */
  2540.     public void write(File file,GestioneToken gestioneToken) throws SerializerException {
  2541.         this.objToXml(file, GestioneToken.class, gestioneToken, false);
  2542.     }
  2543.     /**
  2544.      * Serialize to file system in <var>file</var> the object <var>gestioneToken</var> of type {@link org.openspcoop2.core.config.GestioneToken}
  2545.      *
  2546.      * @param file Xml file to serialize the object <var>gestioneToken</var>
  2547.      * @param gestioneToken Object to be serialized in xml file <var>fileName</var>
  2548.      * @param prettyPrint if true output the XML with indenting
  2549.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2550.      */
  2551.     public void write(File file,GestioneToken gestioneToken,boolean prettyPrint) throws SerializerException {
  2552.         this.objToXml(file, GestioneToken.class, gestioneToken, prettyPrint);
  2553.     }
  2554.    
  2555.     /**
  2556.      * Serialize to output stream <var>out</var> the object <var>gestioneToken</var> of type {@link org.openspcoop2.core.config.GestioneToken}
  2557.      *
  2558.      * @param out OutputStream to serialize the object <var>gestioneToken</var>
  2559.      * @param gestioneToken Object to be serialized in xml file <var>fileName</var>
  2560.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2561.      */
  2562.     public void write(OutputStream out,GestioneToken gestioneToken) throws SerializerException {
  2563.         this.objToXml(out, GestioneToken.class, gestioneToken, false);
  2564.     }
  2565.     /**
  2566.      * Serialize to output stream <var>out</var> the object <var>gestioneToken</var> of type {@link org.openspcoop2.core.config.GestioneToken}
  2567.      *
  2568.      * @param out OutputStream to serialize the object <var>gestioneToken</var>
  2569.      * @param gestioneToken Object to be serialized in xml file <var>fileName</var>
  2570.      * @param prettyPrint if true output the XML with indenting
  2571.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2572.      */
  2573.     public void write(OutputStream out,GestioneToken gestioneToken,boolean prettyPrint) throws SerializerException {
  2574.         this.objToXml(out, GestioneToken.class, gestioneToken, prettyPrint);
  2575.     }
  2576.            
  2577.     /**
  2578.      * Serialize to byte array the object <var>gestioneToken</var> of type {@link org.openspcoop2.core.config.GestioneToken}
  2579.      *
  2580.      * @param gestioneToken Object to be serialized
  2581.      * @return Object to be serialized in byte array
  2582.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2583.      */
  2584.     public byte[] toByteArray(GestioneToken gestioneToken) throws SerializerException {
  2585.         return this.objToXml(GestioneToken.class, gestioneToken, false).toByteArray();
  2586.     }
  2587.     /**
  2588.      * Serialize to byte array the object <var>gestioneToken</var> of type {@link org.openspcoop2.core.config.GestioneToken}
  2589.      *
  2590.      * @param gestioneToken Object to be serialized
  2591.      * @param prettyPrint if true output the XML with indenting
  2592.      * @return Object to be serialized in byte array
  2593.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2594.      */
  2595.     public byte[] toByteArray(GestioneToken gestioneToken,boolean prettyPrint) throws SerializerException {
  2596.         return this.objToXml(GestioneToken.class, gestioneToken, prettyPrint).toByteArray();
  2597.     }
  2598.    
  2599.     /**
  2600.      * Serialize to String the object <var>gestioneToken</var> of type {@link org.openspcoop2.core.config.GestioneToken}
  2601.      *
  2602.      * @param gestioneToken Object to be serialized
  2603.      * @return Object to be serialized as String
  2604.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2605.      */
  2606.     public String toString(GestioneToken gestioneToken) throws SerializerException {
  2607.         return this.objToXml(GestioneToken.class, gestioneToken, false).toString();
  2608.     }
  2609.     /**
  2610.      * Serialize to String the object <var>gestioneToken</var> of type {@link org.openspcoop2.core.config.GestioneToken}
  2611.      *
  2612.      * @param gestioneToken Object to be serialized
  2613.      * @param prettyPrint if true output the XML with indenting
  2614.      * @return Object to be serialized as String
  2615.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2616.      */
  2617.     public String toString(GestioneToken gestioneToken,boolean prettyPrint) throws SerializerException {
  2618.         return this.objToXml(GestioneToken.class, gestioneToken, prettyPrint).toString();
  2619.     }
  2620.    
  2621.    
  2622.    
  2623.     /*
  2624.      =================================================================================
  2625.      Object: servizio-applicativo-ruoli
  2626.      =================================================================================
  2627.     */
  2628.    
  2629.     /**
  2630.      * Serialize to file system in <var>fileName</var> the object <var>servizioApplicativoRuoli</var> of type {@link org.openspcoop2.core.config.ServizioApplicativoRuoli}
  2631.      *
  2632.      * @param fileName Xml file to serialize the object <var>servizioApplicativoRuoli</var>
  2633.      * @param servizioApplicativoRuoli Object to be serialized in xml file <var>fileName</var>
  2634.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2635.      */
  2636.     public void write(String fileName,ServizioApplicativoRuoli servizioApplicativoRuoli) throws SerializerException {
  2637.         this.objToXml(fileName, ServizioApplicativoRuoli.class, servizioApplicativoRuoli, false);
  2638.     }
  2639.     /**
  2640.      * Serialize to file system in <var>fileName</var> the object <var>servizioApplicativoRuoli</var> of type {@link org.openspcoop2.core.config.ServizioApplicativoRuoli}
  2641.      *
  2642.      * @param fileName Xml file to serialize the object <var>servizioApplicativoRuoli</var>
  2643.      * @param servizioApplicativoRuoli Object to be serialized in xml file <var>fileName</var>
  2644.      * @param prettyPrint if true output the XML with indenting
  2645.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2646.      */
  2647.     public void write(String fileName,ServizioApplicativoRuoli servizioApplicativoRuoli,boolean prettyPrint) throws SerializerException {
  2648.         this.objToXml(fileName, ServizioApplicativoRuoli.class, servizioApplicativoRuoli, prettyPrint);
  2649.     }
  2650.    
  2651.     /**
  2652.      * Serialize to file system in <var>file</var> the object <var>servizioApplicativoRuoli</var> of type {@link org.openspcoop2.core.config.ServizioApplicativoRuoli}
  2653.      *
  2654.      * @param file Xml file to serialize the object <var>servizioApplicativoRuoli</var>
  2655.      * @param servizioApplicativoRuoli Object to be serialized in xml file <var>fileName</var>
  2656.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2657.      */
  2658.     public void write(File file,ServizioApplicativoRuoli servizioApplicativoRuoli) throws SerializerException {
  2659.         this.objToXml(file, ServizioApplicativoRuoli.class, servizioApplicativoRuoli, false);
  2660.     }
  2661.     /**
  2662.      * Serialize to file system in <var>file</var> the object <var>servizioApplicativoRuoli</var> of type {@link org.openspcoop2.core.config.ServizioApplicativoRuoli}
  2663.      *
  2664.      * @param file Xml file to serialize the object <var>servizioApplicativoRuoli</var>
  2665.      * @param servizioApplicativoRuoli Object to be serialized in xml file <var>fileName</var>
  2666.      * @param prettyPrint if true output the XML with indenting
  2667.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2668.      */
  2669.     public void write(File file,ServizioApplicativoRuoli servizioApplicativoRuoli,boolean prettyPrint) throws SerializerException {
  2670.         this.objToXml(file, ServizioApplicativoRuoli.class, servizioApplicativoRuoli, prettyPrint);
  2671.     }
  2672.    
  2673.     /**
  2674.      * Serialize to output stream <var>out</var> the object <var>servizioApplicativoRuoli</var> of type {@link org.openspcoop2.core.config.ServizioApplicativoRuoli}
  2675.      *
  2676.      * @param out OutputStream to serialize the object <var>servizioApplicativoRuoli</var>
  2677.      * @param servizioApplicativoRuoli Object to be serialized in xml file <var>fileName</var>
  2678.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2679.      */
  2680.     public void write(OutputStream out,ServizioApplicativoRuoli servizioApplicativoRuoli) throws SerializerException {
  2681.         this.objToXml(out, ServizioApplicativoRuoli.class, servizioApplicativoRuoli, false);
  2682.     }
  2683.     /**
  2684.      * Serialize to output stream <var>out</var> the object <var>servizioApplicativoRuoli</var> of type {@link org.openspcoop2.core.config.ServizioApplicativoRuoli}
  2685.      *
  2686.      * @param out OutputStream to serialize the object <var>servizioApplicativoRuoli</var>
  2687.      * @param servizioApplicativoRuoli Object to be serialized in xml file <var>fileName</var>
  2688.      * @param prettyPrint if true output the XML with indenting
  2689.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2690.      */
  2691.     public void write(OutputStream out,ServizioApplicativoRuoli servizioApplicativoRuoli,boolean prettyPrint) throws SerializerException {
  2692.         this.objToXml(out, ServizioApplicativoRuoli.class, servizioApplicativoRuoli, prettyPrint);
  2693.     }
  2694.            
  2695.     /**
  2696.      * Serialize to byte array the object <var>servizioApplicativoRuoli</var> of type {@link org.openspcoop2.core.config.ServizioApplicativoRuoli}
  2697.      *
  2698.      * @param servizioApplicativoRuoli Object to be serialized
  2699.      * @return Object to be serialized in byte array
  2700.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2701.      */
  2702.     public byte[] toByteArray(ServizioApplicativoRuoli servizioApplicativoRuoli) throws SerializerException {
  2703.         return this.objToXml(ServizioApplicativoRuoli.class, servizioApplicativoRuoli, false).toByteArray();
  2704.     }
  2705.     /**
  2706.      * Serialize to byte array the object <var>servizioApplicativoRuoli</var> of type {@link org.openspcoop2.core.config.ServizioApplicativoRuoli}
  2707.      *
  2708.      * @param servizioApplicativoRuoli Object to be serialized
  2709.      * @param prettyPrint if true output the XML with indenting
  2710.      * @return Object to be serialized in byte array
  2711.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2712.      */
  2713.     public byte[] toByteArray(ServizioApplicativoRuoli servizioApplicativoRuoli,boolean prettyPrint) throws SerializerException {
  2714.         return this.objToXml(ServizioApplicativoRuoli.class, servizioApplicativoRuoli, prettyPrint).toByteArray();
  2715.     }
  2716.    
  2717.     /**
  2718.      * Serialize to String the object <var>servizioApplicativoRuoli</var> of type {@link org.openspcoop2.core.config.ServizioApplicativoRuoli}
  2719.      *
  2720.      * @param servizioApplicativoRuoli Object to be serialized
  2721.      * @return Object to be serialized as String
  2722.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2723.      */
  2724.     public String toString(ServizioApplicativoRuoli servizioApplicativoRuoli) throws SerializerException {
  2725.         return this.objToXml(ServizioApplicativoRuoli.class, servizioApplicativoRuoli, false).toString();
  2726.     }
  2727.     /**
  2728.      * Serialize to String the object <var>servizioApplicativoRuoli</var> of type {@link org.openspcoop2.core.config.ServizioApplicativoRuoli}
  2729.      *
  2730.      * @param servizioApplicativoRuoli Object to be serialized
  2731.      * @param prettyPrint if true output the XML with indenting
  2732.      * @return Object to be serialized as String
  2733.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2734.      */
  2735.     public String toString(ServizioApplicativoRuoli servizioApplicativoRuoli,boolean prettyPrint) throws SerializerException {
  2736.         return this.objToXml(ServizioApplicativoRuoli.class, servizioApplicativoRuoli, prettyPrint).toString();
  2737.     }
  2738.    
  2739.    
  2740.    
  2741.     /*
  2742.      =================================================================================
  2743.      Object: trasformazione-regola-applicabilita-risposta
  2744.      =================================================================================
  2745.     */
  2746.    
  2747.     /**
  2748.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioneRegolaApplicabilitaRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaRisposta}
  2749.      *
  2750.      * @param fileName Xml file to serialize the object <var>trasformazioneRegolaApplicabilitaRisposta</var>
  2751.      * @param trasformazioneRegolaApplicabilitaRisposta Object to be serialized in xml file <var>fileName</var>
  2752.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2753.      */
  2754.     public void write(String fileName,TrasformazioneRegolaApplicabilitaRisposta trasformazioneRegolaApplicabilitaRisposta) throws SerializerException {
  2755.         this.objToXml(fileName, TrasformazioneRegolaApplicabilitaRisposta.class, trasformazioneRegolaApplicabilitaRisposta, false);
  2756.     }
  2757.     /**
  2758.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioneRegolaApplicabilitaRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaRisposta}
  2759.      *
  2760.      * @param fileName Xml file to serialize the object <var>trasformazioneRegolaApplicabilitaRisposta</var>
  2761.      * @param trasformazioneRegolaApplicabilitaRisposta Object to be serialized in xml file <var>fileName</var>
  2762.      * @param prettyPrint if true output the XML with indenting
  2763.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2764.      */
  2765.     public void write(String fileName,TrasformazioneRegolaApplicabilitaRisposta trasformazioneRegolaApplicabilitaRisposta,boolean prettyPrint) throws SerializerException {
  2766.         this.objToXml(fileName, TrasformazioneRegolaApplicabilitaRisposta.class, trasformazioneRegolaApplicabilitaRisposta, prettyPrint);
  2767.     }
  2768.    
  2769.     /**
  2770.      * Serialize to file system in <var>file</var> the object <var>trasformazioneRegolaApplicabilitaRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaRisposta}
  2771.      *
  2772.      * @param file Xml file to serialize the object <var>trasformazioneRegolaApplicabilitaRisposta</var>
  2773.      * @param trasformazioneRegolaApplicabilitaRisposta Object to be serialized in xml file <var>fileName</var>
  2774.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2775.      */
  2776.     public void write(File file,TrasformazioneRegolaApplicabilitaRisposta trasformazioneRegolaApplicabilitaRisposta) throws SerializerException {
  2777.         this.objToXml(file, TrasformazioneRegolaApplicabilitaRisposta.class, trasformazioneRegolaApplicabilitaRisposta, false);
  2778.     }
  2779.     /**
  2780.      * Serialize to file system in <var>file</var> the object <var>trasformazioneRegolaApplicabilitaRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaRisposta}
  2781.      *
  2782.      * @param file Xml file to serialize the object <var>trasformazioneRegolaApplicabilitaRisposta</var>
  2783.      * @param trasformazioneRegolaApplicabilitaRisposta Object to be serialized in xml file <var>fileName</var>
  2784.      * @param prettyPrint if true output the XML with indenting
  2785.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2786.      */
  2787.     public void write(File file,TrasformazioneRegolaApplicabilitaRisposta trasformazioneRegolaApplicabilitaRisposta,boolean prettyPrint) throws SerializerException {
  2788.         this.objToXml(file, TrasformazioneRegolaApplicabilitaRisposta.class, trasformazioneRegolaApplicabilitaRisposta, prettyPrint);
  2789.     }
  2790.    
  2791.     /**
  2792.      * Serialize to output stream <var>out</var> the object <var>trasformazioneRegolaApplicabilitaRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaRisposta}
  2793.      *
  2794.      * @param out OutputStream to serialize the object <var>trasformazioneRegolaApplicabilitaRisposta</var>
  2795.      * @param trasformazioneRegolaApplicabilitaRisposta Object to be serialized in xml file <var>fileName</var>
  2796.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2797.      */
  2798.     public void write(OutputStream out,TrasformazioneRegolaApplicabilitaRisposta trasformazioneRegolaApplicabilitaRisposta) throws SerializerException {
  2799.         this.objToXml(out, TrasformazioneRegolaApplicabilitaRisposta.class, trasformazioneRegolaApplicabilitaRisposta, false);
  2800.     }
  2801.     /**
  2802.      * Serialize to output stream <var>out</var> the object <var>trasformazioneRegolaApplicabilitaRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaRisposta}
  2803.      *
  2804.      * @param out OutputStream to serialize the object <var>trasformazioneRegolaApplicabilitaRisposta</var>
  2805.      * @param trasformazioneRegolaApplicabilitaRisposta Object to be serialized in xml file <var>fileName</var>
  2806.      * @param prettyPrint if true output the XML with indenting
  2807.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2808.      */
  2809.     public void write(OutputStream out,TrasformazioneRegolaApplicabilitaRisposta trasformazioneRegolaApplicabilitaRisposta,boolean prettyPrint) throws SerializerException {
  2810.         this.objToXml(out, TrasformazioneRegolaApplicabilitaRisposta.class, trasformazioneRegolaApplicabilitaRisposta, prettyPrint);
  2811.     }
  2812.            
  2813.     /**
  2814.      * Serialize to byte array the object <var>trasformazioneRegolaApplicabilitaRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaRisposta}
  2815.      *
  2816.      * @param trasformazioneRegolaApplicabilitaRisposta Object to be serialized
  2817.      * @return Object to be serialized in byte array
  2818.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2819.      */
  2820.     public byte[] toByteArray(TrasformazioneRegolaApplicabilitaRisposta trasformazioneRegolaApplicabilitaRisposta) throws SerializerException {
  2821.         return this.objToXml(TrasformazioneRegolaApplicabilitaRisposta.class, trasformazioneRegolaApplicabilitaRisposta, false).toByteArray();
  2822.     }
  2823.     /**
  2824.      * Serialize to byte array the object <var>trasformazioneRegolaApplicabilitaRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaRisposta}
  2825.      *
  2826.      * @param trasformazioneRegolaApplicabilitaRisposta Object to be serialized
  2827.      * @param prettyPrint if true output the XML with indenting
  2828.      * @return Object to be serialized in byte array
  2829.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2830.      */
  2831.     public byte[] toByteArray(TrasformazioneRegolaApplicabilitaRisposta trasformazioneRegolaApplicabilitaRisposta,boolean prettyPrint) throws SerializerException {
  2832.         return this.objToXml(TrasformazioneRegolaApplicabilitaRisposta.class, trasformazioneRegolaApplicabilitaRisposta, prettyPrint).toByteArray();
  2833.     }
  2834.    
  2835.     /**
  2836.      * Serialize to String the object <var>trasformazioneRegolaApplicabilitaRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaRisposta}
  2837.      *
  2838.      * @param trasformazioneRegolaApplicabilitaRisposta Object to be serialized
  2839.      * @return Object to be serialized as String
  2840.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2841.      */
  2842.     public String toString(TrasformazioneRegolaApplicabilitaRisposta trasformazioneRegolaApplicabilitaRisposta) throws SerializerException {
  2843.         return this.objToXml(TrasformazioneRegolaApplicabilitaRisposta.class, trasformazioneRegolaApplicabilitaRisposta, false).toString();
  2844.     }
  2845.     /**
  2846.      * Serialize to String the object <var>trasformazioneRegolaApplicabilitaRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaRisposta}
  2847.      *
  2848.      * @param trasformazioneRegolaApplicabilitaRisposta Object to be serialized
  2849.      * @param prettyPrint if true output the XML with indenting
  2850.      * @return Object to be serialized as String
  2851.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2852.      */
  2853.     public String toString(TrasformazioneRegolaApplicabilitaRisposta trasformazioneRegolaApplicabilitaRisposta,boolean prettyPrint) throws SerializerException {
  2854.         return this.objToXml(TrasformazioneRegolaApplicabilitaRisposta.class, trasformazioneRegolaApplicabilitaRisposta, prettyPrint).toString();
  2855.     }
  2856.    
  2857.    
  2858.    
  2859.     /*
  2860.      =================================================================================
  2861.      Object: proprieta
  2862.      =================================================================================
  2863.     */
  2864.    
  2865.     /**
  2866.      * Serialize to file system in <var>fileName</var> the object <var>proprieta</var> of type {@link org.openspcoop2.core.config.Proprieta}
  2867.      *
  2868.      * @param fileName Xml file to serialize the object <var>proprieta</var>
  2869.      * @param proprieta Object to be serialized in xml file <var>fileName</var>
  2870.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2871.      */
  2872.     public void write(String fileName,Proprieta proprieta) throws SerializerException {
  2873.         this.objToXml(fileName, Proprieta.class, proprieta, false);
  2874.     }
  2875.     /**
  2876.      * Serialize to file system in <var>fileName</var> the object <var>proprieta</var> of type {@link org.openspcoop2.core.config.Proprieta}
  2877.      *
  2878.      * @param fileName Xml file to serialize the object <var>proprieta</var>
  2879.      * @param proprieta Object to be serialized in xml file <var>fileName</var>
  2880.      * @param prettyPrint if true output the XML with indenting
  2881.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2882.      */
  2883.     public void write(String fileName,Proprieta proprieta,boolean prettyPrint) throws SerializerException {
  2884.         this.objToXml(fileName, Proprieta.class, proprieta, prettyPrint);
  2885.     }
  2886.    
  2887.     /**
  2888.      * Serialize to file system in <var>file</var> the object <var>proprieta</var> of type {@link org.openspcoop2.core.config.Proprieta}
  2889.      *
  2890.      * @param file Xml file to serialize the object <var>proprieta</var>
  2891.      * @param proprieta Object to be serialized in xml file <var>fileName</var>
  2892.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2893.      */
  2894.     public void write(File file,Proprieta proprieta) throws SerializerException {
  2895.         this.objToXml(file, Proprieta.class, proprieta, false);
  2896.     }
  2897.     /**
  2898.      * Serialize to file system in <var>file</var> the object <var>proprieta</var> of type {@link org.openspcoop2.core.config.Proprieta}
  2899.      *
  2900.      * @param file Xml file to serialize the object <var>proprieta</var>
  2901.      * @param proprieta Object to be serialized in xml file <var>fileName</var>
  2902.      * @param prettyPrint if true output the XML with indenting
  2903.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2904.      */
  2905.     public void write(File file,Proprieta proprieta,boolean prettyPrint) throws SerializerException {
  2906.         this.objToXml(file, Proprieta.class, proprieta, prettyPrint);
  2907.     }
  2908.    
  2909.     /**
  2910.      * Serialize to output stream <var>out</var> the object <var>proprieta</var> of type {@link org.openspcoop2.core.config.Proprieta}
  2911.      *
  2912.      * @param out OutputStream to serialize the object <var>proprieta</var>
  2913.      * @param proprieta Object to be serialized in xml file <var>fileName</var>
  2914.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2915.      */
  2916.     public void write(OutputStream out,Proprieta proprieta) throws SerializerException {
  2917.         this.objToXml(out, Proprieta.class, proprieta, false);
  2918.     }
  2919.     /**
  2920.      * Serialize to output stream <var>out</var> the object <var>proprieta</var> of type {@link org.openspcoop2.core.config.Proprieta}
  2921.      *
  2922.      * @param out OutputStream to serialize the object <var>proprieta</var>
  2923.      * @param proprieta Object to be serialized in xml file <var>fileName</var>
  2924.      * @param prettyPrint if true output the XML with indenting
  2925.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2926.      */
  2927.     public void write(OutputStream out,Proprieta proprieta,boolean prettyPrint) throws SerializerException {
  2928.         this.objToXml(out, Proprieta.class, proprieta, prettyPrint);
  2929.     }
  2930.            
  2931.     /**
  2932.      * Serialize to byte array the object <var>proprieta</var> of type {@link org.openspcoop2.core.config.Proprieta}
  2933.      *
  2934.      * @param proprieta Object to be serialized
  2935.      * @return Object to be serialized in byte array
  2936.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2937.      */
  2938.     public byte[] toByteArray(Proprieta proprieta) throws SerializerException {
  2939.         return this.objToXml(Proprieta.class, proprieta, false).toByteArray();
  2940.     }
  2941.     /**
  2942.      * Serialize to byte array the object <var>proprieta</var> of type {@link org.openspcoop2.core.config.Proprieta}
  2943.      *
  2944.      * @param proprieta Object to be serialized
  2945.      * @param prettyPrint if true output the XML with indenting
  2946.      * @return Object to be serialized in byte array
  2947.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2948.      */
  2949.     public byte[] toByteArray(Proprieta proprieta,boolean prettyPrint) throws SerializerException {
  2950.         return this.objToXml(Proprieta.class, proprieta, prettyPrint).toByteArray();
  2951.     }
  2952.    
  2953.     /**
  2954.      * Serialize to String the object <var>proprieta</var> of type {@link org.openspcoop2.core.config.Proprieta}
  2955.      *
  2956.      * @param proprieta Object to be serialized
  2957.      * @return Object to be serialized as String
  2958.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2959.      */
  2960.     public String toString(Proprieta proprieta) throws SerializerException {
  2961.         return this.objToXml(Proprieta.class, proprieta, false).toString();
  2962.     }
  2963.     /**
  2964.      * Serialize to String the object <var>proprieta</var> of type {@link org.openspcoop2.core.config.Proprieta}
  2965.      *
  2966.      * @param proprieta Object to be serialized
  2967.      * @param prettyPrint if true output the XML with indenting
  2968.      * @return Object to be serialized as String
  2969.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2970.      */
  2971.     public String toString(Proprieta proprieta,boolean prettyPrint) throws SerializerException {
  2972.         return this.objToXml(Proprieta.class, proprieta, prettyPrint).toString();
  2973.     }
  2974.    
  2975.    
  2976.    
  2977.     /*
  2978.      =================================================================================
  2979.      Object: accesso-registro-registro
  2980.      =================================================================================
  2981.     */
  2982.    
  2983.     /**
  2984.      * Serialize to file system in <var>fileName</var> the object <var>accessoRegistroRegistro</var> of type {@link org.openspcoop2.core.config.AccessoRegistroRegistro}
  2985.      *
  2986.      * @param fileName Xml file to serialize the object <var>accessoRegistroRegistro</var>
  2987.      * @param accessoRegistroRegistro Object to be serialized in xml file <var>fileName</var>
  2988.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2989.      */
  2990.     public void write(String fileName,AccessoRegistroRegistro accessoRegistroRegistro) throws SerializerException {
  2991.         this.objToXml(fileName, AccessoRegistroRegistro.class, accessoRegistroRegistro, false);
  2992.     }
  2993.     /**
  2994.      * Serialize to file system in <var>fileName</var> the object <var>accessoRegistroRegistro</var> of type {@link org.openspcoop2.core.config.AccessoRegistroRegistro}
  2995.      *
  2996.      * @param fileName Xml file to serialize the object <var>accessoRegistroRegistro</var>
  2997.      * @param accessoRegistroRegistro Object to be serialized in xml file <var>fileName</var>
  2998.      * @param prettyPrint if true output the XML with indenting
  2999.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3000.      */
  3001.     public void write(String fileName,AccessoRegistroRegistro accessoRegistroRegistro,boolean prettyPrint) throws SerializerException {
  3002.         this.objToXml(fileName, AccessoRegistroRegistro.class, accessoRegistroRegistro, prettyPrint);
  3003.     }
  3004.    
  3005.     /**
  3006.      * Serialize to file system in <var>file</var> the object <var>accessoRegistroRegistro</var> of type {@link org.openspcoop2.core.config.AccessoRegistroRegistro}
  3007.      *
  3008.      * @param file Xml file to serialize the object <var>accessoRegistroRegistro</var>
  3009.      * @param accessoRegistroRegistro Object to be serialized in xml file <var>fileName</var>
  3010.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3011.      */
  3012.     public void write(File file,AccessoRegistroRegistro accessoRegistroRegistro) throws SerializerException {
  3013.         this.objToXml(file, AccessoRegistroRegistro.class, accessoRegistroRegistro, false);
  3014.     }
  3015.     /**
  3016.      * Serialize to file system in <var>file</var> the object <var>accessoRegistroRegistro</var> of type {@link org.openspcoop2.core.config.AccessoRegistroRegistro}
  3017.      *
  3018.      * @param file Xml file to serialize the object <var>accessoRegistroRegistro</var>
  3019.      * @param accessoRegistroRegistro Object to be serialized in xml file <var>fileName</var>
  3020.      * @param prettyPrint if true output the XML with indenting
  3021.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3022.      */
  3023.     public void write(File file,AccessoRegistroRegistro accessoRegistroRegistro,boolean prettyPrint) throws SerializerException {
  3024.         this.objToXml(file, AccessoRegistroRegistro.class, accessoRegistroRegistro, prettyPrint);
  3025.     }
  3026.    
  3027.     /**
  3028.      * Serialize to output stream <var>out</var> the object <var>accessoRegistroRegistro</var> of type {@link org.openspcoop2.core.config.AccessoRegistroRegistro}
  3029.      *
  3030.      * @param out OutputStream to serialize the object <var>accessoRegistroRegistro</var>
  3031.      * @param accessoRegistroRegistro Object to be serialized in xml file <var>fileName</var>
  3032.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3033.      */
  3034.     public void write(OutputStream out,AccessoRegistroRegistro accessoRegistroRegistro) throws SerializerException {
  3035.         this.objToXml(out, AccessoRegistroRegistro.class, accessoRegistroRegistro, false);
  3036.     }
  3037.     /**
  3038.      * Serialize to output stream <var>out</var> the object <var>accessoRegistroRegistro</var> of type {@link org.openspcoop2.core.config.AccessoRegistroRegistro}
  3039.      *
  3040.      * @param out OutputStream to serialize the object <var>accessoRegistroRegistro</var>
  3041.      * @param accessoRegistroRegistro Object to be serialized in xml file <var>fileName</var>
  3042.      * @param prettyPrint if true output the XML with indenting
  3043.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3044.      */
  3045.     public void write(OutputStream out,AccessoRegistroRegistro accessoRegistroRegistro,boolean prettyPrint) throws SerializerException {
  3046.         this.objToXml(out, AccessoRegistroRegistro.class, accessoRegistroRegistro, prettyPrint);
  3047.     }
  3048.            
  3049.     /**
  3050.      * Serialize to byte array the object <var>accessoRegistroRegistro</var> of type {@link org.openspcoop2.core.config.AccessoRegistroRegistro}
  3051.      *
  3052.      * @param accessoRegistroRegistro Object to be serialized
  3053.      * @return Object to be serialized in byte array
  3054.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3055.      */
  3056.     public byte[] toByteArray(AccessoRegistroRegistro accessoRegistroRegistro) throws SerializerException {
  3057.         return this.objToXml(AccessoRegistroRegistro.class, accessoRegistroRegistro, false).toByteArray();
  3058.     }
  3059.     /**
  3060.      * Serialize to byte array the object <var>accessoRegistroRegistro</var> of type {@link org.openspcoop2.core.config.AccessoRegistroRegistro}
  3061.      *
  3062.      * @param accessoRegistroRegistro Object to be serialized
  3063.      * @param prettyPrint if true output the XML with indenting
  3064.      * @return Object to be serialized in byte array
  3065.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3066.      */
  3067.     public byte[] toByteArray(AccessoRegistroRegistro accessoRegistroRegistro,boolean prettyPrint) throws SerializerException {
  3068.         return this.objToXml(AccessoRegistroRegistro.class, accessoRegistroRegistro, prettyPrint).toByteArray();
  3069.     }
  3070.    
  3071.     /**
  3072.      * Serialize to String the object <var>accessoRegistroRegistro</var> of type {@link org.openspcoop2.core.config.AccessoRegistroRegistro}
  3073.      *
  3074.      * @param accessoRegistroRegistro Object to be serialized
  3075.      * @return Object to be serialized as String
  3076.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3077.      */
  3078.     public String toString(AccessoRegistroRegistro accessoRegistroRegistro) throws SerializerException {
  3079.         return this.objToXml(AccessoRegistroRegistro.class, accessoRegistroRegistro, false).toString();
  3080.     }
  3081.     /**
  3082.      * Serialize to String the object <var>accessoRegistroRegistro</var> of type {@link org.openspcoop2.core.config.AccessoRegistroRegistro}
  3083.      *
  3084.      * @param accessoRegistroRegistro Object to be serialized
  3085.      * @param prettyPrint if true output the XML with indenting
  3086.      * @return Object to be serialized as String
  3087.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3088.      */
  3089.     public String toString(AccessoRegistroRegistro accessoRegistroRegistro,boolean prettyPrint) throws SerializerException {
  3090.         return this.objToXml(AccessoRegistroRegistro.class, accessoRegistroRegistro, prettyPrint).toString();
  3091.     }
  3092.    
  3093.    
  3094.    
  3095.     /*
  3096.      =================================================================================
  3097.      Object: invocazione-credenziali
  3098.      =================================================================================
  3099.     */
  3100.    
  3101.     /**
  3102.      * Serialize to file system in <var>fileName</var> the object <var>invocazioneCredenziali</var> of type {@link org.openspcoop2.core.config.InvocazioneCredenziali}
  3103.      *
  3104.      * @param fileName Xml file to serialize the object <var>invocazioneCredenziali</var>
  3105.      * @param invocazioneCredenziali Object to be serialized in xml file <var>fileName</var>
  3106.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3107.      */
  3108.     public void write(String fileName,InvocazioneCredenziali invocazioneCredenziali) throws SerializerException {
  3109.         this.objToXml(fileName, InvocazioneCredenziali.class, invocazioneCredenziali, false);
  3110.     }
  3111.     /**
  3112.      * Serialize to file system in <var>fileName</var> the object <var>invocazioneCredenziali</var> of type {@link org.openspcoop2.core.config.InvocazioneCredenziali}
  3113.      *
  3114.      * @param fileName Xml file to serialize the object <var>invocazioneCredenziali</var>
  3115.      * @param invocazioneCredenziali Object to be serialized in xml file <var>fileName</var>
  3116.      * @param prettyPrint if true output the XML with indenting
  3117.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3118.      */
  3119.     public void write(String fileName,InvocazioneCredenziali invocazioneCredenziali,boolean prettyPrint) throws SerializerException {
  3120.         this.objToXml(fileName, InvocazioneCredenziali.class, invocazioneCredenziali, prettyPrint);
  3121.     }
  3122.    
  3123.     /**
  3124.      * Serialize to file system in <var>file</var> the object <var>invocazioneCredenziali</var> of type {@link org.openspcoop2.core.config.InvocazioneCredenziali}
  3125.      *
  3126.      * @param file Xml file to serialize the object <var>invocazioneCredenziali</var>
  3127.      * @param invocazioneCredenziali Object to be serialized in xml file <var>fileName</var>
  3128.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3129.      */
  3130.     public void write(File file,InvocazioneCredenziali invocazioneCredenziali) throws SerializerException {
  3131.         this.objToXml(file, InvocazioneCredenziali.class, invocazioneCredenziali, false);
  3132.     }
  3133.     /**
  3134.      * Serialize to file system in <var>file</var> the object <var>invocazioneCredenziali</var> of type {@link org.openspcoop2.core.config.InvocazioneCredenziali}
  3135.      *
  3136.      * @param file Xml file to serialize the object <var>invocazioneCredenziali</var>
  3137.      * @param invocazioneCredenziali Object to be serialized in xml file <var>fileName</var>
  3138.      * @param prettyPrint if true output the XML with indenting
  3139.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3140.      */
  3141.     public void write(File file,InvocazioneCredenziali invocazioneCredenziali,boolean prettyPrint) throws SerializerException {
  3142.         this.objToXml(file, InvocazioneCredenziali.class, invocazioneCredenziali, prettyPrint);
  3143.     }
  3144.    
  3145.     /**
  3146.      * Serialize to output stream <var>out</var> the object <var>invocazioneCredenziali</var> of type {@link org.openspcoop2.core.config.InvocazioneCredenziali}
  3147.      *
  3148.      * @param out OutputStream to serialize the object <var>invocazioneCredenziali</var>
  3149.      * @param invocazioneCredenziali Object to be serialized in xml file <var>fileName</var>
  3150.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3151.      */
  3152.     public void write(OutputStream out,InvocazioneCredenziali invocazioneCredenziali) throws SerializerException {
  3153.         this.objToXml(out, InvocazioneCredenziali.class, invocazioneCredenziali, false);
  3154.     }
  3155.     /**
  3156.      * Serialize to output stream <var>out</var> the object <var>invocazioneCredenziali</var> of type {@link org.openspcoop2.core.config.InvocazioneCredenziali}
  3157.      *
  3158.      * @param out OutputStream to serialize the object <var>invocazioneCredenziali</var>
  3159.      * @param invocazioneCredenziali Object to be serialized in xml file <var>fileName</var>
  3160.      * @param prettyPrint if true output the XML with indenting
  3161.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3162.      */
  3163.     public void write(OutputStream out,InvocazioneCredenziali invocazioneCredenziali,boolean prettyPrint) throws SerializerException {
  3164.         this.objToXml(out, InvocazioneCredenziali.class, invocazioneCredenziali, prettyPrint);
  3165.     }
  3166.            
  3167.     /**
  3168.      * Serialize to byte array the object <var>invocazioneCredenziali</var> of type {@link org.openspcoop2.core.config.InvocazioneCredenziali}
  3169.      *
  3170.      * @param invocazioneCredenziali Object to be serialized
  3171.      * @return Object to be serialized in byte array
  3172.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3173.      */
  3174.     public byte[] toByteArray(InvocazioneCredenziali invocazioneCredenziali) throws SerializerException {
  3175.         return this.objToXml(InvocazioneCredenziali.class, invocazioneCredenziali, false).toByteArray();
  3176.     }
  3177.     /**
  3178.      * Serialize to byte array the object <var>invocazioneCredenziali</var> of type {@link org.openspcoop2.core.config.InvocazioneCredenziali}
  3179.      *
  3180.      * @param invocazioneCredenziali Object to be serialized
  3181.      * @param prettyPrint if true output the XML with indenting
  3182.      * @return Object to be serialized in byte array
  3183.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3184.      */
  3185.     public byte[] toByteArray(InvocazioneCredenziali invocazioneCredenziali,boolean prettyPrint) throws SerializerException {
  3186.         return this.objToXml(InvocazioneCredenziali.class, invocazioneCredenziali, prettyPrint).toByteArray();
  3187.     }
  3188.    
  3189.     /**
  3190.      * Serialize to String the object <var>invocazioneCredenziali</var> of type {@link org.openspcoop2.core.config.InvocazioneCredenziali}
  3191.      *
  3192.      * @param invocazioneCredenziali Object to be serialized
  3193.      * @return Object to be serialized as String
  3194.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3195.      */
  3196.     public String toString(InvocazioneCredenziali invocazioneCredenziali) throws SerializerException {
  3197.         return this.objToXml(InvocazioneCredenziali.class, invocazioneCredenziali, false).toString();
  3198.     }
  3199.     /**
  3200.      * Serialize to String the object <var>invocazioneCredenziali</var> of type {@link org.openspcoop2.core.config.InvocazioneCredenziali}
  3201.      *
  3202.      * @param invocazioneCredenziali Object to be serialized
  3203.      * @param prettyPrint if true output the XML with indenting
  3204.      * @return Object to be serialized as String
  3205.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3206.      */
  3207.     public String toString(InvocazioneCredenziali invocazioneCredenziali,boolean prettyPrint) throws SerializerException {
  3208.         return this.objToXml(InvocazioneCredenziali.class, invocazioneCredenziali, prettyPrint).toString();
  3209.     }
  3210.    
  3211.    
  3212.    
  3213.     /*
  3214.      =================================================================================
  3215.      Object: risposta-asincrona
  3216.      =================================================================================
  3217.     */
  3218.    
  3219.     /**
  3220.      * Serialize to file system in <var>fileName</var> the object <var>rispostaAsincrona</var> of type {@link org.openspcoop2.core.config.RispostaAsincrona}
  3221.      *
  3222.      * @param fileName Xml file to serialize the object <var>rispostaAsincrona</var>
  3223.      * @param rispostaAsincrona Object to be serialized in xml file <var>fileName</var>
  3224.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3225.      */
  3226.     public void write(String fileName,RispostaAsincrona rispostaAsincrona) throws SerializerException {
  3227.         this.objToXml(fileName, RispostaAsincrona.class, rispostaAsincrona, false);
  3228.     }
  3229.     /**
  3230.      * Serialize to file system in <var>fileName</var> the object <var>rispostaAsincrona</var> of type {@link org.openspcoop2.core.config.RispostaAsincrona}
  3231.      *
  3232.      * @param fileName Xml file to serialize the object <var>rispostaAsincrona</var>
  3233.      * @param rispostaAsincrona Object to be serialized in xml file <var>fileName</var>
  3234.      * @param prettyPrint if true output the XML with indenting
  3235.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3236.      */
  3237.     public void write(String fileName,RispostaAsincrona rispostaAsincrona,boolean prettyPrint) throws SerializerException {
  3238.         this.objToXml(fileName, RispostaAsincrona.class, rispostaAsincrona, prettyPrint);
  3239.     }
  3240.    
  3241.     /**
  3242.      * Serialize to file system in <var>file</var> the object <var>rispostaAsincrona</var> of type {@link org.openspcoop2.core.config.RispostaAsincrona}
  3243.      *
  3244.      * @param file Xml file to serialize the object <var>rispostaAsincrona</var>
  3245.      * @param rispostaAsincrona Object to be serialized in xml file <var>fileName</var>
  3246.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3247.      */
  3248.     public void write(File file,RispostaAsincrona rispostaAsincrona) throws SerializerException {
  3249.         this.objToXml(file, RispostaAsincrona.class, rispostaAsincrona, false);
  3250.     }
  3251.     /**
  3252.      * Serialize to file system in <var>file</var> the object <var>rispostaAsincrona</var> of type {@link org.openspcoop2.core.config.RispostaAsincrona}
  3253.      *
  3254.      * @param file Xml file to serialize the object <var>rispostaAsincrona</var>
  3255.      * @param rispostaAsincrona Object to be serialized in xml file <var>fileName</var>
  3256.      * @param prettyPrint if true output the XML with indenting
  3257.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3258.      */
  3259.     public void write(File file,RispostaAsincrona rispostaAsincrona,boolean prettyPrint) throws SerializerException {
  3260.         this.objToXml(file, RispostaAsincrona.class, rispostaAsincrona, prettyPrint);
  3261.     }
  3262.    
  3263.     /**
  3264.      * Serialize to output stream <var>out</var> the object <var>rispostaAsincrona</var> of type {@link org.openspcoop2.core.config.RispostaAsincrona}
  3265.      *
  3266.      * @param out OutputStream to serialize the object <var>rispostaAsincrona</var>
  3267.      * @param rispostaAsincrona Object to be serialized in xml file <var>fileName</var>
  3268.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3269.      */
  3270.     public void write(OutputStream out,RispostaAsincrona rispostaAsincrona) throws SerializerException {
  3271.         this.objToXml(out, RispostaAsincrona.class, rispostaAsincrona, false);
  3272.     }
  3273.     /**
  3274.      * Serialize to output stream <var>out</var> the object <var>rispostaAsincrona</var> of type {@link org.openspcoop2.core.config.RispostaAsincrona}
  3275.      *
  3276.      * @param out OutputStream to serialize the object <var>rispostaAsincrona</var>
  3277.      * @param rispostaAsincrona Object to be serialized in xml file <var>fileName</var>
  3278.      * @param prettyPrint if true output the XML with indenting
  3279.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3280.      */
  3281.     public void write(OutputStream out,RispostaAsincrona rispostaAsincrona,boolean prettyPrint) throws SerializerException {
  3282.         this.objToXml(out, RispostaAsincrona.class, rispostaAsincrona, prettyPrint);
  3283.     }
  3284.            
  3285.     /**
  3286.      * Serialize to byte array the object <var>rispostaAsincrona</var> of type {@link org.openspcoop2.core.config.RispostaAsincrona}
  3287.      *
  3288.      * @param rispostaAsincrona Object to be serialized
  3289.      * @return Object to be serialized in byte array
  3290.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3291.      */
  3292.     public byte[] toByteArray(RispostaAsincrona rispostaAsincrona) throws SerializerException {
  3293.         return this.objToXml(RispostaAsincrona.class, rispostaAsincrona, false).toByteArray();
  3294.     }
  3295.     /**
  3296.      * Serialize to byte array the object <var>rispostaAsincrona</var> of type {@link org.openspcoop2.core.config.RispostaAsincrona}
  3297.      *
  3298.      * @param rispostaAsincrona Object to be serialized
  3299.      * @param prettyPrint if true output the XML with indenting
  3300.      * @return Object to be serialized in byte array
  3301.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3302.      */
  3303.     public byte[] toByteArray(RispostaAsincrona rispostaAsincrona,boolean prettyPrint) throws SerializerException {
  3304.         return this.objToXml(RispostaAsincrona.class, rispostaAsincrona, prettyPrint).toByteArray();
  3305.     }
  3306.    
  3307.     /**
  3308.      * Serialize to String the object <var>rispostaAsincrona</var> of type {@link org.openspcoop2.core.config.RispostaAsincrona}
  3309.      *
  3310.      * @param rispostaAsincrona Object to be serialized
  3311.      * @return Object to be serialized as String
  3312.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3313.      */
  3314.     public String toString(RispostaAsincrona rispostaAsincrona) throws SerializerException {
  3315.         return this.objToXml(RispostaAsincrona.class, rispostaAsincrona, false).toString();
  3316.     }
  3317.     /**
  3318.      * Serialize to String the object <var>rispostaAsincrona</var> of type {@link org.openspcoop2.core.config.RispostaAsincrona}
  3319.      *
  3320.      * @param rispostaAsincrona Object to be serialized
  3321.      * @param prettyPrint if true output the XML with indenting
  3322.      * @return Object to be serialized as String
  3323.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3324.      */
  3325.     public String toString(RispostaAsincrona rispostaAsincrona,boolean prettyPrint) throws SerializerException {
  3326.         return this.objToXml(RispostaAsincrona.class, rispostaAsincrona, prettyPrint).toString();
  3327.     }
  3328.    
  3329.    
  3330.    
  3331.     /*
  3332.      =================================================================================
  3333.      Object: connettore
  3334.      =================================================================================
  3335.     */
  3336.    
  3337.     /**
  3338.      * Serialize to file system in <var>fileName</var> the object <var>connettore</var> of type {@link org.openspcoop2.core.config.Connettore}
  3339.      *
  3340.      * @param fileName Xml file to serialize the object <var>connettore</var>
  3341.      * @param connettore Object to be serialized in xml file <var>fileName</var>
  3342.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3343.      */
  3344.     public void write(String fileName,Connettore connettore) throws SerializerException {
  3345.         this.objToXml(fileName, Connettore.class, connettore, false);
  3346.     }
  3347.     /**
  3348.      * Serialize to file system in <var>fileName</var> the object <var>connettore</var> of type {@link org.openspcoop2.core.config.Connettore}
  3349.      *
  3350.      * @param fileName Xml file to serialize the object <var>connettore</var>
  3351.      * @param connettore Object to be serialized in xml file <var>fileName</var>
  3352.      * @param prettyPrint if true output the XML with indenting
  3353.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3354.      */
  3355.     public void write(String fileName,Connettore connettore,boolean prettyPrint) throws SerializerException {
  3356.         this.objToXml(fileName, Connettore.class, connettore, prettyPrint);
  3357.     }
  3358.    
  3359.     /**
  3360.      * Serialize to file system in <var>file</var> the object <var>connettore</var> of type {@link org.openspcoop2.core.config.Connettore}
  3361.      *
  3362.      * @param file Xml file to serialize the object <var>connettore</var>
  3363.      * @param connettore Object to be serialized in xml file <var>fileName</var>
  3364.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3365.      */
  3366.     public void write(File file,Connettore connettore) throws SerializerException {
  3367.         this.objToXml(file, Connettore.class, connettore, false);
  3368.     }
  3369.     /**
  3370.      * Serialize to file system in <var>file</var> the object <var>connettore</var> of type {@link org.openspcoop2.core.config.Connettore}
  3371.      *
  3372.      * @param file Xml file to serialize the object <var>connettore</var>
  3373.      * @param connettore Object to be serialized in xml file <var>fileName</var>
  3374.      * @param prettyPrint if true output the XML with indenting
  3375.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3376.      */
  3377.     public void write(File file,Connettore connettore,boolean prettyPrint) throws SerializerException {
  3378.         this.objToXml(file, Connettore.class, connettore, prettyPrint);
  3379.     }
  3380.    
  3381.     /**
  3382.      * Serialize to output stream <var>out</var> the object <var>connettore</var> of type {@link org.openspcoop2.core.config.Connettore}
  3383.      *
  3384.      * @param out OutputStream to serialize the object <var>connettore</var>
  3385.      * @param connettore Object to be serialized in xml file <var>fileName</var>
  3386.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3387.      */
  3388.     public void write(OutputStream out,Connettore connettore) throws SerializerException {
  3389.         this.objToXml(out, Connettore.class, connettore, false);
  3390.     }
  3391.     /**
  3392.      * Serialize to output stream <var>out</var> the object <var>connettore</var> of type {@link org.openspcoop2.core.config.Connettore}
  3393.      *
  3394.      * @param out OutputStream to serialize the object <var>connettore</var>
  3395.      * @param connettore Object to be serialized in xml file <var>fileName</var>
  3396.      * @param prettyPrint if true output the XML with indenting
  3397.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3398.      */
  3399.     public void write(OutputStream out,Connettore connettore,boolean prettyPrint) throws SerializerException {
  3400.         this.objToXml(out, Connettore.class, connettore, prettyPrint);
  3401.     }
  3402.            
  3403.     /**
  3404.      * Serialize to byte array the object <var>connettore</var> of type {@link org.openspcoop2.core.config.Connettore}
  3405.      *
  3406.      * @param connettore Object to be serialized
  3407.      * @return Object to be serialized in byte array
  3408.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3409.      */
  3410.     public byte[] toByteArray(Connettore connettore) throws SerializerException {
  3411.         return this.objToXml(Connettore.class, connettore, false).toByteArray();
  3412.     }
  3413.     /**
  3414.      * Serialize to byte array the object <var>connettore</var> of type {@link org.openspcoop2.core.config.Connettore}
  3415.      *
  3416.      * @param connettore Object to be serialized
  3417.      * @param prettyPrint if true output the XML with indenting
  3418.      * @return Object to be serialized in byte array
  3419.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3420.      */
  3421.     public byte[] toByteArray(Connettore connettore,boolean prettyPrint) throws SerializerException {
  3422.         return this.objToXml(Connettore.class, connettore, prettyPrint).toByteArray();
  3423.     }
  3424.    
  3425.     /**
  3426.      * Serialize to String the object <var>connettore</var> of type {@link org.openspcoop2.core.config.Connettore}
  3427.      *
  3428.      * @param connettore Object to be serialized
  3429.      * @return Object to be serialized as String
  3430.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3431.      */
  3432.     public String toString(Connettore connettore) throws SerializerException {
  3433.         return this.objToXml(Connettore.class, connettore, false).toString();
  3434.     }
  3435.     /**
  3436.      * Serialize to String the object <var>connettore</var> of type {@link org.openspcoop2.core.config.Connettore}
  3437.      *
  3438.      * @param connettore Object to be serialized
  3439.      * @param prettyPrint if true output the XML with indenting
  3440.      * @return Object to be serialized as String
  3441.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3442.      */
  3443.     public String toString(Connettore connettore,boolean prettyPrint) throws SerializerException {
  3444.         return this.objToXml(Connettore.class, connettore, prettyPrint).toString();
  3445.     }
  3446.    
  3447.    
  3448.    
  3449.     /*
  3450.      =================================================================================
  3451.      Object: route-registro
  3452.      =================================================================================
  3453.     */
  3454.    
  3455.     /**
  3456.      * Serialize to file system in <var>fileName</var> the object <var>routeRegistro</var> of type {@link org.openspcoop2.core.config.RouteRegistro}
  3457.      *
  3458.      * @param fileName Xml file to serialize the object <var>routeRegistro</var>
  3459.      * @param routeRegistro Object to be serialized in xml file <var>fileName</var>
  3460.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3461.      */
  3462.     public void write(String fileName,RouteRegistro routeRegistro) throws SerializerException {
  3463.         this.objToXml(fileName, RouteRegistro.class, routeRegistro, false);
  3464.     }
  3465.     /**
  3466.      * Serialize to file system in <var>fileName</var> the object <var>routeRegistro</var> of type {@link org.openspcoop2.core.config.RouteRegistro}
  3467.      *
  3468.      * @param fileName Xml file to serialize the object <var>routeRegistro</var>
  3469.      * @param routeRegistro Object to be serialized in xml file <var>fileName</var>
  3470.      * @param prettyPrint if true output the XML with indenting
  3471.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3472.      */
  3473.     public void write(String fileName,RouteRegistro routeRegistro,boolean prettyPrint) throws SerializerException {
  3474.         this.objToXml(fileName, RouteRegistro.class, routeRegistro, prettyPrint);
  3475.     }
  3476.    
  3477.     /**
  3478.      * Serialize to file system in <var>file</var> the object <var>routeRegistro</var> of type {@link org.openspcoop2.core.config.RouteRegistro}
  3479.      *
  3480.      * @param file Xml file to serialize the object <var>routeRegistro</var>
  3481.      * @param routeRegistro Object to be serialized in xml file <var>fileName</var>
  3482.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3483.      */
  3484.     public void write(File file,RouteRegistro routeRegistro) throws SerializerException {
  3485.         this.objToXml(file, RouteRegistro.class, routeRegistro, false);
  3486.     }
  3487.     /**
  3488.      * Serialize to file system in <var>file</var> the object <var>routeRegistro</var> of type {@link org.openspcoop2.core.config.RouteRegistro}
  3489.      *
  3490.      * @param file Xml file to serialize the object <var>routeRegistro</var>
  3491.      * @param routeRegistro Object to be serialized in xml file <var>fileName</var>
  3492.      * @param prettyPrint if true output the XML with indenting
  3493.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3494.      */
  3495.     public void write(File file,RouteRegistro routeRegistro,boolean prettyPrint) throws SerializerException {
  3496.         this.objToXml(file, RouteRegistro.class, routeRegistro, prettyPrint);
  3497.     }
  3498.    
  3499.     /**
  3500.      * Serialize to output stream <var>out</var> the object <var>routeRegistro</var> of type {@link org.openspcoop2.core.config.RouteRegistro}
  3501.      *
  3502.      * @param out OutputStream to serialize the object <var>routeRegistro</var>
  3503.      * @param routeRegistro Object to be serialized in xml file <var>fileName</var>
  3504.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3505.      */
  3506.     public void write(OutputStream out,RouteRegistro routeRegistro) throws SerializerException {
  3507.         this.objToXml(out, RouteRegistro.class, routeRegistro, false);
  3508.     }
  3509.     /**
  3510.      * Serialize to output stream <var>out</var> the object <var>routeRegistro</var> of type {@link org.openspcoop2.core.config.RouteRegistro}
  3511.      *
  3512.      * @param out OutputStream to serialize the object <var>routeRegistro</var>
  3513.      * @param routeRegistro Object to be serialized in xml file <var>fileName</var>
  3514.      * @param prettyPrint if true output the XML with indenting
  3515.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3516.      */
  3517.     public void write(OutputStream out,RouteRegistro routeRegistro,boolean prettyPrint) throws SerializerException {
  3518.         this.objToXml(out, RouteRegistro.class, routeRegistro, prettyPrint);
  3519.     }
  3520.            
  3521.     /**
  3522.      * Serialize to byte array the object <var>routeRegistro</var> of type {@link org.openspcoop2.core.config.RouteRegistro}
  3523.      *
  3524.      * @param routeRegistro Object to be serialized
  3525.      * @return Object to be serialized in byte array
  3526.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3527.      */
  3528.     public byte[] toByteArray(RouteRegistro routeRegistro) throws SerializerException {
  3529.         return this.objToXml(RouteRegistro.class, routeRegistro, false).toByteArray();
  3530.     }
  3531.     /**
  3532.      * Serialize to byte array the object <var>routeRegistro</var> of type {@link org.openspcoop2.core.config.RouteRegistro}
  3533.      *
  3534.      * @param routeRegistro Object to be serialized
  3535.      * @param prettyPrint if true output the XML with indenting
  3536.      * @return Object to be serialized in byte array
  3537.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3538.      */
  3539.     public byte[] toByteArray(RouteRegistro routeRegistro,boolean prettyPrint) throws SerializerException {
  3540.         return this.objToXml(RouteRegistro.class, routeRegistro, prettyPrint).toByteArray();
  3541.     }
  3542.    
  3543.     /**
  3544.      * Serialize to String the object <var>routeRegistro</var> of type {@link org.openspcoop2.core.config.RouteRegistro}
  3545.      *
  3546.      * @param routeRegistro Object to be serialized
  3547.      * @return Object to be serialized as String
  3548.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3549.      */
  3550.     public String toString(RouteRegistro routeRegistro) throws SerializerException {
  3551.         return this.objToXml(RouteRegistro.class, routeRegistro, false).toString();
  3552.     }
  3553.     /**
  3554.      * Serialize to String the object <var>routeRegistro</var> of type {@link org.openspcoop2.core.config.RouteRegistro}
  3555.      *
  3556.      * @param routeRegistro Object to be serialized
  3557.      * @param prettyPrint if true output the XML with indenting
  3558.      * @return Object to be serialized as String
  3559.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3560.      */
  3561.     public String toString(RouteRegistro routeRegistro,boolean prettyPrint) throws SerializerException {
  3562.         return this.objToXml(RouteRegistro.class, routeRegistro, prettyPrint).toString();
  3563.     }
  3564.    
  3565.    
  3566.    
  3567.     /*
  3568.      =================================================================================
  3569.      Object: accesso-dati-keystore
  3570.      =================================================================================
  3571.     */
  3572.    
  3573.     /**
  3574.      * Serialize to file system in <var>fileName</var> the object <var>accessoDatiKeystore</var> of type {@link org.openspcoop2.core.config.AccessoDatiKeystore}
  3575.      *
  3576.      * @param fileName Xml file to serialize the object <var>accessoDatiKeystore</var>
  3577.      * @param accessoDatiKeystore Object to be serialized in xml file <var>fileName</var>
  3578.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3579.      */
  3580.     public void write(String fileName,AccessoDatiKeystore accessoDatiKeystore) throws SerializerException {
  3581.         this.objToXml(fileName, AccessoDatiKeystore.class, accessoDatiKeystore, false);
  3582.     }
  3583.     /**
  3584.      * Serialize to file system in <var>fileName</var> the object <var>accessoDatiKeystore</var> of type {@link org.openspcoop2.core.config.AccessoDatiKeystore}
  3585.      *
  3586.      * @param fileName Xml file to serialize the object <var>accessoDatiKeystore</var>
  3587.      * @param accessoDatiKeystore Object to be serialized in xml file <var>fileName</var>
  3588.      * @param prettyPrint if true output the XML with indenting
  3589.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3590.      */
  3591.     public void write(String fileName,AccessoDatiKeystore accessoDatiKeystore,boolean prettyPrint) throws SerializerException {
  3592.         this.objToXml(fileName, AccessoDatiKeystore.class, accessoDatiKeystore, prettyPrint);
  3593.     }
  3594.    
  3595.     /**
  3596.      * Serialize to file system in <var>file</var> the object <var>accessoDatiKeystore</var> of type {@link org.openspcoop2.core.config.AccessoDatiKeystore}
  3597.      *
  3598.      * @param file Xml file to serialize the object <var>accessoDatiKeystore</var>
  3599.      * @param accessoDatiKeystore Object to be serialized in xml file <var>fileName</var>
  3600.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3601.      */
  3602.     public void write(File file,AccessoDatiKeystore accessoDatiKeystore) throws SerializerException {
  3603.         this.objToXml(file, AccessoDatiKeystore.class, accessoDatiKeystore, false);
  3604.     }
  3605.     /**
  3606.      * Serialize to file system in <var>file</var> the object <var>accessoDatiKeystore</var> of type {@link org.openspcoop2.core.config.AccessoDatiKeystore}
  3607.      *
  3608.      * @param file Xml file to serialize the object <var>accessoDatiKeystore</var>
  3609.      * @param accessoDatiKeystore Object to be serialized in xml file <var>fileName</var>
  3610.      * @param prettyPrint if true output the XML with indenting
  3611.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3612.      */
  3613.     public void write(File file,AccessoDatiKeystore accessoDatiKeystore,boolean prettyPrint) throws SerializerException {
  3614.         this.objToXml(file, AccessoDatiKeystore.class, accessoDatiKeystore, prettyPrint);
  3615.     }
  3616.    
  3617.     /**
  3618.      * Serialize to output stream <var>out</var> the object <var>accessoDatiKeystore</var> of type {@link org.openspcoop2.core.config.AccessoDatiKeystore}
  3619.      *
  3620.      * @param out OutputStream to serialize the object <var>accessoDatiKeystore</var>
  3621.      * @param accessoDatiKeystore Object to be serialized in xml file <var>fileName</var>
  3622.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3623.      */
  3624.     public void write(OutputStream out,AccessoDatiKeystore accessoDatiKeystore) throws SerializerException {
  3625.         this.objToXml(out, AccessoDatiKeystore.class, accessoDatiKeystore, false);
  3626.     }
  3627.     /**
  3628.      * Serialize to output stream <var>out</var> the object <var>accessoDatiKeystore</var> of type {@link org.openspcoop2.core.config.AccessoDatiKeystore}
  3629.      *
  3630.      * @param out OutputStream to serialize the object <var>accessoDatiKeystore</var>
  3631.      * @param accessoDatiKeystore Object to be serialized in xml file <var>fileName</var>
  3632.      * @param prettyPrint if true output the XML with indenting
  3633.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3634.      */
  3635.     public void write(OutputStream out,AccessoDatiKeystore accessoDatiKeystore,boolean prettyPrint) throws SerializerException {
  3636.         this.objToXml(out, AccessoDatiKeystore.class, accessoDatiKeystore, prettyPrint);
  3637.     }
  3638.            
  3639.     /**
  3640.      * Serialize to byte array the object <var>accessoDatiKeystore</var> of type {@link org.openspcoop2.core.config.AccessoDatiKeystore}
  3641.      *
  3642.      * @param accessoDatiKeystore Object to be serialized
  3643.      * @return Object to be serialized in byte array
  3644.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3645.      */
  3646.     public byte[] toByteArray(AccessoDatiKeystore accessoDatiKeystore) throws SerializerException {
  3647.         return this.objToXml(AccessoDatiKeystore.class, accessoDatiKeystore, false).toByteArray();
  3648.     }
  3649.     /**
  3650.      * Serialize to byte array the object <var>accessoDatiKeystore</var> of type {@link org.openspcoop2.core.config.AccessoDatiKeystore}
  3651.      *
  3652.      * @param accessoDatiKeystore Object to be serialized
  3653.      * @param prettyPrint if true output the XML with indenting
  3654.      * @return Object to be serialized in byte array
  3655.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3656.      */
  3657.     public byte[] toByteArray(AccessoDatiKeystore accessoDatiKeystore,boolean prettyPrint) throws SerializerException {
  3658.         return this.objToXml(AccessoDatiKeystore.class, accessoDatiKeystore, prettyPrint).toByteArray();
  3659.     }
  3660.    
  3661.     /**
  3662.      * Serialize to String the object <var>accessoDatiKeystore</var> of type {@link org.openspcoop2.core.config.AccessoDatiKeystore}
  3663.      *
  3664.      * @param accessoDatiKeystore Object to be serialized
  3665.      * @return Object to be serialized as String
  3666.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3667.      */
  3668.     public String toString(AccessoDatiKeystore accessoDatiKeystore) throws SerializerException {
  3669.         return this.objToXml(AccessoDatiKeystore.class, accessoDatiKeystore, false).toString();
  3670.     }
  3671.     /**
  3672.      * Serialize to String the object <var>accessoDatiKeystore</var> of type {@link org.openspcoop2.core.config.AccessoDatiKeystore}
  3673.      *
  3674.      * @param accessoDatiKeystore Object to be serialized
  3675.      * @param prettyPrint if true output the XML with indenting
  3676.      * @return Object to be serialized as String
  3677.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3678.      */
  3679.     public String toString(AccessoDatiKeystore accessoDatiKeystore,boolean prettyPrint) throws SerializerException {
  3680.         return this.objToXml(AccessoDatiKeystore.class, accessoDatiKeystore, prettyPrint).toString();
  3681.     }
  3682.    
  3683.    
  3684.    
  3685.     /*
  3686.      =================================================================================
  3687.      Object: trasformazione-regola-richiesta
  3688.      =================================================================================
  3689.     */
  3690.    
  3691.     /**
  3692.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioneRegolaRichiesta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaRichiesta}
  3693.      *
  3694.      * @param fileName Xml file to serialize the object <var>trasformazioneRegolaRichiesta</var>
  3695.      * @param trasformazioneRegolaRichiesta Object to be serialized in xml file <var>fileName</var>
  3696.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3697.      */
  3698.     public void write(String fileName,TrasformazioneRegolaRichiesta trasformazioneRegolaRichiesta) throws SerializerException {
  3699.         this.objToXml(fileName, TrasformazioneRegolaRichiesta.class, trasformazioneRegolaRichiesta, false);
  3700.     }
  3701.     /**
  3702.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioneRegolaRichiesta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaRichiesta}
  3703.      *
  3704.      * @param fileName Xml file to serialize the object <var>trasformazioneRegolaRichiesta</var>
  3705.      * @param trasformazioneRegolaRichiesta Object to be serialized in xml file <var>fileName</var>
  3706.      * @param prettyPrint if true output the XML with indenting
  3707.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3708.      */
  3709.     public void write(String fileName,TrasformazioneRegolaRichiesta trasformazioneRegolaRichiesta,boolean prettyPrint) throws SerializerException {
  3710.         this.objToXml(fileName, TrasformazioneRegolaRichiesta.class, trasformazioneRegolaRichiesta, prettyPrint);
  3711.     }
  3712.    
  3713.     /**
  3714.      * Serialize to file system in <var>file</var> the object <var>trasformazioneRegolaRichiesta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaRichiesta}
  3715.      *
  3716.      * @param file Xml file to serialize the object <var>trasformazioneRegolaRichiesta</var>
  3717.      * @param trasformazioneRegolaRichiesta Object to be serialized in xml file <var>fileName</var>
  3718.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3719.      */
  3720.     public void write(File file,TrasformazioneRegolaRichiesta trasformazioneRegolaRichiesta) throws SerializerException {
  3721.         this.objToXml(file, TrasformazioneRegolaRichiesta.class, trasformazioneRegolaRichiesta, false);
  3722.     }
  3723.     /**
  3724.      * Serialize to file system in <var>file</var> the object <var>trasformazioneRegolaRichiesta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaRichiesta}
  3725.      *
  3726.      * @param file Xml file to serialize the object <var>trasformazioneRegolaRichiesta</var>
  3727.      * @param trasformazioneRegolaRichiesta Object to be serialized in xml file <var>fileName</var>
  3728.      * @param prettyPrint if true output the XML with indenting
  3729.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3730.      */
  3731.     public void write(File file,TrasformazioneRegolaRichiesta trasformazioneRegolaRichiesta,boolean prettyPrint) throws SerializerException {
  3732.         this.objToXml(file, TrasformazioneRegolaRichiesta.class, trasformazioneRegolaRichiesta, prettyPrint);
  3733.     }
  3734.    
  3735.     /**
  3736.      * Serialize to output stream <var>out</var> the object <var>trasformazioneRegolaRichiesta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaRichiesta}
  3737.      *
  3738.      * @param out OutputStream to serialize the object <var>trasformazioneRegolaRichiesta</var>
  3739.      * @param trasformazioneRegolaRichiesta Object to be serialized in xml file <var>fileName</var>
  3740.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3741.      */
  3742.     public void write(OutputStream out,TrasformazioneRegolaRichiesta trasformazioneRegolaRichiesta) throws SerializerException {
  3743.         this.objToXml(out, TrasformazioneRegolaRichiesta.class, trasformazioneRegolaRichiesta, false);
  3744.     }
  3745.     /**
  3746.      * Serialize to output stream <var>out</var> the object <var>trasformazioneRegolaRichiesta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaRichiesta}
  3747.      *
  3748.      * @param out OutputStream to serialize the object <var>trasformazioneRegolaRichiesta</var>
  3749.      * @param trasformazioneRegolaRichiesta Object to be serialized in xml file <var>fileName</var>
  3750.      * @param prettyPrint if true output the XML with indenting
  3751.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3752.      */
  3753.     public void write(OutputStream out,TrasformazioneRegolaRichiesta trasformazioneRegolaRichiesta,boolean prettyPrint) throws SerializerException {
  3754.         this.objToXml(out, TrasformazioneRegolaRichiesta.class, trasformazioneRegolaRichiesta, prettyPrint);
  3755.     }
  3756.            
  3757.     /**
  3758.      * Serialize to byte array the object <var>trasformazioneRegolaRichiesta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaRichiesta}
  3759.      *
  3760.      * @param trasformazioneRegolaRichiesta Object to be serialized
  3761.      * @return Object to be serialized in byte array
  3762.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3763.      */
  3764.     public byte[] toByteArray(TrasformazioneRegolaRichiesta trasformazioneRegolaRichiesta) throws SerializerException {
  3765.         return this.objToXml(TrasformazioneRegolaRichiesta.class, trasformazioneRegolaRichiesta, false).toByteArray();
  3766.     }
  3767.     /**
  3768.      * Serialize to byte array the object <var>trasformazioneRegolaRichiesta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaRichiesta}
  3769.      *
  3770.      * @param trasformazioneRegolaRichiesta Object to be serialized
  3771.      * @param prettyPrint if true output the XML with indenting
  3772.      * @return Object to be serialized in byte array
  3773.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3774.      */
  3775.     public byte[] toByteArray(TrasformazioneRegolaRichiesta trasformazioneRegolaRichiesta,boolean prettyPrint) throws SerializerException {
  3776.         return this.objToXml(TrasformazioneRegolaRichiesta.class, trasformazioneRegolaRichiesta, prettyPrint).toByteArray();
  3777.     }
  3778.    
  3779.     /**
  3780.      * Serialize to String the object <var>trasformazioneRegolaRichiesta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaRichiesta}
  3781.      *
  3782.      * @param trasformazioneRegolaRichiesta Object to be serialized
  3783.      * @return Object to be serialized as String
  3784.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3785.      */
  3786.     public String toString(TrasformazioneRegolaRichiesta trasformazioneRegolaRichiesta) throws SerializerException {
  3787.         return this.objToXml(TrasformazioneRegolaRichiesta.class, trasformazioneRegolaRichiesta, false).toString();
  3788.     }
  3789.     /**
  3790.      * Serialize to String the object <var>trasformazioneRegolaRichiesta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaRichiesta}
  3791.      *
  3792.      * @param trasformazioneRegolaRichiesta Object to be serialized
  3793.      * @param prettyPrint if true output the XML with indenting
  3794.      * @return Object to be serialized as String
  3795.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3796.      */
  3797.     public String toString(TrasformazioneRegolaRichiesta trasformazioneRegolaRichiesta,boolean prettyPrint) throws SerializerException {
  3798.         return this.objToXml(TrasformazioneRegolaRichiesta.class, trasformazioneRegolaRichiesta, prettyPrint).toString();
  3799.     }
  3800.    
  3801.    
  3802.    
  3803.     /*
  3804.      =================================================================================
  3805.      Object: trasformazione-regola-parametro
  3806.      =================================================================================
  3807.     */
  3808.    
  3809.     /**
  3810.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioneRegolaParametro</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaParametro}
  3811.      *
  3812.      * @param fileName Xml file to serialize the object <var>trasformazioneRegolaParametro</var>
  3813.      * @param trasformazioneRegolaParametro Object to be serialized in xml file <var>fileName</var>
  3814.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3815.      */
  3816.     public void write(String fileName,TrasformazioneRegolaParametro trasformazioneRegolaParametro) throws SerializerException {
  3817.         this.objToXml(fileName, TrasformazioneRegolaParametro.class, trasformazioneRegolaParametro, false);
  3818.     }
  3819.     /**
  3820.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioneRegolaParametro</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaParametro}
  3821.      *
  3822.      * @param fileName Xml file to serialize the object <var>trasformazioneRegolaParametro</var>
  3823.      * @param trasformazioneRegolaParametro Object to be serialized in xml file <var>fileName</var>
  3824.      * @param prettyPrint if true output the XML with indenting
  3825.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3826.      */
  3827.     public void write(String fileName,TrasformazioneRegolaParametro trasformazioneRegolaParametro,boolean prettyPrint) throws SerializerException {
  3828.         this.objToXml(fileName, TrasformazioneRegolaParametro.class, trasformazioneRegolaParametro, prettyPrint);
  3829.     }
  3830.    
  3831.     /**
  3832.      * Serialize to file system in <var>file</var> the object <var>trasformazioneRegolaParametro</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaParametro}
  3833.      *
  3834.      * @param file Xml file to serialize the object <var>trasformazioneRegolaParametro</var>
  3835.      * @param trasformazioneRegolaParametro Object to be serialized in xml file <var>fileName</var>
  3836.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3837.      */
  3838.     public void write(File file,TrasformazioneRegolaParametro trasformazioneRegolaParametro) throws SerializerException {
  3839.         this.objToXml(file, TrasformazioneRegolaParametro.class, trasformazioneRegolaParametro, false);
  3840.     }
  3841.     /**
  3842.      * Serialize to file system in <var>file</var> the object <var>trasformazioneRegolaParametro</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaParametro}
  3843.      *
  3844.      * @param file Xml file to serialize the object <var>trasformazioneRegolaParametro</var>
  3845.      * @param trasformazioneRegolaParametro Object to be serialized in xml file <var>fileName</var>
  3846.      * @param prettyPrint if true output the XML with indenting
  3847.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3848.      */
  3849.     public void write(File file,TrasformazioneRegolaParametro trasformazioneRegolaParametro,boolean prettyPrint) throws SerializerException {
  3850.         this.objToXml(file, TrasformazioneRegolaParametro.class, trasformazioneRegolaParametro, prettyPrint);
  3851.     }
  3852.    
  3853.     /**
  3854.      * Serialize to output stream <var>out</var> the object <var>trasformazioneRegolaParametro</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaParametro}
  3855.      *
  3856.      * @param out OutputStream to serialize the object <var>trasformazioneRegolaParametro</var>
  3857.      * @param trasformazioneRegolaParametro Object to be serialized in xml file <var>fileName</var>
  3858.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3859.      */
  3860.     public void write(OutputStream out,TrasformazioneRegolaParametro trasformazioneRegolaParametro) throws SerializerException {
  3861.         this.objToXml(out, TrasformazioneRegolaParametro.class, trasformazioneRegolaParametro, false);
  3862.     }
  3863.     /**
  3864.      * Serialize to output stream <var>out</var> the object <var>trasformazioneRegolaParametro</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaParametro}
  3865.      *
  3866.      * @param out OutputStream to serialize the object <var>trasformazioneRegolaParametro</var>
  3867.      * @param trasformazioneRegolaParametro Object to be serialized in xml file <var>fileName</var>
  3868.      * @param prettyPrint if true output the XML with indenting
  3869.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3870.      */
  3871.     public void write(OutputStream out,TrasformazioneRegolaParametro trasformazioneRegolaParametro,boolean prettyPrint) throws SerializerException {
  3872.         this.objToXml(out, TrasformazioneRegolaParametro.class, trasformazioneRegolaParametro, prettyPrint);
  3873.     }
  3874.            
  3875.     /**
  3876.      * Serialize to byte array the object <var>trasformazioneRegolaParametro</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaParametro}
  3877.      *
  3878.      * @param trasformazioneRegolaParametro Object to be serialized
  3879.      * @return Object to be serialized in byte array
  3880.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3881.      */
  3882.     public byte[] toByteArray(TrasformazioneRegolaParametro trasformazioneRegolaParametro) throws SerializerException {
  3883.         return this.objToXml(TrasformazioneRegolaParametro.class, trasformazioneRegolaParametro, false).toByteArray();
  3884.     }
  3885.     /**
  3886.      * Serialize to byte array the object <var>trasformazioneRegolaParametro</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaParametro}
  3887.      *
  3888.      * @param trasformazioneRegolaParametro Object to be serialized
  3889.      * @param prettyPrint if true output the XML with indenting
  3890.      * @return Object to be serialized in byte array
  3891.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3892.      */
  3893.     public byte[] toByteArray(TrasformazioneRegolaParametro trasformazioneRegolaParametro,boolean prettyPrint) throws SerializerException {
  3894.         return this.objToXml(TrasformazioneRegolaParametro.class, trasformazioneRegolaParametro, prettyPrint).toByteArray();
  3895.     }
  3896.    
  3897.     /**
  3898.      * Serialize to String the object <var>trasformazioneRegolaParametro</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaParametro}
  3899.      *
  3900.      * @param trasformazioneRegolaParametro Object to be serialized
  3901.      * @return Object to be serialized as String
  3902.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3903.      */
  3904.     public String toString(TrasformazioneRegolaParametro trasformazioneRegolaParametro) throws SerializerException {
  3905.         return this.objToXml(TrasformazioneRegolaParametro.class, trasformazioneRegolaParametro, false).toString();
  3906.     }
  3907.     /**
  3908.      * Serialize to String the object <var>trasformazioneRegolaParametro</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaParametro}
  3909.      *
  3910.      * @param trasformazioneRegolaParametro Object to be serialized
  3911.      * @param prettyPrint if true output the XML with indenting
  3912.      * @return Object to be serialized as String
  3913.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3914.      */
  3915.     public String toString(TrasformazioneRegolaParametro trasformazioneRegolaParametro,boolean prettyPrint) throws SerializerException {
  3916.         return this.objToXml(TrasformazioneRegolaParametro.class, trasformazioneRegolaParametro, prettyPrint).toString();
  3917.     }
  3918.    
  3919.    
  3920.    
  3921.     /*
  3922.      =================================================================================
  3923.      Object: trasformazione-rest
  3924.      =================================================================================
  3925.     */
  3926.    
  3927.     /**
  3928.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioneRest</var> of type {@link org.openspcoop2.core.config.TrasformazioneRest}
  3929.      *
  3930.      * @param fileName Xml file to serialize the object <var>trasformazioneRest</var>
  3931.      * @param trasformazioneRest Object to be serialized in xml file <var>fileName</var>
  3932.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3933.      */
  3934.     public void write(String fileName,TrasformazioneRest trasformazioneRest) throws SerializerException {
  3935.         this.objToXml(fileName, TrasformazioneRest.class, trasformazioneRest, false);
  3936.     }
  3937.     /**
  3938.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioneRest</var> of type {@link org.openspcoop2.core.config.TrasformazioneRest}
  3939.      *
  3940.      * @param fileName Xml file to serialize the object <var>trasformazioneRest</var>
  3941.      * @param trasformazioneRest Object to be serialized in xml file <var>fileName</var>
  3942.      * @param prettyPrint if true output the XML with indenting
  3943.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3944.      */
  3945.     public void write(String fileName,TrasformazioneRest trasformazioneRest,boolean prettyPrint) throws SerializerException {
  3946.         this.objToXml(fileName, TrasformazioneRest.class, trasformazioneRest, prettyPrint);
  3947.     }
  3948.    
  3949.     /**
  3950.      * Serialize to file system in <var>file</var> the object <var>trasformazioneRest</var> of type {@link org.openspcoop2.core.config.TrasformazioneRest}
  3951.      *
  3952.      * @param file Xml file to serialize the object <var>trasformazioneRest</var>
  3953.      * @param trasformazioneRest Object to be serialized in xml file <var>fileName</var>
  3954.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3955.      */
  3956.     public void write(File file,TrasformazioneRest trasformazioneRest) throws SerializerException {
  3957.         this.objToXml(file, TrasformazioneRest.class, trasformazioneRest, false);
  3958.     }
  3959.     /**
  3960.      * Serialize to file system in <var>file</var> the object <var>trasformazioneRest</var> of type {@link org.openspcoop2.core.config.TrasformazioneRest}
  3961.      *
  3962.      * @param file Xml file to serialize the object <var>trasformazioneRest</var>
  3963.      * @param trasformazioneRest Object to be serialized in xml file <var>fileName</var>
  3964.      * @param prettyPrint if true output the XML with indenting
  3965.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3966.      */
  3967.     public void write(File file,TrasformazioneRest trasformazioneRest,boolean prettyPrint) throws SerializerException {
  3968.         this.objToXml(file, TrasformazioneRest.class, trasformazioneRest, prettyPrint);
  3969.     }
  3970.    
  3971.     /**
  3972.      * Serialize to output stream <var>out</var> the object <var>trasformazioneRest</var> of type {@link org.openspcoop2.core.config.TrasformazioneRest}
  3973.      *
  3974.      * @param out OutputStream to serialize the object <var>trasformazioneRest</var>
  3975.      * @param trasformazioneRest Object to be serialized in xml file <var>fileName</var>
  3976.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3977.      */
  3978.     public void write(OutputStream out,TrasformazioneRest trasformazioneRest) throws SerializerException {
  3979.         this.objToXml(out, TrasformazioneRest.class, trasformazioneRest, false);
  3980.     }
  3981.     /**
  3982.      * Serialize to output stream <var>out</var> the object <var>trasformazioneRest</var> of type {@link org.openspcoop2.core.config.TrasformazioneRest}
  3983.      *
  3984.      * @param out OutputStream to serialize the object <var>trasformazioneRest</var>
  3985.      * @param trasformazioneRest Object to be serialized in xml file <var>fileName</var>
  3986.      * @param prettyPrint if true output the XML with indenting
  3987.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3988.      */
  3989.     public void write(OutputStream out,TrasformazioneRest trasformazioneRest,boolean prettyPrint) throws SerializerException {
  3990.         this.objToXml(out, TrasformazioneRest.class, trasformazioneRest, prettyPrint);
  3991.     }
  3992.            
  3993.     /**
  3994.      * Serialize to byte array the object <var>trasformazioneRest</var> of type {@link org.openspcoop2.core.config.TrasformazioneRest}
  3995.      *
  3996.      * @param trasformazioneRest Object to be serialized
  3997.      * @return Object to be serialized in byte array
  3998.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3999.      */
  4000.     public byte[] toByteArray(TrasformazioneRest trasformazioneRest) throws SerializerException {
  4001.         return this.objToXml(TrasformazioneRest.class, trasformazioneRest, false).toByteArray();
  4002.     }
  4003.     /**
  4004.      * Serialize to byte array the object <var>trasformazioneRest</var> of type {@link org.openspcoop2.core.config.TrasformazioneRest}
  4005.      *
  4006.      * @param trasformazioneRest Object to be serialized
  4007.      * @param prettyPrint if true output the XML with indenting
  4008.      * @return Object to be serialized in byte array
  4009.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4010.      */
  4011.     public byte[] toByteArray(TrasformazioneRest trasformazioneRest,boolean prettyPrint) throws SerializerException {
  4012.         return this.objToXml(TrasformazioneRest.class, trasformazioneRest, prettyPrint).toByteArray();
  4013.     }
  4014.    
  4015.     /**
  4016.      * Serialize to String the object <var>trasformazioneRest</var> of type {@link org.openspcoop2.core.config.TrasformazioneRest}
  4017.      *
  4018.      * @param trasformazioneRest Object to be serialized
  4019.      * @return Object to be serialized as String
  4020.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4021.      */
  4022.     public String toString(TrasformazioneRest trasformazioneRest) throws SerializerException {
  4023.         return this.objToXml(TrasformazioneRest.class, trasformazioneRest, false).toString();
  4024.     }
  4025.     /**
  4026.      * Serialize to String the object <var>trasformazioneRest</var> of type {@link org.openspcoop2.core.config.TrasformazioneRest}
  4027.      *
  4028.      * @param trasformazioneRest Object to be serialized
  4029.      * @param prettyPrint if true output the XML with indenting
  4030.      * @return Object to be serialized as String
  4031.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4032.      */
  4033.     public String toString(TrasformazioneRest trasformazioneRest,boolean prettyPrint) throws SerializerException {
  4034.         return this.objToXml(TrasformazioneRest.class, trasformazioneRest, prettyPrint).toString();
  4035.     }
  4036.    
  4037.    
  4038.    
  4039.     /*
  4040.      =================================================================================
  4041.      Object: trasformazione-soap
  4042.      =================================================================================
  4043.     */
  4044.    
  4045.     /**
  4046.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioneSoap</var> of type {@link org.openspcoop2.core.config.TrasformazioneSoap}
  4047.      *
  4048.      * @param fileName Xml file to serialize the object <var>trasformazioneSoap</var>
  4049.      * @param trasformazioneSoap Object to be serialized in xml file <var>fileName</var>
  4050.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4051.      */
  4052.     public void write(String fileName,TrasformazioneSoap trasformazioneSoap) throws SerializerException {
  4053.         this.objToXml(fileName, TrasformazioneSoap.class, trasformazioneSoap, false);
  4054.     }
  4055.     /**
  4056.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioneSoap</var> of type {@link org.openspcoop2.core.config.TrasformazioneSoap}
  4057.      *
  4058.      * @param fileName Xml file to serialize the object <var>trasformazioneSoap</var>
  4059.      * @param trasformazioneSoap Object to be serialized in xml file <var>fileName</var>
  4060.      * @param prettyPrint if true output the XML with indenting
  4061.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4062.      */
  4063.     public void write(String fileName,TrasformazioneSoap trasformazioneSoap,boolean prettyPrint) throws SerializerException {
  4064.         this.objToXml(fileName, TrasformazioneSoap.class, trasformazioneSoap, prettyPrint);
  4065.     }
  4066.    
  4067.     /**
  4068.      * Serialize to file system in <var>file</var> the object <var>trasformazioneSoap</var> of type {@link org.openspcoop2.core.config.TrasformazioneSoap}
  4069.      *
  4070.      * @param file Xml file to serialize the object <var>trasformazioneSoap</var>
  4071.      * @param trasformazioneSoap Object to be serialized in xml file <var>fileName</var>
  4072.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4073.      */
  4074.     public void write(File file,TrasformazioneSoap trasformazioneSoap) throws SerializerException {
  4075.         this.objToXml(file, TrasformazioneSoap.class, trasformazioneSoap, false);
  4076.     }
  4077.     /**
  4078.      * Serialize to file system in <var>file</var> the object <var>trasformazioneSoap</var> of type {@link org.openspcoop2.core.config.TrasformazioneSoap}
  4079.      *
  4080.      * @param file Xml file to serialize the object <var>trasformazioneSoap</var>
  4081.      * @param trasformazioneSoap Object to be serialized in xml file <var>fileName</var>
  4082.      * @param prettyPrint if true output the XML with indenting
  4083.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4084.      */
  4085.     public void write(File file,TrasformazioneSoap trasformazioneSoap,boolean prettyPrint) throws SerializerException {
  4086.         this.objToXml(file, TrasformazioneSoap.class, trasformazioneSoap, prettyPrint);
  4087.     }
  4088.    
  4089.     /**
  4090.      * Serialize to output stream <var>out</var> the object <var>trasformazioneSoap</var> of type {@link org.openspcoop2.core.config.TrasformazioneSoap}
  4091.      *
  4092.      * @param out OutputStream to serialize the object <var>trasformazioneSoap</var>
  4093.      * @param trasformazioneSoap Object to be serialized in xml file <var>fileName</var>
  4094.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4095.      */
  4096.     public void write(OutputStream out,TrasformazioneSoap trasformazioneSoap) throws SerializerException {
  4097.         this.objToXml(out, TrasformazioneSoap.class, trasformazioneSoap, false);
  4098.     }
  4099.     /**
  4100.      * Serialize to output stream <var>out</var> the object <var>trasformazioneSoap</var> of type {@link org.openspcoop2.core.config.TrasformazioneSoap}
  4101.      *
  4102.      * @param out OutputStream to serialize the object <var>trasformazioneSoap</var>
  4103.      * @param trasformazioneSoap Object to be serialized in xml file <var>fileName</var>
  4104.      * @param prettyPrint if true output the XML with indenting
  4105.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4106.      */
  4107.     public void write(OutputStream out,TrasformazioneSoap trasformazioneSoap,boolean prettyPrint) throws SerializerException {
  4108.         this.objToXml(out, TrasformazioneSoap.class, trasformazioneSoap, prettyPrint);
  4109.     }
  4110.            
  4111.     /**
  4112.      * Serialize to byte array the object <var>trasformazioneSoap</var> of type {@link org.openspcoop2.core.config.TrasformazioneSoap}
  4113.      *
  4114.      * @param trasformazioneSoap Object to be serialized
  4115.      * @return Object to be serialized in byte array
  4116.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4117.      */
  4118.     public byte[] toByteArray(TrasformazioneSoap trasformazioneSoap) throws SerializerException {
  4119.         return this.objToXml(TrasformazioneSoap.class, trasformazioneSoap, false).toByteArray();
  4120.     }
  4121.     /**
  4122.      * Serialize to byte array the object <var>trasformazioneSoap</var> of type {@link org.openspcoop2.core.config.TrasformazioneSoap}
  4123.      *
  4124.      * @param trasformazioneSoap Object to be serialized
  4125.      * @param prettyPrint if true output the XML with indenting
  4126.      * @return Object to be serialized in byte array
  4127.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4128.      */
  4129.     public byte[] toByteArray(TrasformazioneSoap trasformazioneSoap,boolean prettyPrint) throws SerializerException {
  4130.         return this.objToXml(TrasformazioneSoap.class, trasformazioneSoap, prettyPrint).toByteArray();
  4131.     }
  4132.    
  4133.     /**
  4134.      * Serialize to String the object <var>trasformazioneSoap</var> of type {@link org.openspcoop2.core.config.TrasformazioneSoap}
  4135.      *
  4136.      * @param trasformazioneSoap Object to be serialized
  4137.      * @return Object to be serialized as String
  4138.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4139.      */
  4140.     public String toString(TrasformazioneSoap trasformazioneSoap) throws SerializerException {
  4141.         return this.objToXml(TrasformazioneSoap.class, trasformazioneSoap, false).toString();
  4142.     }
  4143.     /**
  4144.      * Serialize to String the object <var>trasformazioneSoap</var> of type {@link org.openspcoop2.core.config.TrasformazioneSoap}
  4145.      *
  4146.      * @param trasformazioneSoap Object to be serialized
  4147.      * @param prettyPrint if true output the XML with indenting
  4148.      * @return Object to be serialized as String
  4149.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4150.      */
  4151.     public String toString(TrasformazioneSoap trasformazioneSoap,boolean prettyPrint) throws SerializerException {
  4152.         return this.objToXml(TrasformazioneSoap.class, trasformazioneSoap, prettyPrint).toString();
  4153.     }
  4154.    
  4155.    
  4156.    
  4157.     /*
  4158.      =================================================================================
  4159.      Object: id-soggetto
  4160.      =================================================================================
  4161.     */
  4162.    
  4163.     /**
  4164.      * Serialize to file system in <var>fileName</var> the object <var>idSoggetto</var> of type {@link org.openspcoop2.core.config.IdSoggetto}
  4165.      *
  4166.      * @param fileName Xml file to serialize the object <var>idSoggetto</var>
  4167.      * @param idSoggetto Object to be serialized in xml file <var>fileName</var>
  4168.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4169.      */
  4170.     public void write(String fileName,IdSoggetto idSoggetto) throws SerializerException {
  4171.         this.objToXml(fileName, IdSoggetto.class, idSoggetto, false);
  4172.     }
  4173.     /**
  4174.      * Serialize to file system in <var>fileName</var> the object <var>idSoggetto</var> of type {@link org.openspcoop2.core.config.IdSoggetto}
  4175.      *
  4176.      * @param fileName Xml file to serialize the object <var>idSoggetto</var>
  4177.      * @param idSoggetto Object to be serialized in xml file <var>fileName</var>
  4178.      * @param prettyPrint if true output the XML with indenting
  4179.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4180.      */
  4181.     public void write(String fileName,IdSoggetto idSoggetto,boolean prettyPrint) throws SerializerException {
  4182.         this.objToXml(fileName, IdSoggetto.class, idSoggetto, prettyPrint);
  4183.     }
  4184.    
  4185.     /**
  4186.      * Serialize to file system in <var>file</var> the object <var>idSoggetto</var> of type {@link org.openspcoop2.core.config.IdSoggetto}
  4187.      *
  4188.      * @param file Xml file to serialize the object <var>idSoggetto</var>
  4189.      * @param idSoggetto Object to be serialized in xml file <var>fileName</var>
  4190.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4191.      */
  4192.     public void write(File file,IdSoggetto idSoggetto) throws SerializerException {
  4193.         this.objToXml(file, IdSoggetto.class, idSoggetto, false);
  4194.     }
  4195.     /**
  4196.      * Serialize to file system in <var>file</var> the object <var>idSoggetto</var> of type {@link org.openspcoop2.core.config.IdSoggetto}
  4197.      *
  4198.      * @param file Xml file to serialize the object <var>idSoggetto</var>
  4199.      * @param idSoggetto Object to be serialized in xml file <var>fileName</var>
  4200.      * @param prettyPrint if true output the XML with indenting
  4201.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4202.      */
  4203.     public void write(File file,IdSoggetto idSoggetto,boolean prettyPrint) throws SerializerException {
  4204.         this.objToXml(file, IdSoggetto.class, idSoggetto, prettyPrint);
  4205.     }
  4206.    
  4207.     /**
  4208.      * Serialize to output stream <var>out</var> the object <var>idSoggetto</var> of type {@link org.openspcoop2.core.config.IdSoggetto}
  4209.      *
  4210.      * @param out OutputStream to serialize the object <var>idSoggetto</var>
  4211.      * @param idSoggetto Object to be serialized in xml file <var>fileName</var>
  4212.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4213.      */
  4214.     public void write(OutputStream out,IdSoggetto idSoggetto) throws SerializerException {
  4215.         this.objToXml(out, IdSoggetto.class, idSoggetto, false);
  4216.     }
  4217.     /**
  4218.      * Serialize to output stream <var>out</var> the object <var>idSoggetto</var> of type {@link org.openspcoop2.core.config.IdSoggetto}
  4219.      *
  4220.      * @param out OutputStream to serialize the object <var>idSoggetto</var>
  4221.      * @param idSoggetto Object to be serialized in xml file <var>fileName</var>
  4222.      * @param prettyPrint if true output the XML with indenting
  4223.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4224.      */
  4225.     public void write(OutputStream out,IdSoggetto idSoggetto,boolean prettyPrint) throws SerializerException {
  4226.         this.objToXml(out, IdSoggetto.class, idSoggetto, prettyPrint);
  4227.     }
  4228.            
  4229.     /**
  4230.      * Serialize to byte array the object <var>idSoggetto</var> of type {@link org.openspcoop2.core.config.IdSoggetto}
  4231.      *
  4232.      * @param idSoggetto Object to be serialized
  4233.      * @return Object to be serialized in byte array
  4234.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4235.      */
  4236.     public byte[] toByteArray(IdSoggetto idSoggetto) throws SerializerException {
  4237.         return this.objToXml(IdSoggetto.class, idSoggetto, false).toByteArray();
  4238.     }
  4239.     /**
  4240.      * Serialize to byte array the object <var>idSoggetto</var> of type {@link org.openspcoop2.core.config.IdSoggetto}
  4241.      *
  4242.      * @param idSoggetto Object to be serialized
  4243.      * @param prettyPrint if true output the XML with indenting
  4244.      * @return Object to be serialized in byte array
  4245.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4246.      */
  4247.     public byte[] toByteArray(IdSoggetto idSoggetto,boolean prettyPrint) throws SerializerException {
  4248.         return this.objToXml(IdSoggetto.class, idSoggetto, prettyPrint).toByteArray();
  4249.     }
  4250.    
  4251.     /**
  4252.      * Serialize to String the object <var>idSoggetto</var> of type {@link org.openspcoop2.core.config.IdSoggetto}
  4253.      *
  4254.      * @param idSoggetto Object to be serialized
  4255.      * @return Object to be serialized as String
  4256.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4257.      */
  4258.     public String toString(IdSoggetto idSoggetto) throws SerializerException {
  4259.         return this.objToXml(IdSoggetto.class, idSoggetto, false).toString();
  4260.     }
  4261.     /**
  4262.      * Serialize to String the object <var>idSoggetto</var> of type {@link org.openspcoop2.core.config.IdSoggetto}
  4263.      *
  4264.      * @param idSoggetto Object to be serialized
  4265.      * @param prettyPrint if true output the XML with indenting
  4266.      * @return Object to be serialized as String
  4267.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4268.      */
  4269.     public String toString(IdSoggetto idSoggetto,boolean prettyPrint) throws SerializerException {
  4270.         return this.objToXml(IdSoggetto.class, idSoggetto, prettyPrint).toString();
  4271.     }
  4272.    
  4273.    
  4274.    
  4275.     /*
  4276.      =================================================================================
  4277.      Object: porta-delegata
  4278.      =================================================================================
  4279.     */
  4280.    
  4281.     /**
  4282.      * Serialize to file system in <var>fileName</var> the object <var>portaDelegata</var> of type {@link org.openspcoop2.core.config.PortaDelegata}
  4283.      *
  4284.      * @param fileName Xml file to serialize the object <var>portaDelegata</var>
  4285.      * @param portaDelegata Object to be serialized in xml file <var>fileName</var>
  4286.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4287.      */
  4288.     public void write(String fileName,PortaDelegata portaDelegata) throws SerializerException {
  4289.         this.objToXml(fileName, PortaDelegata.class, portaDelegata, false);
  4290.     }
  4291.     /**
  4292.      * Serialize to file system in <var>fileName</var> the object <var>portaDelegata</var> of type {@link org.openspcoop2.core.config.PortaDelegata}
  4293.      *
  4294.      * @param fileName Xml file to serialize the object <var>portaDelegata</var>
  4295.      * @param portaDelegata Object to be serialized in xml file <var>fileName</var>
  4296.      * @param prettyPrint if true output the XML with indenting
  4297.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4298.      */
  4299.     public void write(String fileName,PortaDelegata portaDelegata,boolean prettyPrint) throws SerializerException {
  4300.         this.objToXml(fileName, PortaDelegata.class, portaDelegata, prettyPrint);
  4301.     }
  4302.    
  4303.     /**
  4304.      * Serialize to file system in <var>file</var> the object <var>portaDelegata</var> of type {@link org.openspcoop2.core.config.PortaDelegata}
  4305.      *
  4306.      * @param file Xml file to serialize the object <var>portaDelegata</var>
  4307.      * @param portaDelegata Object to be serialized in xml file <var>fileName</var>
  4308.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4309.      */
  4310.     public void write(File file,PortaDelegata portaDelegata) throws SerializerException {
  4311.         this.objToXml(file, PortaDelegata.class, portaDelegata, false);
  4312.     }
  4313.     /**
  4314.      * Serialize to file system in <var>file</var> the object <var>portaDelegata</var> of type {@link org.openspcoop2.core.config.PortaDelegata}
  4315.      *
  4316.      * @param file Xml file to serialize the object <var>portaDelegata</var>
  4317.      * @param portaDelegata Object to be serialized in xml file <var>fileName</var>
  4318.      * @param prettyPrint if true output the XML with indenting
  4319.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4320.      */
  4321.     public void write(File file,PortaDelegata portaDelegata,boolean prettyPrint) throws SerializerException {
  4322.         this.objToXml(file, PortaDelegata.class, portaDelegata, prettyPrint);
  4323.     }
  4324.    
  4325.     /**
  4326.      * Serialize to output stream <var>out</var> the object <var>portaDelegata</var> of type {@link org.openspcoop2.core.config.PortaDelegata}
  4327.      *
  4328.      * @param out OutputStream to serialize the object <var>portaDelegata</var>
  4329.      * @param portaDelegata Object to be serialized in xml file <var>fileName</var>
  4330.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4331.      */
  4332.     public void write(OutputStream out,PortaDelegata portaDelegata) throws SerializerException {
  4333.         this.objToXml(out, PortaDelegata.class, portaDelegata, false);
  4334.     }
  4335.     /**
  4336.      * Serialize to output stream <var>out</var> the object <var>portaDelegata</var> of type {@link org.openspcoop2.core.config.PortaDelegata}
  4337.      *
  4338.      * @param out OutputStream to serialize the object <var>portaDelegata</var>
  4339.      * @param portaDelegata Object to be serialized in xml file <var>fileName</var>
  4340.      * @param prettyPrint if true output the XML with indenting
  4341.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4342.      */
  4343.     public void write(OutputStream out,PortaDelegata portaDelegata,boolean prettyPrint) throws SerializerException {
  4344.         this.objToXml(out, PortaDelegata.class, portaDelegata, prettyPrint);
  4345.     }
  4346.            
  4347.     /**
  4348.      * Serialize to byte array the object <var>portaDelegata</var> of type {@link org.openspcoop2.core.config.PortaDelegata}
  4349.      *
  4350.      * @param portaDelegata Object to be serialized
  4351.      * @return Object to be serialized in byte array
  4352.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4353.      */
  4354.     public byte[] toByteArray(PortaDelegata portaDelegata) throws SerializerException {
  4355.         return this.objToXml(PortaDelegata.class, portaDelegata, false).toByteArray();
  4356.     }
  4357.     /**
  4358.      * Serialize to byte array the object <var>portaDelegata</var> of type {@link org.openspcoop2.core.config.PortaDelegata}
  4359.      *
  4360.      * @param portaDelegata Object to be serialized
  4361.      * @param prettyPrint if true output the XML with indenting
  4362.      * @return Object to be serialized in byte array
  4363.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4364.      */
  4365.     public byte[] toByteArray(PortaDelegata portaDelegata,boolean prettyPrint) throws SerializerException {
  4366.         return this.objToXml(PortaDelegata.class, portaDelegata, prettyPrint).toByteArray();
  4367.     }
  4368.    
  4369.     /**
  4370.      * Serialize to String the object <var>portaDelegata</var> of type {@link org.openspcoop2.core.config.PortaDelegata}
  4371.      *
  4372.      * @param portaDelegata Object to be serialized
  4373.      * @return Object to be serialized as String
  4374.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4375.      */
  4376.     public String toString(PortaDelegata portaDelegata) throws SerializerException {
  4377.         return this.objToXml(PortaDelegata.class, portaDelegata, false).toString();
  4378.     }
  4379.     /**
  4380.      * Serialize to String the object <var>portaDelegata</var> of type {@link org.openspcoop2.core.config.PortaDelegata}
  4381.      *
  4382.      * @param portaDelegata Object to be serialized
  4383.      * @param prettyPrint if true output the XML with indenting
  4384.      * @return Object to be serialized as String
  4385.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4386.      */
  4387.     public String toString(PortaDelegata portaDelegata,boolean prettyPrint) throws SerializerException {
  4388.         return this.objToXml(PortaDelegata.class, portaDelegata, prettyPrint).toString();
  4389.     }
  4390.    
  4391.    
  4392.    
  4393.     /*
  4394.      =================================================================================
  4395.      Object: soggetto
  4396.      =================================================================================
  4397.     */
  4398.    
  4399.     /**
  4400.      * Serialize to file system in <var>fileName</var> the object <var>soggetto</var> of type {@link org.openspcoop2.core.config.Soggetto}
  4401.      *
  4402.      * @param fileName Xml file to serialize the object <var>soggetto</var>
  4403.      * @param soggetto Object to be serialized in xml file <var>fileName</var>
  4404.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4405.      */
  4406.     public void write(String fileName,Soggetto soggetto) throws SerializerException {
  4407.         this.objToXml(fileName, Soggetto.class, soggetto, false);
  4408.     }
  4409.     /**
  4410.      * Serialize to file system in <var>fileName</var> the object <var>soggetto</var> of type {@link org.openspcoop2.core.config.Soggetto}
  4411.      *
  4412.      * @param fileName Xml file to serialize the object <var>soggetto</var>
  4413.      * @param soggetto Object to be serialized in xml file <var>fileName</var>
  4414.      * @param prettyPrint if true output the XML with indenting
  4415.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4416.      */
  4417.     public void write(String fileName,Soggetto soggetto,boolean prettyPrint) throws SerializerException {
  4418.         this.objToXml(fileName, Soggetto.class, soggetto, prettyPrint);
  4419.     }
  4420.    
  4421.     /**
  4422.      * Serialize to file system in <var>file</var> the object <var>soggetto</var> of type {@link org.openspcoop2.core.config.Soggetto}
  4423.      *
  4424.      * @param file Xml file to serialize the object <var>soggetto</var>
  4425.      * @param soggetto Object to be serialized in xml file <var>fileName</var>
  4426.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4427.      */
  4428.     public void write(File file,Soggetto soggetto) throws SerializerException {
  4429.         this.objToXml(file, Soggetto.class, soggetto, false);
  4430.     }
  4431.     /**
  4432.      * Serialize to file system in <var>file</var> the object <var>soggetto</var> of type {@link org.openspcoop2.core.config.Soggetto}
  4433.      *
  4434.      * @param file Xml file to serialize the object <var>soggetto</var>
  4435.      * @param soggetto Object to be serialized in xml file <var>fileName</var>
  4436.      * @param prettyPrint if true output the XML with indenting
  4437.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4438.      */
  4439.     public void write(File file,Soggetto soggetto,boolean prettyPrint) throws SerializerException {
  4440.         this.objToXml(file, Soggetto.class, soggetto, prettyPrint);
  4441.     }
  4442.    
  4443.     /**
  4444.      * Serialize to output stream <var>out</var> the object <var>soggetto</var> of type {@link org.openspcoop2.core.config.Soggetto}
  4445.      *
  4446.      * @param out OutputStream to serialize the object <var>soggetto</var>
  4447.      * @param soggetto Object to be serialized in xml file <var>fileName</var>
  4448.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4449.      */
  4450.     public void write(OutputStream out,Soggetto soggetto) throws SerializerException {
  4451.         this.objToXml(out, Soggetto.class, soggetto, false);
  4452.     }
  4453.     /**
  4454.      * Serialize to output stream <var>out</var> the object <var>soggetto</var> of type {@link org.openspcoop2.core.config.Soggetto}
  4455.      *
  4456.      * @param out OutputStream to serialize the object <var>soggetto</var>
  4457.      * @param soggetto Object to be serialized in xml file <var>fileName</var>
  4458.      * @param prettyPrint if true output the XML with indenting
  4459.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4460.      */
  4461.     public void write(OutputStream out,Soggetto soggetto,boolean prettyPrint) throws SerializerException {
  4462.         this.objToXml(out, Soggetto.class, soggetto, prettyPrint);
  4463.     }
  4464.            
  4465.     /**
  4466.      * Serialize to byte array the object <var>soggetto</var> of type {@link org.openspcoop2.core.config.Soggetto}
  4467.      *
  4468.      * @param soggetto Object to be serialized
  4469.      * @return Object to be serialized in byte array
  4470.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4471.      */
  4472.     public byte[] toByteArray(Soggetto soggetto) throws SerializerException {
  4473.         return this.objToXml(Soggetto.class, soggetto, false).toByteArray();
  4474.     }
  4475.     /**
  4476.      * Serialize to byte array the object <var>soggetto</var> of type {@link org.openspcoop2.core.config.Soggetto}
  4477.      *
  4478.      * @param soggetto Object to be serialized
  4479.      * @param prettyPrint if true output the XML with indenting
  4480.      * @return Object to be serialized in byte array
  4481.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4482.      */
  4483.     public byte[] toByteArray(Soggetto soggetto,boolean prettyPrint) throws SerializerException {
  4484.         return this.objToXml(Soggetto.class, soggetto, prettyPrint).toByteArray();
  4485.     }
  4486.    
  4487.     /**
  4488.      * Serialize to String the object <var>soggetto</var> of type {@link org.openspcoop2.core.config.Soggetto}
  4489.      *
  4490.      * @param soggetto Object to be serialized
  4491.      * @return Object to be serialized as String
  4492.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4493.      */
  4494.     public String toString(Soggetto soggetto) throws SerializerException {
  4495.         return this.objToXml(Soggetto.class, soggetto, false).toString();
  4496.     }
  4497.     /**
  4498.      * Serialize to String the object <var>soggetto</var> of type {@link org.openspcoop2.core.config.Soggetto}
  4499.      *
  4500.      * @param soggetto Object to be serialized
  4501.      * @param prettyPrint if true output the XML with indenting
  4502.      * @return Object to be serialized as String
  4503.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4504.      */
  4505.     public String toString(Soggetto soggetto,boolean prettyPrint) throws SerializerException {
  4506.         return this.objToXml(Soggetto.class, soggetto, prettyPrint).toString();
  4507.     }
  4508.    
  4509.    
  4510.    
  4511.     /*
  4512.      =================================================================================
  4513.      Object: porta-applicativa
  4514.      =================================================================================
  4515.     */
  4516.    
  4517.     /**
  4518.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativa</var> of type {@link org.openspcoop2.core.config.PortaApplicativa}
  4519.      *
  4520.      * @param fileName Xml file to serialize the object <var>portaApplicativa</var>
  4521.      * @param portaApplicativa Object to be serialized in xml file <var>fileName</var>
  4522.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4523.      */
  4524.     public void write(String fileName,PortaApplicativa portaApplicativa) throws SerializerException {
  4525.         this.objToXml(fileName, PortaApplicativa.class, portaApplicativa, false);
  4526.     }
  4527.     /**
  4528.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativa</var> of type {@link org.openspcoop2.core.config.PortaApplicativa}
  4529.      *
  4530.      * @param fileName Xml file to serialize the object <var>portaApplicativa</var>
  4531.      * @param portaApplicativa Object to be serialized in xml file <var>fileName</var>
  4532.      * @param prettyPrint if true output the XML with indenting
  4533.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4534.      */
  4535.     public void write(String fileName,PortaApplicativa portaApplicativa,boolean prettyPrint) throws SerializerException {
  4536.         this.objToXml(fileName, PortaApplicativa.class, portaApplicativa, prettyPrint);
  4537.     }
  4538.    
  4539.     /**
  4540.      * Serialize to file system in <var>file</var> the object <var>portaApplicativa</var> of type {@link org.openspcoop2.core.config.PortaApplicativa}
  4541.      *
  4542.      * @param file Xml file to serialize the object <var>portaApplicativa</var>
  4543.      * @param portaApplicativa Object to be serialized in xml file <var>fileName</var>
  4544.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4545.      */
  4546.     public void write(File file,PortaApplicativa portaApplicativa) throws SerializerException {
  4547.         this.objToXml(file, PortaApplicativa.class, portaApplicativa, false);
  4548.     }
  4549.     /**
  4550.      * Serialize to file system in <var>file</var> the object <var>portaApplicativa</var> of type {@link org.openspcoop2.core.config.PortaApplicativa}
  4551.      *
  4552.      * @param file Xml file to serialize the object <var>portaApplicativa</var>
  4553.      * @param portaApplicativa Object to be serialized in xml file <var>fileName</var>
  4554.      * @param prettyPrint if true output the XML with indenting
  4555.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4556.      */
  4557.     public void write(File file,PortaApplicativa portaApplicativa,boolean prettyPrint) throws SerializerException {
  4558.         this.objToXml(file, PortaApplicativa.class, portaApplicativa, prettyPrint);
  4559.     }
  4560.    
  4561.     /**
  4562.      * Serialize to output stream <var>out</var> the object <var>portaApplicativa</var> of type {@link org.openspcoop2.core.config.PortaApplicativa}
  4563.      *
  4564.      * @param out OutputStream to serialize the object <var>portaApplicativa</var>
  4565.      * @param portaApplicativa Object to be serialized in xml file <var>fileName</var>
  4566.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4567.      */
  4568.     public void write(OutputStream out,PortaApplicativa portaApplicativa) throws SerializerException {
  4569.         this.objToXml(out, PortaApplicativa.class, portaApplicativa, false);
  4570.     }
  4571.     /**
  4572.      * Serialize to output stream <var>out</var> the object <var>portaApplicativa</var> of type {@link org.openspcoop2.core.config.PortaApplicativa}
  4573.      *
  4574.      * @param out OutputStream to serialize the object <var>portaApplicativa</var>
  4575.      * @param portaApplicativa Object to be serialized in xml file <var>fileName</var>
  4576.      * @param prettyPrint if true output the XML with indenting
  4577.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4578.      */
  4579.     public void write(OutputStream out,PortaApplicativa portaApplicativa,boolean prettyPrint) throws SerializerException {
  4580.         this.objToXml(out, PortaApplicativa.class, portaApplicativa, prettyPrint);
  4581.     }
  4582.            
  4583.     /**
  4584.      * Serialize to byte array the object <var>portaApplicativa</var> of type {@link org.openspcoop2.core.config.PortaApplicativa}
  4585.      *
  4586.      * @param portaApplicativa Object to be serialized
  4587.      * @return Object to be serialized in byte array
  4588.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4589.      */
  4590.     public byte[] toByteArray(PortaApplicativa portaApplicativa) throws SerializerException {
  4591.         return this.objToXml(PortaApplicativa.class, portaApplicativa, false).toByteArray();
  4592.     }
  4593.     /**
  4594.      * Serialize to byte array the object <var>portaApplicativa</var> of type {@link org.openspcoop2.core.config.PortaApplicativa}
  4595.      *
  4596.      * @param portaApplicativa Object to be serialized
  4597.      * @param prettyPrint if true output the XML with indenting
  4598.      * @return Object to be serialized in byte array
  4599.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4600.      */
  4601.     public byte[] toByteArray(PortaApplicativa portaApplicativa,boolean prettyPrint) throws SerializerException {
  4602.         return this.objToXml(PortaApplicativa.class, portaApplicativa, prettyPrint).toByteArray();
  4603.     }
  4604.    
  4605.     /**
  4606.      * Serialize to String the object <var>portaApplicativa</var> of type {@link org.openspcoop2.core.config.PortaApplicativa}
  4607.      *
  4608.      * @param portaApplicativa Object to be serialized
  4609.      * @return Object to be serialized as String
  4610.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4611.      */
  4612.     public String toString(PortaApplicativa portaApplicativa) throws SerializerException {
  4613.         return this.objToXml(PortaApplicativa.class, portaApplicativa, false).toString();
  4614.     }
  4615.     /**
  4616.      * Serialize to String the object <var>portaApplicativa</var> of type {@link org.openspcoop2.core.config.PortaApplicativa}
  4617.      *
  4618.      * @param portaApplicativa Object to be serialized
  4619.      * @param prettyPrint if true output the XML with indenting
  4620.      * @return Object to be serialized as String
  4621.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4622.      */
  4623.     public String toString(PortaApplicativa portaApplicativa,boolean prettyPrint) throws SerializerException {
  4624.         return this.objToXml(PortaApplicativa.class, portaApplicativa, prettyPrint).toString();
  4625.     }
  4626.    
  4627.    
  4628.    
  4629.     /*
  4630.      =================================================================================
  4631.      Object: servizio-applicativo
  4632.      =================================================================================
  4633.     */
  4634.    
  4635.     /**
  4636.      * Serialize to file system in <var>fileName</var> the object <var>servizioApplicativo</var> of type {@link org.openspcoop2.core.config.ServizioApplicativo}
  4637.      *
  4638.      * @param fileName Xml file to serialize the object <var>servizioApplicativo</var>
  4639.      * @param servizioApplicativo Object to be serialized in xml file <var>fileName</var>
  4640.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4641.      */
  4642.     public void write(String fileName,ServizioApplicativo servizioApplicativo) throws SerializerException {
  4643.         this.objToXml(fileName, ServizioApplicativo.class, servizioApplicativo, false);
  4644.     }
  4645.     /**
  4646.      * Serialize to file system in <var>fileName</var> the object <var>servizioApplicativo</var> of type {@link org.openspcoop2.core.config.ServizioApplicativo}
  4647.      *
  4648.      * @param fileName Xml file to serialize the object <var>servizioApplicativo</var>
  4649.      * @param servizioApplicativo Object to be serialized in xml file <var>fileName</var>
  4650.      * @param prettyPrint if true output the XML with indenting
  4651.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4652.      */
  4653.     public void write(String fileName,ServizioApplicativo servizioApplicativo,boolean prettyPrint) throws SerializerException {
  4654.         this.objToXml(fileName, ServizioApplicativo.class, servizioApplicativo, prettyPrint);
  4655.     }
  4656.    
  4657.     /**
  4658.      * Serialize to file system in <var>file</var> the object <var>servizioApplicativo</var> of type {@link org.openspcoop2.core.config.ServizioApplicativo}
  4659.      *
  4660.      * @param file Xml file to serialize the object <var>servizioApplicativo</var>
  4661.      * @param servizioApplicativo Object to be serialized in xml file <var>fileName</var>
  4662.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4663.      */
  4664.     public void write(File file,ServizioApplicativo servizioApplicativo) throws SerializerException {
  4665.         this.objToXml(file, ServizioApplicativo.class, servizioApplicativo, false);
  4666.     }
  4667.     /**
  4668.      * Serialize to file system in <var>file</var> the object <var>servizioApplicativo</var> of type {@link org.openspcoop2.core.config.ServizioApplicativo}
  4669.      *
  4670.      * @param file Xml file to serialize the object <var>servizioApplicativo</var>
  4671.      * @param servizioApplicativo Object to be serialized in xml file <var>fileName</var>
  4672.      * @param prettyPrint if true output the XML with indenting
  4673.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4674.      */
  4675.     public void write(File file,ServizioApplicativo servizioApplicativo,boolean prettyPrint) throws SerializerException {
  4676.         this.objToXml(file, ServizioApplicativo.class, servizioApplicativo, prettyPrint);
  4677.     }
  4678.    
  4679.     /**
  4680.      * Serialize to output stream <var>out</var> the object <var>servizioApplicativo</var> of type {@link org.openspcoop2.core.config.ServizioApplicativo}
  4681.      *
  4682.      * @param out OutputStream to serialize the object <var>servizioApplicativo</var>
  4683.      * @param servizioApplicativo Object to be serialized in xml file <var>fileName</var>
  4684.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4685.      */
  4686.     public void write(OutputStream out,ServizioApplicativo servizioApplicativo) throws SerializerException {
  4687.         this.objToXml(out, ServizioApplicativo.class, servizioApplicativo, false);
  4688.     }
  4689.     /**
  4690.      * Serialize to output stream <var>out</var> the object <var>servizioApplicativo</var> of type {@link org.openspcoop2.core.config.ServizioApplicativo}
  4691.      *
  4692.      * @param out OutputStream to serialize the object <var>servizioApplicativo</var>
  4693.      * @param servizioApplicativo Object to be serialized in xml file <var>fileName</var>
  4694.      * @param prettyPrint if true output the XML with indenting
  4695.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4696.      */
  4697.     public void write(OutputStream out,ServizioApplicativo servizioApplicativo,boolean prettyPrint) throws SerializerException {
  4698.         this.objToXml(out, ServizioApplicativo.class, servizioApplicativo, prettyPrint);
  4699.     }
  4700.            
  4701.     /**
  4702.      * Serialize to byte array the object <var>servizioApplicativo</var> of type {@link org.openspcoop2.core.config.ServizioApplicativo}
  4703.      *
  4704.      * @param servizioApplicativo Object to be serialized
  4705.      * @return Object to be serialized in byte array
  4706.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4707.      */
  4708.     public byte[] toByteArray(ServizioApplicativo servizioApplicativo) throws SerializerException {
  4709.         return this.objToXml(ServizioApplicativo.class, servizioApplicativo, false).toByteArray();
  4710.     }
  4711.     /**
  4712.      * Serialize to byte array the object <var>servizioApplicativo</var> of type {@link org.openspcoop2.core.config.ServizioApplicativo}
  4713.      *
  4714.      * @param servizioApplicativo Object to be serialized
  4715.      * @param prettyPrint if true output the XML with indenting
  4716.      * @return Object to be serialized in byte array
  4717.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4718.      */
  4719.     public byte[] toByteArray(ServizioApplicativo servizioApplicativo,boolean prettyPrint) throws SerializerException {
  4720.         return this.objToXml(ServizioApplicativo.class, servizioApplicativo, prettyPrint).toByteArray();
  4721.     }
  4722.    
  4723.     /**
  4724.      * Serialize to String the object <var>servizioApplicativo</var> of type {@link org.openspcoop2.core.config.ServizioApplicativo}
  4725.      *
  4726.      * @param servizioApplicativo Object to be serialized
  4727.      * @return Object to be serialized as String
  4728.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4729.      */
  4730.     public String toString(ServizioApplicativo servizioApplicativo) throws SerializerException {
  4731.         return this.objToXml(ServizioApplicativo.class, servizioApplicativo, false).toString();
  4732.     }
  4733.     /**
  4734.      * Serialize to String the object <var>servizioApplicativo</var> of type {@link org.openspcoop2.core.config.ServizioApplicativo}
  4735.      *
  4736.      * @param servizioApplicativo Object to be serialized
  4737.      * @param prettyPrint if true output the XML with indenting
  4738.      * @return Object to be serialized as String
  4739.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4740.      */
  4741.     public String toString(ServizioApplicativo servizioApplicativo,boolean prettyPrint) throws SerializerException {
  4742.         return this.objToXml(ServizioApplicativo.class, servizioApplicativo, prettyPrint).toString();
  4743.     }
  4744.    
  4745.    
  4746.    
  4747.     /*
  4748.      =================================================================================
  4749.      Object: Property
  4750.      =================================================================================
  4751.     */
  4752.    
  4753.     /**
  4754.      * Serialize to file system in <var>fileName</var> the object <var>property</var> of type {@link org.openspcoop2.core.config.Property}
  4755.      *
  4756.      * @param fileName Xml file to serialize the object <var>property</var>
  4757.      * @param property Object to be serialized in xml file <var>fileName</var>
  4758.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4759.      */
  4760.     public void write(String fileName,Property property) throws SerializerException {
  4761.         this.objToXml(fileName, Property.class, property, false);
  4762.     }
  4763.     /**
  4764.      * Serialize to file system in <var>fileName</var> the object <var>property</var> of type {@link org.openspcoop2.core.config.Property}
  4765.      *
  4766.      * @param fileName Xml file to serialize the object <var>property</var>
  4767.      * @param property Object to be serialized in xml file <var>fileName</var>
  4768.      * @param prettyPrint if true output the XML with indenting
  4769.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4770.      */
  4771.     public void write(String fileName,Property property,boolean prettyPrint) throws SerializerException {
  4772.         this.objToXml(fileName, Property.class, property, prettyPrint);
  4773.     }
  4774.    
  4775.     /**
  4776.      * Serialize to file system in <var>file</var> the object <var>property</var> of type {@link org.openspcoop2.core.config.Property}
  4777.      *
  4778.      * @param file Xml file to serialize the object <var>property</var>
  4779.      * @param property Object to be serialized in xml file <var>fileName</var>
  4780.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4781.      */
  4782.     public void write(File file,Property property) throws SerializerException {
  4783.         this.objToXml(file, Property.class, property, false);
  4784.     }
  4785.     /**
  4786.      * Serialize to file system in <var>file</var> the object <var>property</var> of type {@link org.openspcoop2.core.config.Property}
  4787.      *
  4788.      * @param file Xml file to serialize the object <var>property</var>
  4789.      * @param property Object to be serialized in xml file <var>fileName</var>
  4790.      * @param prettyPrint if true output the XML with indenting
  4791.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4792.      */
  4793.     public void write(File file,Property property,boolean prettyPrint) throws SerializerException {
  4794.         this.objToXml(file, Property.class, property, prettyPrint);
  4795.     }
  4796.    
  4797.     /**
  4798.      * Serialize to output stream <var>out</var> the object <var>property</var> of type {@link org.openspcoop2.core.config.Property}
  4799.      *
  4800.      * @param out OutputStream to serialize the object <var>property</var>
  4801.      * @param property Object to be serialized in xml file <var>fileName</var>
  4802.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4803.      */
  4804.     public void write(OutputStream out,Property property) throws SerializerException {
  4805.         this.objToXml(out, Property.class, property, false);
  4806.     }
  4807.     /**
  4808.      * Serialize to output stream <var>out</var> the object <var>property</var> of type {@link org.openspcoop2.core.config.Property}
  4809.      *
  4810.      * @param out OutputStream to serialize the object <var>property</var>
  4811.      * @param property Object to be serialized in xml file <var>fileName</var>
  4812.      * @param prettyPrint if true output the XML with indenting
  4813.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4814.      */
  4815.     public void write(OutputStream out,Property property,boolean prettyPrint) throws SerializerException {
  4816.         this.objToXml(out, Property.class, property, prettyPrint);
  4817.     }
  4818.            
  4819.     /**
  4820.      * Serialize to byte array the object <var>property</var> of type {@link org.openspcoop2.core.config.Property}
  4821.      *
  4822.      * @param property Object to be serialized
  4823.      * @return Object to be serialized in byte array
  4824.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4825.      */
  4826.     public byte[] toByteArray(Property property) throws SerializerException {
  4827.         return this.objToXml(Property.class, property, false).toByteArray();
  4828.     }
  4829.     /**
  4830.      * Serialize to byte array the object <var>property</var> of type {@link org.openspcoop2.core.config.Property}
  4831.      *
  4832.      * @param property Object to be serialized
  4833.      * @param prettyPrint if true output the XML with indenting
  4834.      * @return Object to be serialized in byte array
  4835.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4836.      */
  4837.     public byte[] toByteArray(Property property,boolean prettyPrint) throws SerializerException {
  4838.         return this.objToXml(Property.class, property, prettyPrint).toByteArray();
  4839.     }
  4840.    
  4841.     /**
  4842.      * Serialize to String the object <var>property</var> of type {@link org.openspcoop2.core.config.Property}
  4843.      *
  4844.      * @param property Object to be serialized
  4845.      * @return Object to be serialized as String
  4846.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4847.      */
  4848.     public String toString(Property property) throws SerializerException {
  4849.         return this.objToXml(Property.class, property, false).toString();
  4850.     }
  4851.     /**
  4852.      * Serialize to String the object <var>property</var> of type {@link org.openspcoop2.core.config.Property}
  4853.      *
  4854.      * @param property Object to be serialized
  4855.      * @param prettyPrint if true output the XML with indenting
  4856.      * @return Object to be serialized as String
  4857.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4858.      */
  4859.     public String toString(Property property,boolean prettyPrint) throws SerializerException {
  4860.         return this.objToXml(Property.class, property, prettyPrint).toString();
  4861.     }
  4862.    
  4863.    
  4864.    
  4865.     /*
  4866.      =================================================================================
  4867.      Object: openspcoop-appender
  4868.      =================================================================================
  4869.     */
  4870.    
  4871.     /**
  4872.      * Serialize to file system in <var>fileName</var> the object <var>openspcoopAppender</var> of type {@link org.openspcoop2.core.config.OpenspcoopAppender}
  4873.      *
  4874.      * @param fileName Xml file to serialize the object <var>openspcoopAppender</var>
  4875.      * @param openspcoopAppender Object to be serialized in xml file <var>fileName</var>
  4876.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4877.      */
  4878.     public void write(String fileName,OpenspcoopAppender openspcoopAppender) throws SerializerException {
  4879.         this.objToXml(fileName, OpenspcoopAppender.class, openspcoopAppender, false);
  4880.     }
  4881.     /**
  4882.      * Serialize to file system in <var>fileName</var> the object <var>openspcoopAppender</var> of type {@link org.openspcoop2.core.config.OpenspcoopAppender}
  4883.      *
  4884.      * @param fileName Xml file to serialize the object <var>openspcoopAppender</var>
  4885.      * @param openspcoopAppender Object to be serialized in xml file <var>fileName</var>
  4886.      * @param prettyPrint if true output the XML with indenting
  4887.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4888.      */
  4889.     public void write(String fileName,OpenspcoopAppender openspcoopAppender,boolean prettyPrint) throws SerializerException {
  4890.         this.objToXml(fileName, OpenspcoopAppender.class, openspcoopAppender, prettyPrint);
  4891.     }
  4892.    
  4893.     /**
  4894.      * Serialize to file system in <var>file</var> the object <var>openspcoopAppender</var> of type {@link org.openspcoop2.core.config.OpenspcoopAppender}
  4895.      *
  4896.      * @param file Xml file to serialize the object <var>openspcoopAppender</var>
  4897.      * @param openspcoopAppender Object to be serialized in xml file <var>fileName</var>
  4898.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4899.      */
  4900.     public void write(File file,OpenspcoopAppender openspcoopAppender) throws SerializerException {
  4901.         this.objToXml(file, OpenspcoopAppender.class, openspcoopAppender, false);
  4902.     }
  4903.     /**
  4904.      * Serialize to file system in <var>file</var> the object <var>openspcoopAppender</var> of type {@link org.openspcoop2.core.config.OpenspcoopAppender}
  4905.      *
  4906.      * @param file Xml file to serialize the object <var>openspcoopAppender</var>
  4907.      * @param openspcoopAppender Object to be serialized in xml file <var>fileName</var>
  4908.      * @param prettyPrint if true output the XML with indenting
  4909.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4910.      */
  4911.     public void write(File file,OpenspcoopAppender openspcoopAppender,boolean prettyPrint) throws SerializerException {
  4912.         this.objToXml(file, OpenspcoopAppender.class, openspcoopAppender, prettyPrint);
  4913.     }
  4914.    
  4915.     /**
  4916.      * Serialize to output stream <var>out</var> the object <var>openspcoopAppender</var> of type {@link org.openspcoop2.core.config.OpenspcoopAppender}
  4917.      *
  4918.      * @param out OutputStream to serialize the object <var>openspcoopAppender</var>
  4919.      * @param openspcoopAppender Object to be serialized in xml file <var>fileName</var>
  4920.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4921.      */
  4922.     public void write(OutputStream out,OpenspcoopAppender openspcoopAppender) throws SerializerException {
  4923.         this.objToXml(out, OpenspcoopAppender.class, openspcoopAppender, false);
  4924.     }
  4925.     /**
  4926.      * Serialize to output stream <var>out</var> the object <var>openspcoopAppender</var> of type {@link org.openspcoop2.core.config.OpenspcoopAppender}
  4927.      *
  4928.      * @param out OutputStream to serialize the object <var>openspcoopAppender</var>
  4929.      * @param openspcoopAppender Object to be serialized in xml file <var>fileName</var>
  4930.      * @param prettyPrint if true output the XML with indenting
  4931.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4932.      */
  4933.     public void write(OutputStream out,OpenspcoopAppender openspcoopAppender,boolean prettyPrint) throws SerializerException {
  4934.         this.objToXml(out, OpenspcoopAppender.class, openspcoopAppender, prettyPrint);
  4935.     }
  4936.            
  4937.     /**
  4938.      * Serialize to byte array the object <var>openspcoopAppender</var> of type {@link org.openspcoop2.core.config.OpenspcoopAppender}
  4939.      *
  4940.      * @param openspcoopAppender Object to be serialized
  4941.      * @return Object to be serialized in byte array
  4942.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4943.      */
  4944.     public byte[] toByteArray(OpenspcoopAppender openspcoopAppender) throws SerializerException {
  4945.         return this.objToXml(OpenspcoopAppender.class, openspcoopAppender, false).toByteArray();
  4946.     }
  4947.     /**
  4948.      * Serialize to byte array the object <var>openspcoopAppender</var> of type {@link org.openspcoop2.core.config.OpenspcoopAppender}
  4949.      *
  4950.      * @param openspcoopAppender Object to be serialized
  4951.      * @param prettyPrint if true output the XML with indenting
  4952.      * @return Object to be serialized in byte array
  4953.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4954.      */
  4955.     public byte[] toByteArray(OpenspcoopAppender openspcoopAppender,boolean prettyPrint) throws SerializerException {
  4956.         return this.objToXml(OpenspcoopAppender.class, openspcoopAppender, prettyPrint).toByteArray();
  4957.     }
  4958.    
  4959.     /**
  4960.      * Serialize to String the object <var>openspcoopAppender</var> of type {@link org.openspcoop2.core.config.OpenspcoopAppender}
  4961.      *
  4962.      * @param openspcoopAppender Object to be serialized
  4963.      * @return Object to be serialized as String
  4964.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4965.      */
  4966.     public String toString(OpenspcoopAppender openspcoopAppender) throws SerializerException {
  4967.         return this.objToXml(OpenspcoopAppender.class, openspcoopAppender, false).toString();
  4968.     }
  4969.     /**
  4970.      * Serialize to String the object <var>openspcoopAppender</var> of type {@link org.openspcoop2.core.config.OpenspcoopAppender}
  4971.      *
  4972.      * @param openspcoopAppender Object to be serialized
  4973.      * @param prettyPrint if true output the XML with indenting
  4974.      * @return Object to be serialized as String
  4975.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4976.      */
  4977.     public String toString(OpenspcoopAppender openspcoopAppender,boolean prettyPrint) throws SerializerException {
  4978.         return this.objToXml(OpenspcoopAppender.class, openspcoopAppender, prettyPrint).toString();
  4979.     }
  4980.    
  4981.    
  4982.    
  4983.     /*
  4984.      =================================================================================
  4985.      Object: registro-plugin
  4986.      =================================================================================
  4987.     */
  4988.    
  4989.     /**
  4990.      * Serialize to file system in <var>fileName</var> the object <var>registroPlugin</var> of type {@link org.openspcoop2.core.config.RegistroPlugin}
  4991.      *
  4992.      * @param fileName Xml file to serialize the object <var>registroPlugin</var>
  4993.      * @param registroPlugin Object to be serialized in xml file <var>fileName</var>
  4994.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4995.      */
  4996.     public void write(String fileName,RegistroPlugin registroPlugin) throws SerializerException {
  4997.         this.objToXml(fileName, RegistroPlugin.class, registroPlugin, false);
  4998.     }
  4999.     /**
  5000.      * Serialize to file system in <var>fileName</var> the object <var>registroPlugin</var> of type {@link org.openspcoop2.core.config.RegistroPlugin}
  5001.      *
  5002.      * @param fileName Xml file to serialize the object <var>registroPlugin</var>
  5003.      * @param registroPlugin Object to be serialized in xml file <var>fileName</var>
  5004.      * @param prettyPrint if true output the XML with indenting
  5005.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5006.      */
  5007.     public void write(String fileName,RegistroPlugin registroPlugin,boolean prettyPrint) throws SerializerException {
  5008.         this.objToXml(fileName, RegistroPlugin.class, registroPlugin, prettyPrint);
  5009.     }
  5010.    
  5011.     /**
  5012.      * Serialize to file system in <var>file</var> the object <var>registroPlugin</var> of type {@link org.openspcoop2.core.config.RegistroPlugin}
  5013.      *
  5014.      * @param file Xml file to serialize the object <var>registroPlugin</var>
  5015.      * @param registroPlugin Object to be serialized in xml file <var>fileName</var>
  5016.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5017.      */
  5018.     public void write(File file,RegistroPlugin registroPlugin) throws SerializerException {
  5019.         this.objToXml(file, RegistroPlugin.class, registroPlugin, false);
  5020.     }
  5021.     /**
  5022.      * Serialize to file system in <var>file</var> the object <var>registroPlugin</var> of type {@link org.openspcoop2.core.config.RegistroPlugin}
  5023.      *
  5024.      * @param file Xml file to serialize the object <var>registroPlugin</var>
  5025.      * @param registroPlugin Object to be serialized in xml file <var>fileName</var>
  5026.      * @param prettyPrint if true output the XML with indenting
  5027.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5028.      */
  5029.     public void write(File file,RegistroPlugin registroPlugin,boolean prettyPrint) throws SerializerException {
  5030.         this.objToXml(file, RegistroPlugin.class, registroPlugin, prettyPrint);
  5031.     }
  5032.    
  5033.     /**
  5034.      * Serialize to output stream <var>out</var> the object <var>registroPlugin</var> of type {@link org.openspcoop2.core.config.RegistroPlugin}
  5035.      *
  5036.      * @param out OutputStream to serialize the object <var>registroPlugin</var>
  5037.      * @param registroPlugin Object to be serialized in xml file <var>fileName</var>
  5038.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5039.      */
  5040.     public void write(OutputStream out,RegistroPlugin registroPlugin) throws SerializerException {
  5041.         this.objToXml(out, RegistroPlugin.class, registroPlugin, false);
  5042.     }
  5043.     /**
  5044.      * Serialize to output stream <var>out</var> the object <var>registroPlugin</var> of type {@link org.openspcoop2.core.config.RegistroPlugin}
  5045.      *
  5046.      * @param out OutputStream to serialize the object <var>registroPlugin</var>
  5047.      * @param registroPlugin Object to be serialized in xml file <var>fileName</var>
  5048.      * @param prettyPrint if true output the XML with indenting
  5049.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5050.      */
  5051.     public void write(OutputStream out,RegistroPlugin registroPlugin,boolean prettyPrint) throws SerializerException {
  5052.         this.objToXml(out, RegistroPlugin.class, registroPlugin, prettyPrint);
  5053.     }
  5054.            
  5055.     /**
  5056.      * Serialize to byte array the object <var>registroPlugin</var> of type {@link org.openspcoop2.core.config.RegistroPlugin}
  5057.      *
  5058.      * @param registroPlugin Object to be serialized
  5059.      * @return Object to be serialized in byte array
  5060.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5061.      */
  5062.     public byte[] toByteArray(RegistroPlugin registroPlugin) throws SerializerException {
  5063.         return this.objToXml(RegistroPlugin.class, registroPlugin, false).toByteArray();
  5064.     }
  5065.     /**
  5066.      * Serialize to byte array the object <var>registroPlugin</var> of type {@link org.openspcoop2.core.config.RegistroPlugin}
  5067.      *
  5068.      * @param registroPlugin Object to be serialized
  5069.      * @param prettyPrint if true output the XML with indenting
  5070.      * @return Object to be serialized in byte array
  5071.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5072.      */
  5073.     public byte[] toByteArray(RegistroPlugin registroPlugin,boolean prettyPrint) throws SerializerException {
  5074.         return this.objToXml(RegistroPlugin.class, registroPlugin, prettyPrint).toByteArray();
  5075.     }
  5076.    
  5077.     /**
  5078.      * Serialize to String the object <var>registroPlugin</var> of type {@link org.openspcoop2.core.config.RegistroPlugin}
  5079.      *
  5080.      * @param registroPlugin Object to be serialized
  5081.      * @return Object to be serialized as String
  5082.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5083.      */
  5084.     public String toString(RegistroPlugin registroPlugin) throws SerializerException {
  5085.         return this.objToXml(RegistroPlugin.class, registroPlugin, false).toString();
  5086.     }
  5087.     /**
  5088.      * Serialize to String the object <var>registroPlugin</var> of type {@link org.openspcoop2.core.config.RegistroPlugin}
  5089.      *
  5090.      * @param registroPlugin Object to be serialized
  5091.      * @param prettyPrint if true output the XML with indenting
  5092.      * @return Object to be serialized as String
  5093.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5094.      */
  5095.     public String toString(RegistroPlugin registroPlugin,boolean prettyPrint) throws SerializerException {
  5096.         return this.objToXml(RegistroPlugin.class, registroPlugin, prettyPrint).toString();
  5097.     }
  5098.    
  5099.    
  5100.    
  5101.     /*
  5102.      =================================================================================
  5103.      Object: registro-plugins
  5104.      =================================================================================
  5105.     */
  5106.    
  5107.     /**
  5108.      * Serialize to file system in <var>fileName</var> the object <var>registroPlugins</var> of type {@link org.openspcoop2.core.config.RegistroPlugins}
  5109.      *
  5110.      * @param fileName Xml file to serialize the object <var>registroPlugins</var>
  5111.      * @param registroPlugins Object to be serialized in xml file <var>fileName</var>
  5112.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5113.      */
  5114.     public void write(String fileName,RegistroPlugins registroPlugins) throws SerializerException {
  5115.         this.objToXml(fileName, RegistroPlugins.class, registroPlugins, false);
  5116.     }
  5117.     /**
  5118.      * Serialize to file system in <var>fileName</var> the object <var>registroPlugins</var> of type {@link org.openspcoop2.core.config.RegistroPlugins}
  5119.      *
  5120.      * @param fileName Xml file to serialize the object <var>registroPlugins</var>
  5121.      * @param registroPlugins Object to be serialized in xml file <var>fileName</var>
  5122.      * @param prettyPrint if true output the XML with indenting
  5123.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5124.      */
  5125.     public void write(String fileName,RegistroPlugins registroPlugins,boolean prettyPrint) throws SerializerException {
  5126.         this.objToXml(fileName, RegistroPlugins.class, registroPlugins, prettyPrint);
  5127.     }
  5128.    
  5129.     /**
  5130.      * Serialize to file system in <var>file</var> the object <var>registroPlugins</var> of type {@link org.openspcoop2.core.config.RegistroPlugins}
  5131.      *
  5132.      * @param file Xml file to serialize the object <var>registroPlugins</var>
  5133.      * @param registroPlugins Object to be serialized in xml file <var>fileName</var>
  5134.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5135.      */
  5136.     public void write(File file,RegistroPlugins registroPlugins) throws SerializerException {
  5137.         this.objToXml(file, RegistroPlugins.class, registroPlugins, false);
  5138.     }
  5139.     /**
  5140.      * Serialize to file system in <var>file</var> the object <var>registroPlugins</var> of type {@link org.openspcoop2.core.config.RegistroPlugins}
  5141.      *
  5142.      * @param file Xml file to serialize the object <var>registroPlugins</var>
  5143.      * @param registroPlugins Object to be serialized in xml file <var>fileName</var>
  5144.      * @param prettyPrint if true output the XML with indenting
  5145.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5146.      */
  5147.     public void write(File file,RegistroPlugins registroPlugins,boolean prettyPrint) throws SerializerException {
  5148.         this.objToXml(file, RegistroPlugins.class, registroPlugins, prettyPrint);
  5149.     }
  5150.    
  5151.     /**
  5152.      * Serialize to output stream <var>out</var> the object <var>registroPlugins</var> of type {@link org.openspcoop2.core.config.RegistroPlugins}
  5153.      *
  5154.      * @param out OutputStream to serialize the object <var>registroPlugins</var>
  5155.      * @param registroPlugins Object to be serialized in xml file <var>fileName</var>
  5156.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5157.      */
  5158.     public void write(OutputStream out,RegistroPlugins registroPlugins) throws SerializerException {
  5159.         this.objToXml(out, RegistroPlugins.class, registroPlugins, false);
  5160.     }
  5161.     /**
  5162.      * Serialize to output stream <var>out</var> the object <var>registroPlugins</var> of type {@link org.openspcoop2.core.config.RegistroPlugins}
  5163.      *
  5164.      * @param out OutputStream to serialize the object <var>registroPlugins</var>
  5165.      * @param registroPlugins Object to be serialized in xml file <var>fileName</var>
  5166.      * @param prettyPrint if true output the XML with indenting
  5167.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5168.      */
  5169.     public void write(OutputStream out,RegistroPlugins registroPlugins,boolean prettyPrint) throws SerializerException {
  5170.         this.objToXml(out, RegistroPlugins.class, registroPlugins, prettyPrint);
  5171.     }
  5172.            
  5173.     /**
  5174.      * Serialize to byte array the object <var>registroPlugins</var> of type {@link org.openspcoop2.core.config.RegistroPlugins}
  5175.      *
  5176.      * @param registroPlugins Object to be serialized
  5177.      * @return Object to be serialized in byte array
  5178.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5179.      */
  5180.     public byte[] toByteArray(RegistroPlugins registroPlugins) throws SerializerException {
  5181.         return this.objToXml(RegistroPlugins.class, registroPlugins, false).toByteArray();
  5182.     }
  5183.     /**
  5184.      * Serialize to byte array the object <var>registroPlugins</var> of type {@link org.openspcoop2.core.config.RegistroPlugins}
  5185.      *
  5186.      * @param registroPlugins Object to be serialized
  5187.      * @param prettyPrint if true output the XML with indenting
  5188.      * @return Object to be serialized in byte array
  5189.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5190.      */
  5191.     public byte[] toByteArray(RegistroPlugins registroPlugins,boolean prettyPrint) throws SerializerException {
  5192.         return this.objToXml(RegistroPlugins.class, registroPlugins, prettyPrint).toByteArray();
  5193.     }
  5194.    
  5195.     /**
  5196.      * Serialize to String the object <var>registroPlugins</var> of type {@link org.openspcoop2.core.config.RegistroPlugins}
  5197.      *
  5198.      * @param registroPlugins Object to be serialized
  5199.      * @return Object to be serialized as String
  5200.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5201.      */
  5202.     public String toString(RegistroPlugins registroPlugins) throws SerializerException {
  5203.         return this.objToXml(RegistroPlugins.class, registroPlugins, false).toString();
  5204.     }
  5205.     /**
  5206.      * Serialize to String the object <var>registroPlugins</var> of type {@link org.openspcoop2.core.config.RegistroPlugins}
  5207.      *
  5208.      * @param registroPlugins Object to be serialized
  5209.      * @param prettyPrint if true output the XML with indenting
  5210.      * @return Object to be serialized as String
  5211.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5212.      */
  5213.     public String toString(RegistroPlugins registroPlugins,boolean prettyPrint) throws SerializerException {
  5214.         return this.objToXml(RegistroPlugins.class, registroPlugins, prettyPrint).toString();
  5215.     }
  5216.    
  5217.    
  5218.    
  5219.     /*
  5220.      =================================================================================
  5221.      Object: porta-delegata-autorizzazione-servizi-applicativi
  5222.      =================================================================================
  5223.     */
  5224.    
  5225.     /**
  5226.      * Serialize to file system in <var>fileName</var> the object <var>portaDelegataAutorizzazioneServiziApplicativi</var> of type {@link org.openspcoop2.core.config.PortaDelegataAutorizzazioneServiziApplicativi}
  5227.      *
  5228.      * @param fileName Xml file to serialize the object <var>portaDelegataAutorizzazioneServiziApplicativi</var>
  5229.      * @param portaDelegataAutorizzazioneServiziApplicativi Object to be serialized in xml file <var>fileName</var>
  5230.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5231.      */
  5232.     public void write(String fileName,PortaDelegataAutorizzazioneServiziApplicativi portaDelegataAutorizzazioneServiziApplicativi) throws SerializerException {
  5233.         this.objToXml(fileName, PortaDelegataAutorizzazioneServiziApplicativi.class, portaDelegataAutorizzazioneServiziApplicativi, false);
  5234.     }
  5235.     /**
  5236.      * Serialize to file system in <var>fileName</var> the object <var>portaDelegataAutorizzazioneServiziApplicativi</var> of type {@link org.openspcoop2.core.config.PortaDelegataAutorizzazioneServiziApplicativi}
  5237.      *
  5238.      * @param fileName Xml file to serialize the object <var>portaDelegataAutorizzazioneServiziApplicativi</var>
  5239.      * @param portaDelegataAutorizzazioneServiziApplicativi Object to be serialized in xml file <var>fileName</var>
  5240.      * @param prettyPrint if true output the XML with indenting
  5241.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5242.      */
  5243.     public void write(String fileName,PortaDelegataAutorizzazioneServiziApplicativi portaDelegataAutorizzazioneServiziApplicativi,boolean prettyPrint) throws SerializerException {
  5244.         this.objToXml(fileName, PortaDelegataAutorizzazioneServiziApplicativi.class, portaDelegataAutorizzazioneServiziApplicativi, prettyPrint);
  5245.     }
  5246.    
  5247.     /**
  5248.      * Serialize to file system in <var>file</var> the object <var>portaDelegataAutorizzazioneServiziApplicativi</var> of type {@link org.openspcoop2.core.config.PortaDelegataAutorizzazioneServiziApplicativi}
  5249.      *
  5250.      * @param file Xml file to serialize the object <var>portaDelegataAutorizzazioneServiziApplicativi</var>
  5251.      * @param portaDelegataAutorizzazioneServiziApplicativi Object to be serialized in xml file <var>fileName</var>
  5252.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5253.      */
  5254.     public void write(File file,PortaDelegataAutorizzazioneServiziApplicativi portaDelegataAutorizzazioneServiziApplicativi) throws SerializerException {
  5255.         this.objToXml(file, PortaDelegataAutorizzazioneServiziApplicativi.class, portaDelegataAutorizzazioneServiziApplicativi, false);
  5256.     }
  5257.     /**
  5258.      * Serialize to file system in <var>file</var> the object <var>portaDelegataAutorizzazioneServiziApplicativi</var> of type {@link org.openspcoop2.core.config.PortaDelegataAutorizzazioneServiziApplicativi}
  5259.      *
  5260.      * @param file Xml file to serialize the object <var>portaDelegataAutorizzazioneServiziApplicativi</var>
  5261.      * @param portaDelegataAutorizzazioneServiziApplicativi Object to be serialized in xml file <var>fileName</var>
  5262.      * @param prettyPrint if true output the XML with indenting
  5263.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5264.      */
  5265.     public void write(File file,PortaDelegataAutorizzazioneServiziApplicativi portaDelegataAutorizzazioneServiziApplicativi,boolean prettyPrint) throws SerializerException {
  5266.         this.objToXml(file, PortaDelegataAutorizzazioneServiziApplicativi.class, portaDelegataAutorizzazioneServiziApplicativi, prettyPrint);
  5267.     }
  5268.    
  5269.     /**
  5270.      * Serialize to output stream <var>out</var> the object <var>portaDelegataAutorizzazioneServiziApplicativi</var> of type {@link org.openspcoop2.core.config.PortaDelegataAutorizzazioneServiziApplicativi}
  5271.      *
  5272.      * @param out OutputStream to serialize the object <var>portaDelegataAutorizzazioneServiziApplicativi</var>
  5273.      * @param portaDelegataAutorizzazioneServiziApplicativi Object to be serialized in xml file <var>fileName</var>
  5274.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5275.      */
  5276.     public void write(OutputStream out,PortaDelegataAutorizzazioneServiziApplicativi portaDelegataAutorizzazioneServiziApplicativi) throws SerializerException {
  5277.         this.objToXml(out, PortaDelegataAutorizzazioneServiziApplicativi.class, portaDelegataAutorizzazioneServiziApplicativi, false);
  5278.     }
  5279.     /**
  5280.      * Serialize to output stream <var>out</var> the object <var>portaDelegataAutorizzazioneServiziApplicativi</var> of type {@link org.openspcoop2.core.config.PortaDelegataAutorizzazioneServiziApplicativi}
  5281.      *
  5282.      * @param out OutputStream to serialize the object <var>portaDelegataAutorizzazioneServiziApplicativi</var>
  5283.      * @param portaDelegataAutorizzazioneServiziApplicativi Object to be serialized in xml file <var>fileName</var>
  5284.      * @param prettyPrint if true output the XML with indenting
  5285.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5286.      */
  5287.     public void write(OutputStream out,PortaDelegataAutorizzazioneServiziApplicativi portaDelegataAutorizzazioneServiziApplicativi,boolean prettyPrint) throws SerializerException {
  5288.         this.objToXml(out, PortaDelegataAutorizzazioneServiziApplicativi.class, portaDelegataAutorizzazioneServiziApplicativi, prettyPrint);
  5289.     }
  5290.            
  5291.     /**
  5292.      * Serialize to byte array the object <var>portaDelegataAutorizzazioneServiziApplicativi</var> of type {@link org.openspcoop2.core.config.PortaDelegataAutorizzazioneServiziApplicativi}
  5293.      *
  5294.      * @param portaDelegataAutorizzazioneServiziApplicativi Object to be serialized
  5295.      * @return Object to be serialized in byte array
  5296.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5297.      */
  5298.     public byte[] toByteArray(PortaDelegataAutorizzazioneServiziApplicativi portaDelegataAutorizzazioneServiziApplicativi) throws SerializerException {
  5299.         return this.objToXml(PortaDelegataAutorizzazioneServiziApplicativi.class, portaDelegataAutorizzazioneServiziApplicativi, false).toByteArray();
  5300.     }
  5301.     /**
  5302.      * Serialize to byte array the object <var>portaDelegataAutorizzazioneServiziApplicativi</var> of type {@link org.openspcoop2.core.config.PortaDelegataAutorizzazioneServiziApplicativi}
  5303.      *
  5304.      * @param portaDelegataAutorizzazioneServiziApplicativi Object to be serialized
  5305.      * @param prettyPrint if true output the XML with indenting
  5306.      * @return Object to be serialized in byte array
  5307.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5308.      */
  5309.     public byte[] toByteArray(PortaDelegataAutorizzazioneServiziApplicativi portaDelegataAutorizzazioneServiziApplicativi,boolean prettyPrint) throws SerializerException {
  5310.         return this.objToXml(PortaDelegataAutorizzazioneServiziApplicativi.class, portaDelegataAutorizzazioneServiziApplicativi, prettyPrint).toByteArray();
  5311.     }
  5312.    
  5313.     /**
  5314.      * Serialize to String the object <var>portaDelegataAutorizzazioneServiziApplicativi</var> of type {@link org.openspcoop2.core.config.PortaDelegataAutorizzazioneServiziApplicativi}
  5315.      *
  5316.      * @param portaDelegataAutorizzazioneServiziApplicativi Object to be serialized
  5317.      * @return Object to be serialized as String
  5318.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5319.      */
  5320.     public String toString(PortaDelegataAutorizzazioneServiziApplicativi portaDelegataAutorizzazioneServiziApplicativi) throws SerializerException {
  5321.         return this.objToXml(PortaDelegataAutorizzazioneServiziApplicativi.class, portaDelegataAutorizzazioneServiziApplicativi, false).toString();
  5322.     }
  5323.     /**
  5324.      * Serialize to String the object <var>portaDelegataAutorizzazioneServiziApplicativi</var> of type {@link org.openspcoop2.core.config.PortaDelegataAutorizzazioneServiziApplicativi}
  5325.      *
  5326.      * @param portaDelegataAutorizzazioneServiziApplicativi Object to be serialized
  5327.      * @param prettyPrint if true output the XML with indenting
  5328.      * @return Object to be serialized as String
  5329.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5330.      */
  5331.     public String toString(PortaDelegataAutorizzazioneServiziApplicativi portaDelegataAutorizzazioneServiziApplicativi,boolean prettyPrint) throws SerializerException {
  5332.         return this.objToXml(PortaDelegataAutorizzazioneServiziApplicativi.class, portaDelegataAutorizzazioneServiziApplicativi, prettyPrint).toString();
  5333.     }
  5334.    
  5335.    
  5336.    
  5337.     /*
  5338.      =================================================================================
  5339.      Object: porta-delegata-autorizzazione-token
  5340.      =================================================================================
  5341.     */
  5342.    
  5343.     /**
  5344.      * Serialize to file system in <var>fileName</var> the object <var>portaDelegataAutorizzazioneToken</var> of type {@link org.openspcoop2.core.config.PortaDelegataAutorizzazioneToken}
  5345.      *
  5346.      * @param fileName Xml file to serialize the object <var>portaDelegataAutorizzazioneToken</var>
  5347.      * @param portaDelegataAutorizzazioneToken Object to be serialized in xml file <var>fileName</var>
  5348.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5349.      */
  5350.     public void write(String fileName,PortaDelegataAutorizzazioneToken portaDelegataAutorizzazioneToken) throws SerializerException {
  5351.         this.objToXml(fileName, PortaDelegataAutorizzazioneToken.class, portaDelegataAutorizzazioneToken, false);
  5352.     }
  5353.     /**
  5354.      * Serialize to file system in <var>fileName</var> the object <var>portaDelegataAutorizzazioneToken</var> of type {@link org.openspcoop2.core.config.PortaDelegataAutorizzazioneToken}
  5355.      *
  5356.      * @param fileName Xml file to serialize the object <var>portaDelegataAutorizzazioneToken</var>
  5357.      * @param portaDelegataAutorizzazioneToken Object to be serialized in xml file <var>fileName</var>
  5358.      * @param prettyPrint if true output the XML with indenting
  5359.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5360.      */
  5361.     public void write(String fileName,PortaDelegataAutorizzazioneToken portaDelegataAutorizzazioneToken,boolean prettyPrint) throws SerializerException {
  5362.         this.objToXml(fileName, PortaDelegataAutorizzazioneToken.class, portaDelegataAutorizzazioneToken, prettyPrint);
  5363.     }
  5364.    
  5365.     /**
  5366.      * Serialize to file system in <var>file</var> the object <var>portaDelegataAutorizzazioneToken</var> of type {@link org.openspcoop2.core.config.PortaDelegataAutorizzazioneToken}
  5367.      *
  5368.      * @param file Xml file to serialize the object <var>portaDelegataAutorizzazioneToken</var>
  5369.      * @param portaDelegataAutorizzazioneToken Object to be serialized in xml file <var>fileName</var>
  5370.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5371.      */
  5372.     public void write(File file,PortaDelegataAutorizzazioneToken portaDelegataAutorizzazioneToken) throws SerializerException {
  5373.         this.objToXml(file, PortaDelegataAutorizzazioneToken.class, portaDelegataAutorizzazioneToken, false);
  5374.     }
  5375.     /**
  5376.      * Serialize to file system in <var>file</var> the object <var>portaDelegataAutorizzazioneToken</var> of type {@link org.openspcoop2.core.config.PortaDelegataAutorizzazioneToken}
  5377.      *
  5378.      * @param file Xml file to serialize the object <var>portaDelegataAutorizzazioneToken</var>
  5379.      * @param portaDelegataAutorizzazioneToken Object to be serialized in xml file <var>fileName</var>
  5380.      * @param prettyPrint if true output the XML with indenting
  5381.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5382.      */
  5383.     public void write(File file,PortaDelegataAutorizzazioneToken portaDelegataAutorizzazioneToken,boolean prettyPrint) throws SerializerException {
  5384.         this.objToXml(file, PortaDelegataAutorizzazioneToken.class, portaDelegataAutorizzazioneToken, prettyPrint);
  5385.     }
  5386.    
  5387.     /**
  5388.      * Serialize to output stream <var>out</var> the object <var>portaDelegataAutorizzazioneToken</var> of type {@link org.openspcoop2.core.config.PortaDelegataAutorizzazioneToken}
  5389.      *
  5390.      * @param out OutputStream to serialize the object <var>portaDelegataAutorizzazioneToken</var>
  5391.      * @param portaDelegataAutorizzazioneToken Object to be serialized in xml file <var>fileName</var>
  5392.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5393.      */
  5394.     public void write(OutputStream out,PortaDelegataAutorizzazioneToken portaDelegataAutorizzazioneToken) throws SerializerException {
  5395.         this.objToXml(out, PortaDelegataAutorizzazioneToken.class, portaDelegataAutorizzazioneToken, false);
  5396.     }
  5397.     /**
  5398.      * Serialize to output stream <var>out</var> the object <var>portaDelegataAutorizzazioneToken</var> of type {@link org.openspcoop2.core.config.PortaDelegataAutorizzazioneToken}
  5399.      *
  5400.      * @param out OutputStream to serialize the object <var>portaDelegataAutorizzazioneToken</var>
  5401.      * @param portaDelegataAutorizzazioneToken Object to be serialized in xml file <var>fileName</var>
  5402.      * @param prettyPrint if true output the XML with indenting
  5403.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5404.      */
  5405.     public void write(OutputStream out,PortaDelegataAutorizzazioneToken portaDelegataAutorizzazioneToken,boolean prettyPrint) throws SerializerException {
  5406.         this.objToXml(out, PortaDelegataAutorizzazioneToken.class, portaDelegataAutorizzazioneToken, prettyPrint);
  5407.     }
  5408.            
  5409.     /**
  5410.      * Serialize to byte array the object <var>portaDelegataAutorizzazioneToken</var> of type {@link org.openspcoop2.core.config.PortaDelegataAutorizzazioneToken}
  5411.      *
  5412.      * @param portaDelegataAutorizzazioneToken Object to be serialized
  5413.      * @return Object to be serialized in byte array
  5414.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5415.      */
  5416.     public byte[] toByteArray(PortaDelegataAutorizzazioneToken portaDelegataAutorizzazioneToken) throws SerializerException {
  5417.         return this.objToXml(PortaDelegataAutorizzazioneToken.class, portaDelegataAutorizzazioneToken, false).toByteArray();
  5418.     }
  5419.     /**
  5420.      * Serialize to byte array the object <var>portaDelegataAutorizzazioneToken</var> of type {@link org.openspcoop2.core.config.PortaDelegataAutorizzazioneToken}
  5421.      *
  5422.      * @param portaDelegataAutorizzazioneToken Object to be serialized
  5423.      * @param prettyPrint if true output the XML with indenting
  5424.      * @return Object to be serialized in byte array
  5425.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5426.      */
  5427.     public byte[] toByteArray(PortaDelegataAutorizzazioneToken portaDelegataAutorizzazioneToken,boolean prettyPrint) throws SerializerException {
  5428.         return this.objToXml(PortaDelegataAutorizzazioneToken.class, portaDelegataAutorizzazioneToken, prettyPrint).toByteArray();
  5429.     }
  5430.    
  5431.     /**
  5432.      * Serialize to String the object <var>portaDelegataAutorizzazioneToken</var> of type {@link org.openspcoop2.core.config.PortaDelegataAutorizzazioneToken}
  5433.      *
  5434.      * @param portaDelegataAutorizzazioneToken Object to be serialized
  5435.      * @return Object to be serialized as String
  5436.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5437.      */
  5438.     public String toString(PortaDelegataAutorizzazioneToken portaDelegataAutorizzazioneToken) throws SerializerException {
  5439.         return this.objToXml(PortaDelegataAutorizzazioneToken.class, portaDelegataAutorizzazioneToken, false).toString();
  5440.     }
  5441.     /**
  5442.      * Serialize to String the object <var>portaDelegataAutorizzazioneToken</var> of type {@link org.openspcoop2.core.config.PortaDelegataAutorizzazioneToken}
  5443.      *
  5444.      * @param portaDelegataAutorizzazioneToken Object to be serialized
  5445.      * @param prettyPrint if true output the XML with indenting
  5446.      * @return Object to be serialized as String
  5447.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5448.      */
  5449.     public String toString(PortaDelegataAutorizzazioneToken portaDelegataAutorizzazioneToken,boolean prettyPrint) throws SerializerException {
  5450.         return this.objToXml(PortaDelegataAutorizzazioneToken.class, portaDelegataAutorizzazioneToken, prettyPrint).toString();
  5451.     }
  5452.    
  5453.    
  5454.    
  5455.     /*
  5456.      =================================================================================
  5457.      Object: configurazione-url-invocazione-regola
  5458.      =================================================================================
  5459.     */
  5460.    
  5461.     /**
  5462.      * Serialize to file system in <var>fileName</var> the object <var>configurazioneUrlInvocazioneRegola</var> of type {@link org.openspcoop2.core.config.ConfigurazioneUrlInvocazioneRegola}
  5463.      *
  5464.      * @param fileName Xml file to serialize the object <var>configurazioneUrlInvocazioneRegola</var>
  5465.      * @param configurazioneUrlInvocazioneRegola Object to be serialized in xml file <var>fileName</var>
  5466.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5467.      */
  5468.     public void write(String fileName,ConfigurazioneUrlInvocazioneRegola configurazioneUrlInvocazioneRegola) throws SerializerException {
  5469.         this.objToXml(fileName, ConfigurazioneUrlInvocazioneRegola.class, configurazioneUrlInvocazioneRegola, false);
  5470.     }
  5471.     /**
  5472.      * Serialize to file system in <var>fileName</var> the object <var>configurazioneUrlInvocazioneRegola</var> of type {@link org.openspcoop2.core.config.ConfigurazioneUrlInvocazioneRegola}
  5473.      *
  5474.      * @param fileName Xml file to serialize the object <var>configurazioneUrlInvocazioneRegola</var>
  5475.      * @param configurazioneUrlInvocazioneRegola Object to be serialized in xml file <var>fileName</var>
  5476.      * @param prettyPrint if true output the XML with indenting
  5477.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5478.      */
  5479.     public void write(String fileName,ConfigurazioneUrlInvocazioneRegola configurazioneUrlInvocazioneRegola,boolean prettyPrint) throws SerializerException {
  5480.         this.objToXml(fileName, ConfigurazioneUrlInvocazioneRegola.class, configurazioneUrlInvocazioneRegola, prettyPrint);
  5481.     }
  5482.    
  5483.     /**
  5484.      * Serialize to file system in <var>file</var> the object <var>configurazioneUrlInvocazioneRegola</var> of type {@link org.openspcoop2.core.config.ConfigurazioneUrlInvocazioneRegola}
  5485.      *
  5486.      * @param file Xml file to serialize the object <var>configurazioneUrlInvocazioneRegola</var>
  5487.      * @param configurazioneUrlInvocazioneRegola Object to be serialized in xml file <var>fileName</var>
  5488.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5489.      */
  5490.     public void write(File file,ConfigurazioneUrlInvocazioneRegola configurazioneUrlInvocazioneRegola) throws SerializerException {
  5491.         this.objToXml(file, ConfigurazioneUrlInvocazioneRegola.class, configurazioneUrlInvocazioneRegola, false);
  5492.     }
  5493.     /**
  5494.      * Serialize to file system in <var>file</var> the object <var>configurazioneUrlInvocazioneRegola</var> of type {@link org.openspcoop2.core.config.ConfigurazioneUrlInvocazioneRegola}
  5495.      *
  5496.      * @param file Xml file to serialize the object <var>configurazioneUrlInvocazioneRegola</var>
  5497.      * @param configurazioneUrlInvocazioneRegola Object to be serialized in xml file <var>fileName</var>
  5498.      * @param prettyPrint if true output the XML with indenting
  5499.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5500.      */
  5501.     public void write(File file,ConfigurazioneUrlInvocazioneRegola configurazioneUrlInvocazioneRegola,boolean prettyPrint) throws SerializerException {
  5502.         this.objToXml(file, ConfigurazioneUrlInvocazioneRegola.class, configurazioneUrlInvocazioneRegola, prettyPrint);
  5503.     }
  5504.    
  5505.     /**
  5506.      * Serialize to output stream <var>out</var> the object <var>configurazioneUrlInvocazioneRegola</var> of type {@link org.openspcoop2.core.config.ConfigurazioneUrlInvocazioneRegola}
  5507.      *
  5508.      * @param out OutputStream to serialize the object <var>configurazioneUrlInvocazioneRegola</var>
  5509.      * @param configurazioneUrlInvocazioneRegola Object to be serialized in xml file <var>fileName</var>
  5510.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5511.      */
  5512.     public void write(OutputStream out,ConfigurazioneUrlInvocazioneRegola configurazioneUrlInvocazioneRegola) throws SerializerException {
  5513.         this.objToXml(out, ConfigurazioneUrlInvocazioneRegola.class, configurazioneUrlInvocazioneRegola, false);
  5514.     }
  5515.     /**
  5516.      * Serialize to output stream <var>out</var> the object <var>configurazioneUrlInvocazioneRegola</var> of type {@link org.openspcoop2.core.config.ConfigurazioneUrlInvocazioneRegola}
  5517.      *
  5518.      * @param out OutputStream to serialize the object <var>configurazioneUrlInvocazioneRegola</var>
  5519.      * @param configurazioneUrlInvocazioneRegola Object to be serialized in xml file <var>fileName</var>
  5520.      * @param prettyPrint if true output the XML with indenting
  5521.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5522.      */
  5523.     public void write(OutputStream out,ConfigurazioneUrlInvocazioneRegola configurazioneUrlInvocazioneRegola,boolean prettyPrint) throws SerializerException {
  5524.         this.objToXml(out, ConfigurazioneUrlInvocazioneRegola.class, configurazioneUrlInvocazioneRegola, prettyPrint);
  5525.     }
  5526.            
  5527.     /**
  5528.      * Serialize to byte array the object <var>configurazioneUrlInvocazioneRegola</var> of type {@link org.openspcoop2.core.config.ConfigurazioneUrlInvocazioneRegola}
  5529.      *
  5530.      * @param configurazioneUrlInvocazioneRegola Object to be serialized
  5531.      * @return Object to be serialized in byte array
  5532.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5533.      */
  5534.     public byte[] toByteArray(ConfigurazioneUrlInvocazioneRegola configurazioneUrlInvocazioneRegola) throws SerializerException {
  5535.         return this.objToXml(ConfigurazioneUrlInvocazioneRegola.class, configurazioneUrlInvocazioneRegola, false).toByteArray();
  5536.     }
  5537.     /**
  5538.      * Serialize to byte array the object <var>configurazioneUrlInvocazioneRegola</var> of type {@link org.openspcoop2.core.config.ConfigurazioneUrlInvocazioneRegola}
  5539.      *
  5540.      * @param configurazioneUrlInvocazioneRegola Object to be serialized
  5541.      * @param prettyPrint if true output the XML with indenting
  5542.      * @return Object to be serialized in byte array
  5543.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5544.      */
  5545.     public byte[] toByteArray(ConfigurazioneUrlInvocazioneRegola configurazioneUrlInvocazioneRegola,boolean prettyPrint) throws SerializerException {
  5546.         return this.objToXml(ConfigurazioneUrlInvocazioneRegola.class, configurazioneUrlInvocazioneRegola, prettyPrint).toByteArray();
  5547.     }
  5548.    
  5549.     /**
  5550.      * Serialize to String the object <var>configurazioneUrlInvocazioneRegola</var> of type {@link org.openspcoop2.core.config.ConfigurazioneUrlInvocazioneRegola}
  5551.      *
  5552.      * @param configurazioneUrlInvocazioneRegola Object to be serialized
  5553.      * @return Object to be serialized as String
  5554.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5555.      */
  5556.     public String toString(ConfigurazioneUrlInvocazioneRegola configurazioneUrlInvocazioneRegola) throws SerializerException {
  5557.         return this.objToXml(ConfigurazioneUrlInvocazioneRegola.class, configurazioneUrlInvocazioneRegola, false).toString();
  5558.     }
  5559.     /**
  5560.      * Serialize to String the object <var>configurazioneUrlInvocazioneRegola</var> of type {@link org.openspcoop2.core.config.ConfigurazioneUrlInvocazioneRegola}
  5561.      *
  5562.      * @param configurazioneUrlInvocazioneRegola Object to be serialized
  5563.      * @param prettyPrint if true output the XML with indenting
  5564.      * @return Object to be serialized as String
  5565.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5566.      */
  5567.     public String toString(ConfigurazioneUrlInvocazioneRegola configurazioneUrlInvocazioneRegola,boolean prettyPrint) throws SerializerException {
  5568.         return this.objToXml(ConfigurazioneUrlInvocazioneRegola.class, configurazioneUrlInvocazioneRegola, prettyPrint).toString();
  5569.     }
  5570.    
  5571.    
  5572.    
  5573.     /*
  5574.      =================================================================================
  5575.      Object: id-porta-applicativa
  5576.      =================================================================================
  5577.     */
  5578.    
  5579.     /**
  5580.      * Serialize to file system in <var>fileName</var> the object <var>idPortaApplicativa</var> of type {@link org.openspcoop2.core.config.IdPortaApplicativa}
  5581.      *
  5582.      * @param fileName Xml file to serialize the object <var>idPortaApplicativa</var>
  5583.      * @param idPortaApplicativa Object to be serialized in xml file <var>fileName</var>
  5584.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5585.      */
  5586.     public void write(String fileName,IdPortaApplicativa idPortaApplicativa) throws SerializerException {
  5587.         this.objToXml(fileName, IdPortaApplicativa.class, idPortaApplicativa, false);
  5588.     }
  5589.     /**
  5590.      * Serialize to file system in <var>fileName</var> the object <var>idPortaApplicativa</var> of type {@link org.openspcoop2.core.config.IdPortaApplicativa}
  5591.      *
  5592.      * @param fileName Xml file to serialize the object <var>idPortaApplicativa</var>
  5593.      * @param idPortaApplicativa Object to be serialized in xml file <var>fileName</var>
  5594.      * @param prettyPrint if true output the XML with indenting
  5595.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5596.      */
  5597.     public void write(String fileName,IdPortaApplicativa idPortaApplicativa,boolean prettyPrint) throws SerializerException {
  5598.         this.objToXml(fileName, IdPortaApplicativa.class, idPortaApplicativa, prettyPrint);
  5599.     }
  5600.    
  5601.     /**
  5602.      * Serialize to file system in <var>file</var> the object <var>idPortaApplicativa</var> of type {@link org.openspcoop2.core.config.IdPortaApplicativa}
  5603.      *
  5604.      * @param file Xml file to serialize the object <var>idPortaApplicativa</var>
  5605.      * @param idPortaApplicativa Object to be serialized in xml file <var>fileName</var>
  5606.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5607.      */
  5608.     public void write(File file,IdPortaApplicativa idPortaApplicativa) throws SerializerException {
  5609.         this.objToXml(file, IdPortaApplicativa.class, idPortaApplicativa, false);
  5610.     }
  5611.     /**
  5612.      * Serialize to file system in <var>file</var> the object <var>idPortaApplicativa</var> of type {@link org.openspcoop2.core.config.IdPortaApplicativa}
  5613.      *
  5614.      * @param file Xml file to serialize the object <var>idPortaApplicativa</var>
  5615.      * @param idPortaApplicativa Object to be serialized in xml file <var>fileName</var>
  5616.      * @param prettyPrint if true output the XML with indenting
  5617.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5618.      */
  5619.     public void write(File file,IdPortaApplicativa idPortaApplicativa,boolean prettyPrint) throws SerializerException {
  5620.         this.objToXml(file, IdPortaApplicativa.class, idPortaApplicativa, prettyPrint);
  5621.     }
  5622.    
  5623.     /**
  5624.      * Serialize to output stream <var>out</var> the object <var>idPortaApplicativa</var> of type {@link org.openspcoop2.core.config.IdPortaApplicativa}
  5625.      *
  5626.      * @param out OutputStream to serialize the object <var>idPortaApplicativa</var>
  5627.      * @param idPortaApplicativa Object to be serialized in xml file <var>fileName</var>
  5628.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5629.      */
  5630.     public void write(OutputStream out,IdPortaApplicativa idPortaApplicativa) throws SerializerException {
  5631.         this.objToXml(out, IdPortaApplicativa.class, idPortaApplicativa, false);
  5632.     }
  5633.     /**
  5634.      * Serialize to output stream <var>out</var> the object <var>idPortaApplicativa</var> of type {@link org.openspcoop2.core.config.IdPortaApplicativa}
  5635.      *
  5636.      * @param out OutputStream to serialize the object <var>idPortaApplicativa</var>
  5637.      * @param idPortaApplicativa Object to be serialized in xml file <var>fileName</var>
  5638.      * @param prettyPrint if true output the XML with indenting
  5639.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5640.      */
  5641.     public void write(OutputStream out,IdPortaApplicativa idPortaApplicativa,boolean prettyPrint) throws SerializerException {
  5642.         this.objToXml(out, IdPortaApplicativa.class, idPortaApplicativa, prettyPrint);
  5643.     }
  5644.            
  5645.     /**
  5646.      * Serialize to byte array the object <var>idPortaApplicativa</var> of type {@link org.openspcoop2.core.config.IdPortaApplicativa}
  5647.      *
  5648.      * @param idPortaApplicativa Object to be serialized
  5649.      * @return Object to be serialized in byte array
  5650.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5651.      */
  5652.     public byte[] toByteArray(IdPortaApplicativa idPortaApplicativa) throws SerializerException {
  5653.         return this.objToXml(IdPortaApplicativa.class, idPortaApplicativa, false).toByteArray();
  5654.     }
  5655.     /**
  5656.      * Serialize to byte array the object <var>idPortaApplicativa</var> of type {@link org.openspcoop2.core.config.IdPortaApplicativa}
  5657.      *
  5658.      * @param idPortaApplicativa Object to be serialized
  5659.      * @param prettyPrint if true output the XML with indenting
  5660.      * @return Object to be serialized in byte array
  5661.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5662.      */
  5663.     public byte[] toByteArray(IdPortaApplicativa idPortaApplicativa,boolean prettyPrint) throws SerializerException {
  5664.         return this.objToXml(IdPortaApplicativa.class, idPortaApplicativa, prettyPrint).toByteArray();
  5665.     }
  5666.    
  5667.     /**
  5668.      * Serialize to String the object <var>idPortaApplicativa</var> of type {@link org.openspcoop2.core.config.IdPortaApplicativa}
  5669.      *
  5670.      * @param idPortaApplicativa Object to be serialized
  5671.      * @return Object to be serialized as String
  5672.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5673.      */
  5674.     public String toString(IdPortaApplicativa idPortaApplicativa) throws SerializerException {
  5675.         return this.objToXml(IdPortaApplicativa.class, idPortaApplicativa, false).toString();
  5676.     }
  5677.     /**
  5678.      * Serialize to String the object <var>idPortaApplicativa</var> of type {@link org.openspcoop2.core.config.IdPortaApplicativa}
  5679.      *
  5680.      * @param idPortaApplicativa Object to be serialized
  5681.      * @param prettyPrint if true output the XML with indenting
  5682.      * @return Object to be serialized as String
  5683.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5684.      */
  5685.     public String toString(IdPortaApplicativa idPortaApplicativa,boolean prettyPrint) throws SerializerException {
  5686.         return this.objToXml(IdPortaApplicativa.class, idPortaApplicativa, prettyPrint).toString();
  5687.     }
  5688.    
  5689.    
  5690.    
  5691.     /*
  5692.      =================================================================================
  5693.      Object: porta-applicativa-soggetto-virtuale
  5694.      =================================================================================
  5695.     */
  5696.    
  5697.     /**
  5698.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativaSoggettoVirtuale</var> of type {@link org.openspcoop2.core.config.PortaApplicativaSoggettoVirtuale}
  5699.      *
  5700.      * @param fileName Xml file to serialize the object <var>portaApplicativaSoggettoVirtuale</var>
  5701.      * @param portaApplicativaSoggettoVirtuale Object to be serialized in xml file <var>fileName</var>
  5702.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5703.      */
  5704.     public void write(String fileName,PortaApplicativaSoggettoVirtuale portaApplicativaSoggettoVirtuale) throws SerializerException {
  5705.         this.objToXml(fileName, PortaApplicativaSoggettoVirtuale.class, portaApplicativaSoggettoVirtuale, false);
  5706.     }
  5707.     /**
  5708.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativaSoggettoVirtuale</var> of type {@link org.openspcoop2.core.config.PortaApplicativaSoggettoVirtuale}
  5709.      *
  5710.      * @param fileName Xml file to serialize the object <var>portaApplicativaSoggettoVirtuale</var>
  5711.      * @param portaApplicativaSoggettoVirtuale Object to be serialized in xml file <var>fileName</var>
  5712.      * @param prettyPrint if true output the XML with indenting
  5713.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5714.      */
  5715.     public void write(String fileName,PortaApplicativaSoggettoVirtuale portaApplicativaSoggettoVirtuale,boolean prettyPrint) throws SerializerException {
  5716.         this.objToXml(fileName, PortaApplicativaSoggettoVirtuale.class, portaApplicativaSoggettoVirtuale, prettyPrint);
  5717.     }
  5718.    
  5719.     /**
  5720.      * Serialize to file system in <var>file</var> the object <var>portaApplicativaSoggettoVirtuale</var> of type {@link org.openspcoop2.core.config.PortaApplicativaSoggettoVirtuale}
  5721.      *
  5722.      * @param file Xml file to serialize the object <var>portaApplicativaSoggettoVirtuale</var>
  5723.      * @param portaApplicativaSoggettoVirtuale Object to be serialized in xml file <var>fileName</var>
  5724.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5725.      */
  5726.     public void write(File file,PortaApplicativaSoggettoVirtuale portaApplicativaSoggettoVirtuale) throws SerializerException {
  5727.         this.objToXml(file, PortaApplicativaSoggettoVirtuale.class, portaApplicativaSoggettoVirtuale, false);
  5728.     }
  5729.     /**
  5730.      * Serialize to file system in <var>file</var> the object <var>portaApplicativaSoggettoVirtuale</var> of type {@link org.openspcoop2.core.config.PortaApplicativaSoggettoVirtuale}
  5731.      *
  5732.      * @param file Xml file to serialize the object <var>portaApplicativaSoggettoVirtuale</var>
  5733.      * @param portaApplicativaSoggettoVirtuale Object to be serialized in xml file <var>fileName</var>
  5734.      * @param prettyPrint if true output the XML with indenting
  5735.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5736.      */
  5737.     public void write(File file,PortaApplicativaSoggettoVirtuale portaApplicativaSoggettoVirtuale,boolean prettyPrint) throws SerializerException {
  5738.         this.objToXml(file, PortaApplicativaSoggettoVirtuale.class, portaApplicativaSoggettoVirtuale, prettyPrint);
  5739.     }
  5740.    
  5741.     /**
  5742.      * Serialize to output stream <var>out</var> the object <var>portaApplicativaSoggettoVirtuale</var> of type {@link org.openspcoop2.core.config.PortaApplicativaSoggettoVirtuale}
  5743.      *
  5744.      * @param out OutputStream to serialize the object <var>portaApplicativaSoggettoVirtuale</var>
  5745.      * @param portaApplicativaSoggettoVirtuale Object to be serialized in xml file <var>fileName</var>
  5746.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5747.      */
  5748.     public void write(OutputStream out,PortaApplicativaSoggettoVirtuale portaApplicativaSoggettoVirtuale) throws SerializerException {
  5749.         this.objToXml(out, PortaApplicativaSoggettoVirtuale.class, portaApplicativaSoggettoVirtuale, false);
  5750.     }
  5751.     /**
  5752.      * Serialize to output stream <var>out</var> the object <var>portaApplicativaSoggettoVirtuale</var> of type {@link org.openspcoop2.core.config.PortaApplicativaSoggettoVirtuale}
  5753.      *
  5754.      * @param out OutputStream to serialize the object <var>portaApplicativaSoggettoVirtuale</var>
  5755.      * @param portaApplicativaSoggettoVirtuale Object to be serialized in xml file <var>fileName</var>
  5756.      * @param prettyPrint if true output the XML with indenting
  5757.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5758.      */
  5759.     public void write(OutputStream out,PortaApplicativaSoggettoVirtuale portaApplicativaSoggettoVirtuale,boolean prettyPrint) throws SerializerException {
  5760.         this.objToXml(out, PortaApplicativaSoggettoVirtuale.class, portaApplicativaSoggettoVirtuale, prettyPrint);
  5761.     }
  5762.            
  5763.     /**
  5764.      * Serialize to byte array the object <var>portaApplicativaSoggettoVirtuale</var> of type {@link org.openspcoop2.core.config.PortaApplicativaSoggettoVirtuale}
  5765.      *
  5766.      * @param portaApplicativaSoggettoVirtuale Object to be serialized
  5767.      * @return Object to be serialized in byte array
  5768.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5769.      */
  5770.     public byte[] toByteArray(PortaApplicativaSoggettoVirtuale portaApplicativaSoggettoVirtuale) throws SerializerException {
  5771.         return this.objToXml(PortaApplicativaSoggettoVirtuale.class, portaApplicativaSoggettoVirtuale, false).toByteArray();
  5772.     }
  5773.     /**
  5774.      * Serialize to byte array the object <var>portaApplicativaSoggettoVirtuale</var> of type {@link org.openspcoop2.core.config.PortaApplicativaSoggettoVirtuale}
  5775.      *
  5776.      * @param portaApplicativaSoggettoVirtuale Object to be serialized
  5777.      * @param prettyPrint if true output the XML with indenting
  5778.      * @return Object to be serialized in byte array
  5779.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5780.      */
  5781.     public byte[] toByteArray(PortaApplicativaSoggettoVirtuale portaApplicativaSoggettoVirtuale,boolean prettyPrint) throws SerializerException {
  5782.         return this.objToXml(PortaApplicativaSoggettoVirtuale.class, portaApplicativaSoggettoVirtuale, prettyPrint).toByteArray();
  5783.     }
  5784.    
  5785.     /**
  5786.      * Serialize to String the object <var>portaApplicativaSoggettoVirtuale</var> of type {@link org.openspcoop2.core.config.PortaApplicativaSoggettoVirtuale}
  5787.      *
  5788.      * @param portaApplicativaSoggettoVirtuale Object to be serialized
  5789.      * @return Object to be serialized as String
  5790.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5791.      */
  5792.     public String toString(PortaApplicativaSoggettoVirtuale portaApplicativaSoggettoVirtuale) throws SerializerException {
  5793.         return this.objToXml(PortaApplicativaSoggettoVirtuale.class, portaApplicativaSoggettoVirtuale, false).toString();
  5794.     }
  5795.     /**
  5796.      * Serialize to String the object <var>portaApplicativaSoggettoVirtuale</var> of type {@link org.openspcoop2.core.config.PortaApplicativaSoggettoVirtuale}
  5797.      *
  5798.      * @param portaApplicativaSoggettoVirtuale Object to be serialized
  5799.      * @param prettyPrint if true output the XML with indenting
  5800.      * @return Object to be serialized as String
  5801.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5802.      */
  5803.     public String toString(PortaApplicativaSoggettoVirtuale portaApplicativaSoggettoVirtuale,boolean prettyPrint) throws SerializerException {
  5804.         return this.objToXml(PortaApplicativaSoggettoVirtuale.class, portaApplicativaSoggettoVirtuale, prettyPrint).toString();
  5805.     }
  5806.    
  5807.    
  5808.    
  5809.     /*
  5810.      =================================================================================
  5811.      Object: tracciamento-configurazione-filetrace-connector
  5812.      =================================================================================
  5813.     */
  5814.    
  5815.     /**
  5816.      * Serialize to file system in <var>fileName</var> the object <var>tracciamentoConfigurazioneFiletraceConnector</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazioneFiletraceConnector}
  5817.      *
  5818.      * @param fileName Xml file to serialize the object <var>tracciamentoConfigurazioneFiletraceConnector</var>
  5819.      * @param tracciamentoConfigurazioneFiletraceConnector Object to be serialized in xml file <var>fileName</var>
  5820.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5821.      */
  5822.     public void write(String fileName,TracciamentoConfigurazioneFiletraceConnector tracciamentoConfigurazioneFiletraceConnector) throws SerializerException {
  5823.         this.objToXml(fileName, TracciamentoConfigurazioneFiletraceConnector.class, tracciamentoConfigurazioneFiletraceConnector, false);
  5824.     }
  5825.     /**
  5826.      * Serialize to file system in <var>fileName</var> the object <var>tracciamentoConfigurazioneFiletraceConnector</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazioneFiletraceConnector}
  5827.      *
  5828.      * @param fileName Xml file to serialize the object <var>tracciamentoConfigurazioneFiletraceConnector</var>
  5829.      * @param tracciamentoConfigurazioneFiletraceConnector Object to be serialized in xml file <var>fileName</var>
  5830.      * @param prettyPrint if true output the XML with indenting
  5831.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5832.      */
  5833.     public void write(String fileName,TracciamentoConfigurazioneFiletraceConnector tracciamentoConfigurazioneFiletraceConnector,boolean prettyPrint) throws SerializerException {
  5834.         this.objToXml(fileName, TracciamentoConfigurazioneFiletraceConnector.class, tracciamentoConfigurazioneFiletraceConnector, prettyPrint);
  5835.     }
  5836.    
  5837.     /**
  5838.      * Serialize to file system in <var>file</var> the object <var>tracciamentoConfigurazioneFiletraceConnector</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazioneFiletraceConnector}
  5839.      *
  5840.      * @param file Xml file to serialize the object <var>tracciamentoConfigurazioneFiletraceConnector</var>
  5841.      * @param tracciamentoConfigurazioneFiletraceConnector Object to be serialized in xml file <var>fileName</var>
  5842.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5843.      */
  5844.     public void write(File file,TracciamentoConfigurazioneFiletraceConnector tracciamentoConfigurazioneFiletraceConnector) throws SerializerException {
  5845.         this.objToXml(file, TracciamentoConfigurazioneFiletraceConnector.class, tracciamentoConfigurazioneFiletraceConnector, false);
  5846.     }
  5847.     /**
  5848.      * Serialize to file system in <var>file</var> the object <var>tracciamentoConfigurazioneFiletraceConnector</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazioneFiletraceConnector}
  5849.      *
  5850.      * @param file Xml file to serialize the object <var>tracciamentoConfigurazioneFiletraceConnector</var>
  5851.      * @param tracciamentoConfigurazioneFiletraceConnector Object to be serialized in xml file <var>fileName</var>
  5852.      * @param prettyPrint if true output the XML with indenting
  5853.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5854.      */
  5855.     public void write(File file,TracciamentoConfigurazioneFiletraceConnector tracciamentoConfigurazioneFiletraceConnector,boolean prettyPrint) throws SerializerException {
  5856.         this.objToXml(file, TracciamentoConfigurazioneFiletraceConnector.class, tracciamentoConfigurazioneFiletraceConnector, prettyPrint);
  5857.     }
  5858.    
  5859.     /**
  5860.      * Serialize to output stream <var>out</var> the object <var>tracciamentoConfigurazioneFiletraceConnector</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazioneFiletraceConnector}
  5861.      *
  5862.      * @param out OutputStream to serialize the object <var>tracciamentoConfigurazioneFiletraceConnector</var>
  5863.      * @param tracciamentoConfigurazioneFiletraceConnector Object to be serialized in xml file <var>fileName</var>
  5864.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5865.      */
  5866.     public void write(OutputStream out,TracciamentoConfigurazioneFiletraceConnector tracciamentoConfigurazioneFiletraceConnector) throws SerializerException {
  5867.         this.objToXml(out, TracciamentoConfigurazioneFiletraceConnector.class, tracciamentoConfigurazioneFiletraceConnector, false);
  5868.     }
  5869.     /**
  5870.      * Serialize to output stream <var>out</var> the object <var>tracciamentoConfigurazioneFiletraceConnector</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazioneFiletraceConnector}
  5871.      *
  5872.      * @param out OutputStream to serialize the object <var>tracciamentoConfigurazioneFiletraceConnector</var>
  5873.      * @param tracciamentoConfigurazioneFiletraceConnector Object to be serialized in xml file <var>fileName</var>
  5874.      * @param prettyPrint if true output the XML with indenting
  5875.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5876.      */
  5877.     public void write(OutputStream out,TracciamentoConfigurazioneFiletraceConnector tracciamentoConfigurazioneFiletraceConnector,boolean prettyPrint) throws SerializerException {
  5878.         this.objToXml(out, TracciamentoConfigurazioneFiletraceConnector.class, tracciamentoConfigurazioneFiletraceConnector, prettyPrint);
  5879.     }
  5880.            
  5881.     /**
  5882.      * Serialize to byte array the object <var>tracciamentoConfigurazioneFiletraceConnector</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazioneFiletraceConnector}
  5883.      *
  5884.      * @param tracciamentoConfigurazioneFiletraceConnector Object to be serialized
  5885.      * @return Object to be serialized in byte array
  5886.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5887.      */
  5888.     public byte[] toByteArray(TracciamentoConfigurazioneFiletraceConnector tracciamentoConfigurazioneFiletraceConnector) throws SerializerException {
  5889.         return this.objToXml(TracciamentoConfigurazioneFiletraceConnector.class, tracciamentoConfigurazioneFiletraceConnector, false).toByteArray();
  5890.     }
  5891.     /**
  5892.      * Serialize to byte array the object <var>tracciamentoConfigurazioneFiletraceConnector</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazioneFiletraceConnector}
  5893.      *
  5894.      * @param tracciamentoConfigurazioneFiletraceConnector Object to be serialized
  5895.      * @param prettyPrint if true output the XML with indenting
  5896.      * @return Object to be serialized in byte array
  5897.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5898.      */
  5899.     public byte[] toByteArray(TracciamentoConfigurazioneFiletraceConnector tracciamentoConfigurazioneFiletraceConnector,boolean prettyPrint) throws SerializerException {
  5900.         return this.objToXml(TracciamentoConfigurazioneFiletraceConnector.class, tracciamentoConfigurazioneFiletraceConnector, prettyPrint).toByteArray();
  5901.     }
  5902.    
  5903.     /**
  5904.      * Serialize to String the object <var>tracciamentoConfigurazioneFiletraceConnector</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazioneFiletraceConnector}
  5905.      *
  5906.      * @param tracciamentoConfigurazioneFiletraceConnector Object to be serialized
  5907.      * @return Object to be serialized as String
  5908.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5909.      */
  5910.     public String toString(TracciamentoConfigurazioneFiletraceConnector tracciamentoConfigurazioneFiletraceConnector) throws SerializerException {
  5911.         return this.objToXml(TracciamentoConfigurazioneFiletraceConnector.class, tracciamentoConfigurazioneFiletraceConnector, false).toString();
  5912.     }
  5913.     /**
  5914.      * Serialize to String the object <var>tracciamentoConfigurazioneFiletraceConnector</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazioneFiletraceConnector}
  5915.      *
  5916.      * @param tracciamentoConfigurazioneFiletraceConnector Object to be serialized
  5917.      * @param prettyPrint if true output the XML with indenting
  5918.      * @return Object to be serialized as String
  5919.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5920.      */
  5921.     public String toString(TracciamentoConfigurazioneFiletraceConnector tracciamentoConfigurazioneFiletraceConnector,boolean prettyPrint) throws SerializerException {
  5922.         return this.objToXml(TracciamentoConfigurazioneFiletraceConnector.class, tracciamentoConfigurazioneFiletraceConnector, prettyPrint).toString();
  5923.     }
  5924.    
  5925.    
  5926.    
  5927.     /*
  5928.      =================================================================================
  5929.      Object: tracciamento-configurazione-filetrace
  5930.      =================================================================================
  5931.     */
  5932.    
  5933.     /**
  5934.      * Serialize to file system in <var>fileName</var> the object <var>tracciamentoConfigurazioneFiletrace</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazioneFiletrace}
  5935.      *
  5936.      * @param fileName Xml file to serialize the object <var>tracciamentoConfigurazioneFiletrace</var>
  5937.      * @param tracciamentoConfigurazioneFiletrace Object to be serialized in xml file <var>fileName</var>
  5938.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5939.      */
  5940.     public void write(String fileName,TracciamentoConfigurazioneFiletrace tracciamentoConfigurazioneFiletrace) throws SerializerException {
  5941.         this.objToXml(fileName, TracciamentoConfigurazioneFiletrace.class, tracciamentoConfigurazioneFiletrace, false);
  5942.     }
  5943.     /**
  5944.      * Serialize to file system in <var>fileName</var> the object <var>tracciamentoConfigurazioneFiletrace</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazioneFiletrace}
  5945.      *
  5946.      * @param fileName Xml file to serialize the object <var>tracciamentoConfigurazioneFiletrace</var>
  5947.      * @param tracciamentoConfigurazioneFiletrace Object to be serialized in xml file <var>fileName</var>
  5948.      * @param prettyPrint if true output the XML with indenting
  5949.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5950.      */
  5951.     public void write(String fileName,TracciamentoConfigurazioneFiletrace tracciamentoConfigurazioneFiletrace,boolean prettyPrint) throws SerializerException {
  5952.         this.objToXml(fileName, TracciamentoConfigurazioneFiletrace.class, tracciamentoConfigurazioneFiletrace, prettyPrint);
  5953.     }
  5954.    
  5955.     /**
  5956.      * Serialize to file system in <var>file</var> the object <var>tracciamentoConfigurazioneFiletrace</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazioneFiletrace}
  5957.      *
  5958.      * @param file Xml file to serialize the object <var>tracciamentoConfigurazioneFiletrace</var>
  5959.      * @param tracciamentoConfigurazioneFiletrace Object to be serialized in xml file <var>fileName</var>
  5960.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5961.      */
  5962.     public void write(File file,TracciamentoConfigurazioneFiletrace tracciamentoConfigurazioneFiletrace) throws SerializerException {
  5963.         this.objToXml(file, TracciamentoConfigurazioneFiletrace.class, tracciamentoConfigurazioneFiletrace, false);
  5964.     }
  5965.     /**
  5966.      * Serialize to file system in <var>file</var> the object <var>tracciamentoConfigurazioneFiletrace</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazioneFiletrace}
  5967.      *
  5968.      * @param file Xml file to serialize the object <var>tracciamentoConfigurazioneFiletrace</var>
  5969.      * @param tracciamentoConfigurazioneFiletrace Object to be serialized in xml file <var>fileName</var>
  5970.      * @param prettyPrint if true output the XML with indenting
  5971.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5972.      */
  5973.     public void write(File file,TracciamentoConfigurazioneFiletrace tracciamentoConfigurazioneFiletrace,boolean prettyPrint) throws SerializerException {
  5974.         this.objToXml(file, TracciamentoConfigurazioneFiletrace.class, tracciamentoConfigurazioneFiletrace, prettyPrint);
  5975.     }
  5976.    
  5977.     /**
  5978.      * Serialize to output stream <var>out</var> the object <var>tracciamentoConfigurazioneFiletrace</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazioneFiletrace}
  5979.      *
  5980.      * @param out OutputStream to serialize the object <var>tracciamentoConfigurazioneFiletrace</var>
  5981.      * @param tracciamentoConfigurazioneFiletrace Object to be serialized in xml file <var>fileName</var>
  5982.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5983.      */
  5984.     public void write(OutputStream out,TracciamentoConfigurazioneFiletrace tracciamentoConfigurazioneFiletrace) throws SerializerException {
  5985.         this.objToXml(out, TracciamentoConfigurazioneFiletrace.class, tracciamentoConfigurazioneFiletrace, false);
  5986.     }
  5987.     /**
  5988.      * Serialize to output stream <var>out</var> the object <var>tracciamentoConfigurazioneFiletrace</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazioneFiletrace}
  5989.      *
  5990.      * @param out OutputStream to serialize the object <var>tracciamentoConfigurazioneFiletrace</var>
  5991.      * @param tracciamentoConfigurazioneFiletrace Object to be serialized in xml file <var>fileName</var>
  5992.      * @param prettyPrint if true output the XML with indenting
  5993.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5994.      */
  5995.     public void write(OutputStream out,TracciamentoConfigurazioneFiletrace tracciamentoConfigurazioneFiletrace,boolean prettyPrint) throws SerializerException {
  5996.         this.objToXml(out, TracciamentoConfigurazioneFiletrace.class, tracciamentoConfigurazioneFiletrace, prettyPrint);
  5997.     }
  5998.            
  5999.     /**
  6000.      * Serialize to byte array the object <var>tracciamentoConfigurazioneFiletrace</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazioneFiletrace}
  6001.      *
  6002.      * @param tracciamentoConfigurazioneFiletrace Object to be serialized
  6003.      * @return Object to be serialized in byte array
  6004.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6005.      */
  6006.     public byte[] toByteArray(TracciamentoConfigurazioneFiletrace tracciamentoConfigurazioneFiletrace) throws SerializerException {
  6007.         return this.objToXml(TracciamentoConfigurazioneFiletrace.class, tracciamentoConfigurazioneFiletrace, false).toByteArray();
  6008.     }
  6009.     /**
  6010.      * Serialize to byte array the object <var>tracciamentoConfigurazioneFiletrace</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazioneFiletrace}
  6011.      *
  6012.      * @param tracciamentoConfigurazioneFiletrace Object to be serialized
  6013.      * @param prettyPrint if true output the XML with indenting
  6014.      * @return Object to be serialized in byte array
  6015.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6016.      */
  6017.     public byte[] toByteArray(TracciamentoConfigurazioneFiletrace tracciamentoConfigurazioneFiletrace,boolean prettyPrint) throws SerializerException {
  6018.         return this.objToXml(TracciamentoConfigurazioneFiletrace.class, tracciamentoConfigurazioneFiletrace, prettyPrint).toByteArray();
  6019.     }
  6020.    
  6021.     /**
  6022.      * Serialize to String the object <var>tracciamentoConfigurazioneFiletrace</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazioneFiletrace}
  6023.      *
  6024.      * @param tracciamentoConfigurazioneFiletrace Object to be serialized
  6025.      * @return Object to be serialized as String
  6026.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6027.      */
  6028.     public String toString(TracciamentoConfigurazioneFiletrace tracciamentoConfigurazioneFiletrace) throws SerializerException {
  6029.         return this.objToXml(TracciamentoConfigurazioneFiletrace.class, tracciamentoConfigurazioneFiletrace, false).toString();
  6030.     }
  6031.     /**
  6032.      * Serialize to String the object <var>tracciamentoConfigurazioneFiletrace</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazioneFiletrace}
  6033.      *
  6034.      * @param tracciamentoConfigurazioneFiletrace Object to be serialized
  6035.      * @param prettyPrint if true output the XML with indenting
  6036.      * @return Object to be serialized as String
  6037.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6038.      */
  6039.     public String toString(TracciamentoConfigurazioneFiletrace tracciamentoConfigurazioneFiletrace,boolean prettyPrint) throws SerializerException {
  6040.         return this.objToXml(TracciamentoConfigurazioneFiletrace.class, tracciamentoConfigurazioneFiletrace, prettyPrint).toString();
  6041.     }
  6042.    
  6043.    
  6044.    
  6045.     /*
  6046.      =================================================================================
  6047.      Object: trasformazione-regola-risposta
  6048.      =================================================================================
  6049.     */
  6050.    
  6051.     /**
  6052.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioneRegolaRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaRisposta}
  6053.      *
  6054.      * @param fileName Xml file to serialize the object <var>trasformazioneRegolaRisposta</var>
  6055.      * @param trasformazioneRegolaRisposta Object to be serialized in xml file <var>fileName</var>
  6056.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6057.      */
  6058.     public void write(String fileName,TrasformazioneRegolaRisposta trasformazioneRegolaRisposta) throws SerializerException {
  6059.         this.objToXml(fileName, TrasformazioneRegolaRisposta.class, trasformazioneRegolaRisposta, false);
  6060.     }
  6061.     /**
  6062.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioneRegolaRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaRisposta}
  6063.      *
  6064.      * @param fileName Xml file to serialize the object <var>trasformazioneRegolaRisposta</var>
  6065.      * @param trasformazioneRegolaRisposta Object to be serialized in xml file <var>fileName</var>
  6066.      * @param prettyPrint if true output the XML with indenting
  6067.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6068.      */
  6069.     public void write(String fileName,TrasformazioneRegolaRisposta trasformazioneRegolaRisposta,boolean prettyPrint) throws SerializerException {
  6070.         this.objToXml(fileName, TrasformazioneRegolaRisposta.class, trasformazioneRegolaRisposta, prettyPrint);
  6071.     }
  6072.    
  6073.     /**
  6074.      * Serialize to file system in <var>file</var> the object <var>trasformazioneRegolaRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaRisposta}
  6075.      *
  6076.      * @param file Xml file to serialize the object <var>trasformazioneRegolaRisposta</var>
  6077.      * @param trasformazioneRegolaRisposta Object to be serialized in xml file <var>fileName</var>
  6078.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6079.      */
  6080.     public void write(File file,TrasformazioneRegolaRisposta trasformazioneRegolaRisposta) throws SerializerException {
  6081.         this.objToXml(file, TrasformazioneRegolaRisposta.class, trasformazioneRegolaRisposta, false);
  6082.     }
  6083.     /**
  6084.      * Serialize to file system in <var>file</var> the object <var>trasformazioneRegolaRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaRisposta}
  6085.      *
  6086.      * @param file Xml file to serialize the object <var>trasformazioneRegolaRisposta</var>
  6087.      * @param trasformazioneRegolaRisposta Object to be serialized in xml file <var>fileName</var>
  6088.      * @param prettyPrint if true output the XML with indenting
  6089.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6090.      */
  6091.     public void write(File file,TrasformazioneRegolaRisposta trasformazioneRegolaRisposta,boolean prettyPrint) throws SerializerException {
  6092.         this.objToXml(file, TrasformazioneRegolaRisposta.class, trasformazioneRegolaRisposta, prettyPrint);
  6093.     }
  6094.    
  6095.     /**
  6096.      * Serialize to output stream <var>out</var> the object <var>trasformazioneRegolaRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaRisposta}
  6097.      *
  6098.      * @param out OutputStream to serialize the object <var>trasformazioneRegolaRisposta</var>
  6099.      * @param trasformazioneRegolaRisposta Object to be serialized in xml file <var>fileName</var>
  6100.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6101.      */
  6102.     public void write(OutputStream out,TrasformazioneRegolaRisposta trasformazioneRegolaRisposta) throws SerializerException {
  6103.         this.objToXml(out, TrasformazioneRegolaRisposta.class, trasformazioneRegolaRisposta, false);
  6104.     }
  6105.     /**
  6106.      * Serialize to output stream <var>out</var> the object <var>trasformazioneRegolaRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaRisposta}
  6107.      *
  6108.      * @param out OutputStream to serialize the object <var>trasformazioneRegolaRisposta</var>
  6109.      * @param trasformazioneRegolaRisposta Object to be serialized in xml file <var>fileName</var>
  6110.      * @param prettyPrint if true output the XML with indenting
  6111.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6112.      */
  6113.     public void write(OutputStream out,TrasformazioneRegolaRisposta trasformazioneRegolaRisposta,boolean prettyPrint) throws SerializerException {
  6114.         this.objToXml(out, TrasformazioneRegolaRisposta.class, trasformazioneRegolaRisposta, prettyPrint);
  6115.     }
  6116.            
  6117.     /**
  6118.      * Serialize to byte array the object <var>trasformazioneRegolaRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaRisposta}
  6119.      *
  6120.      * @param trasformazioneRegolaRisposta Object to be serialized
  6121.      * @return Object to be serialized in byte array
  6122.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6123.      */
  6124.     public byte[] toByteArray(TrasformazioneRegolaRisposta trasformazioneRegolaRisposta) throws SerializerException {
  6125.         return this.objToXml(TrasformazioneRegolaRisposta.class, trasformazioneRegolaRisposta, false).toByteArray();
  6126.     }
  6127.     /**
  6128.      * Serialize to byte array the object <var>trasformazioneRegolaRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaRisposta}
  6129.      *
  6130.      * @param trasformazioneRegolaRisposta Object to be serialized
  6131.      * @param prettyPrint if true output the XML with indenting
  6132.      * @return Object to be serialized in byte array
  6133.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6134.      */
  6135.     public byte[] toByteArray(TrasformazioneRegolaRisposta trasformazioneRegolaRisposta,boolean prettyPrint) throws SerializerException {
  6136.         return this.objToXml(TrasformazioneRegolaRisposta.class, trasformazioneRegolaRisposta, prettyPrint).toByteArray();
  6137.     }
  6138.    
  6139.     /**
  6140.      * Serialize to String the object <var>trasformazioneRegolaRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaRisposta}
  6141.      *
  6142.      * @param trasformazioneRegolaRisposta Object to be serialized
  6143.      * @return Object to be serialized as String
  6144.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6145.      */
  6146.     public String toString(TrasformazioneRegolaRisposta trasformazioneRegolaRisposta) throws SerializerException {
  6147.         return this.objToXml(TrasformazioneRegolaRisposta.class, trasformazioneRegolaRisposta, false).toString();
  6148.     }
  6149.     /**
  6150.      * Serialize to String the object <var>trasformazioneRegolaRisposta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaRisposta}
  6151.      *
  6152.      * @param trasformazioneRegolaRisposta Object to be serialized
  6153.      * @param prettyPrint if true output the XML with indenting
  6154.      * @return Object to be serialized as String
  6155.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6156.      */
  6157.     public String toString(TrasformazioneRegolaRisposta trasformazioneRegolaRisposta,boolean prettyPrint) throws SerializerException {
  6158.         return this.objToXml(TrasformazioneRegolaRisposta.class, trasformazioneRegolaRisposta, prettyPrint).toString();
  6159.     }
  6160.    
  6161.    
  6162.    
  6163.     /*
  6164.      =================================================================================
  6165.      Object: message-security-flow-parameter
  6166.      =================================================================================
  6167.     */
  6168.    
  6169.     /**
  6170.      * Serialize to file system in <var>fileName</var> the object <var>messageSecurityFlowParameter</var> of type {@link org.openspcoop2.core.config.MessageSecurityFlowParameter}
  6171.      *
  6172.      * @param fileName Xml file to serialize the object <var>messageSecurityFlowParameter</var>
  6173.      * @param messageSecurityFlowParameter Object to be serialized in xml file <var>fileName</var>
  6174.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6175.      */
  6176.     public void write(String fileName,MessageSecurityFlowParameter messageSecurityFlowParameter) throws SerializerException {
  6177.         this.objToXml(fileName, MessageSecurityFlowParameter.class, messageSecurityFlowParameter, false);
  6178.     }
  6179.     /**
  6180.      * Serialize to file system in <var>fileName</var> the object <var>messageSecurityFlowParameter</var> of type {@link org.openspcoop2.core.config.MessageSecurityFlowParameter}
  6181.      *
  6182.      * @param fileName Xml file to serialize the object <var>messageSecurityFlowParameter</var>
  6183.      * @param messageSecurityFlowParameter Object to be serialized in xml file <var>fileName</var>
  6184.      * @param prettyPrint if true output the XML with indenting
  6185.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6186.      */
  6187.     public void write(String fileName,MessageSecurityFlowParameter messageSecurityFlowParameter,boolean prettyPrint) throws SerializerException {
  6188.         this.objToXml(fileName, MessageSecurityFlowParameter.class, messageSecurityFlowParameter, prettyPrint);
  6189.     }
  6190.    
  6191.     /**
  6192.      * Serialize to file system in <var>file</var> the object <var>messageSecurityFlowParameter</var> of type {@link org.openspcoop2.core.config.MessageSecurityFlowParameter}
  6193.      *
  6194.      * @param file Xml file to serialize the object <var>messageSecurityFlowParameter</var>
  6195.      * @param messageSecurityFlowParameter Object to be serialized in xml file <var>fileName</var>
  6196.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6197.      */
  6198.     public void write(File file,MessageSecurityFlowParameter messageSecurityFlowParameter) throws SerializerException {
  6199.         this.objToXml(file, MessageSecurityFlowParameter.class, messageSecurityFlowParameter, false);
  6200.     }
  6201.     /**
  6202.      * Serialize to file system in <var>file</var> the object <var>messageSecurityFlowParameter</var> of type {@link org.openspcoop2.core.config.MessageSecurityFlowParameter}
  6203.      *
  6204.      * @param file Xml file to serialize the object <var>messageSecurityFlowParameter</var>
  6205.      * @param messageSecurityFlowParameter Object to be serialized in xml file <var>fileName</var>
  6206.      * @param prettyPrint if true output the XML with indenting
  6207.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6208.      */
  6209.     public void write(File file,MessageSecurityFlowParameter messageSecurityFlowParameter,boolean prettyPrint) throws SerializerException {
  6210.         this.objToXml(file, MessageSecurityFlowParameter.class, messageSecurityFlowParameter, prettyPrint);
  6211.     }
  6212.    
  6213.     /**
  6214.      * Serialize to output stream <var>out</var> the object <var>messageSecurityFlowParameter</var> of type {@link org.openspcoop2.core.config.MessageSecurityFlowParameter}
  6215.      *
  6216.      * @param out OutputStream to serialize the object <var>messageSecurityFlowParameter</var>
  6217.      * @param messageSecurityFlowParameter Object to be serialized in xml file <var>fileName</var>
  6218.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6219.      */
  6220.     public void write(OutputStream out,MessageSecurityFlowParameter messageSecurityFlowParameter) throws SerializerException {
  6221.         this.objToXml(out, MessageSecurityFlowParameter.class, messageSecurityFlowParameter, false);
  6222.     }
  6223.     /**
  6224.      * Serialize to output stream <var>out</var> the object <var>messageSecurityFlowParameter</var> of type {@link org.openspcoop2.core.config.MessageSecurityFlowParameter}
  6225.      *
  6226.      * @param out OutputStream to serialize the object <var>messageSecurityFlowParameter</var>
  6227.      * @param messageSecurityFlowParameter Object to be serialized in xml file <var>fileName</var>
  6228.      * @param prettyPrint if true output the XML with indenting
  6229.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6230.      */
  6231.     public void write(OutputStream out,MessageSecurityFlowParameter messageSecurityFlowParameter,boolean prettyPrint) throws SerializerException {
  6232.         this.objToXml(out, MessageSecurityFlowParameter.class, messageSecurityFlowParameter, prettyPrint);
  6233.     }
  6234.            
  6235.     /**
  6236.      * Serialize to byte array the object <var>messageSecurityFlowParameter</var> of type {@link org.openspcoop2.core.config.MessageSecurityFlowParameter}
  6237.      *
  6238.      * @param messageSecurityFlowParameter Object to be serialized
  6239.      * @return Object to be serialized in byte array
  6240.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6241.      */
  6242.     public byte[] toByteArray(MessageSecurityFlowParameter messageSecurityFlowParameter) throws SerializerException {
  6243.         return this.objToXml(MessageSecurityFlowParameter.class, messageSecurityFlowParameter, false).toByteArray();
  6244.     }
  6245.     /**
  6246.      * Serialize to byte array the object <var>messageSecurityFlowParameter</var> of type {@link org.openspcoop2.core.config.MessageSecurityFlowParameter}
  6247.      *
  6248.      * @param messageSecurityFlowParameter Object to be serialized
  6249.      * @param prettyPrint if true output the XML with indenting
  6250.      * @return Object to be serialized in byte array
  6251.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6252.      */
  6253.     public byte[] toByteArray(MessageSecurityFlowParameter messageSecurityFlowParameter,boolean prettyPrint) throws SerializerException {
  6254.         return this.objToXml(MessageSecurityFlowParameter.class, messageSecurityFlowParameter, prettyPrint).toByteArray();
  6255.     }
  6256.    
  6257.     /**
  6258.      * Serialize to String the object <var>messageSecurityFlowParameter</var> of type {@link org.openspcoop2.core.config.MessageSecurityFlowParameter}
  6259.      *
  6260.      * @param messageSecurityFlowParameter Object to be serialized
  6261.      * @return Object to be serialized as String
  6262.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6263.      */
  6264.     public String toString(MessageSecurityFlowParameter messageSecurityFlowParameter) throws SerializerException {
  6265.         return this.objToXml(MessageSecurityFlowParameter.class, messageSecurityFlowParameter, false).toString();
  6266.     }
  6267.     /**
  6268.      * Serialize to String the object <var>messageSecurityFlowParameter</var> of type {@link org.openspcoop2.core.config.MessageSecurityFlowParameter}
  6269.      *
  6270.      * @param messageSecurityFlowParameter Object to be serialized
  6271.      * @param prettyPrint if true output the XML with indenting
  6272.      * @return Object to be serialized as String
  6273.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6274.      */
  6275.     public String toString(MessageSecurityFlowParameter messageSecurityFlowParameter,boolean prettyPrint) throws SerializerException {
  6276.         return this.objToXml(MessageSecurityFlowParameter.class, messageSecurityFlowParameter, prettyPrint).toString();
  6277.     }
  6278.    
  6279.    
  6280.    
  6281.     /*
  6282.      =================================================================================
  6283.      Object: porta-delegata-soggetto-erogatore
  6284.      =================================================================================
  6285.     */
  6286.    
  6287.     /**
  6288.      * Serialize to file system in <var>fileName</var> the object <var>portaDelegataSoggettoErogatore</var> of type {@link org.openspcoop2.core.config.PortaDelegataSoggettoErogatore}
  6289.      *
  6290.      * @param fileName Xml file to serialize the object <var>portaDelegataSoggettoErogatore</var>
  6291.      * @param portaDelegataSoggettoErogatore Object to be serialized in xml file <var>fileName</var>
  6292.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6293.      */
  6294.     public void write(String fileName,PortaDelegataSoggettoErogatore portaDelegataSoggettoErogatore) throws SerializerException {
  6295.         this.objToXml(fileName, PortaDelegataSoggettoErogatore.class, portaDelegataSoggettoErogatore, false);
  6296.     }
  6297.     /**
  6298.      * Serialize to file system in <var>fileName</var> the object <var>portaDelegataSoggettoErogatore</var> of type {@link org.openspcoop2.core.config.PortaDelegataSoggettoErogatore}
  6299.      *
  6300.      * @param fileName Xml file to serialize the object <var>portaDelegataSoggettoErogatore</var>
  6301.      * @param portaDelegataSoggettoErogatore Object to be serialized in xml file <var>fileName</var>
  6302.      * @param prettyPrint if true output the XML with indenting
  6303.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6304.      */
  6305.     public void write(String fileName,PortaDelegataSoggettoErogatore portaDelegataSoggettoErogatore,boolean prettyPrint) throws SerializerException {
  6306.         this.objToXml(fileName, PortaDelegataSoggettoErogatore.class, portaDelegataSoggettoErogatore, prettyPrint);
  6307.     }
  6308.    
  6309.     /**
  6310.      * Serialize to file system in <var>file</var> the object <var>portaDelegataSoggettoErogatore</var> of type {@link org.openspcoop2.core.config.PortaDelegataSoggettoErogatore}
  6311.      *
  6312.      * @param file Xml file to serialize the object <var>portaDelegataSoggettoErogatore</var>
  6313.      * @param portaDelegataSoggettoErogatore Object to be serialized in xml file <var>fileName</var>
  6314.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6315.      */
  6316.     public void write(File file,PortaDelegataSoggettoErogatore portaDelegataSoggettoErogatore) throws SerializerException {
  6317.         this.objToXml(file, PortaDelegataSoggettoErogatore.class, portaDelegataSoggettoErogatore, false);
  6318.     }
  6319.     /**
  6320.      * Serialize to file system in <var>file</var> the object <var>portaDelegataSoggettoErogatore</var> of type {@link org.openspcoop2.core.config.PortaDelegataSoggettoErogatore}
  6321.      *
  6322.      * @param file Xml file to serialize the object <var>portaDelegataSoggettoErogatore</var>
  6323.      * @param portaDelegataSoggettoErogatore Object to be serialized in xml file <var>fileName</var>
  6324.      * @param prettyPrint if true output the XML with indenting
  6325.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6326.      */
  6327.     public void write(File file,PortaDelegataSoggettoErogatore portaDelegataSoggettoErogatore,boolean prettyPrint) throws SerializerException {
  6328.         this.objToXml(file, PortaDelegataSoggettoErogatore.class, portaDelegataSoggettoErogatore, prettyPrint);
  6329.     }
  6330.    
  6331.     /**
  6332.      * Serialize to output stream <var>out</var> the object <var>portaDelegataSoggettoErogatore</var> of type {@link org.openspcoop2.core.config.PortaDelegataSoggettoErogatore}
  6333.      *
  6334.      * @param out OutputStream to serialize the object <var>portaDelegataSoggettoErogatore</var>
  6335.      * @param portaDelegataSoggettoErogatore Object to be serialized in xml file <var>fileName</var>
  6336.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6337.      */
  6338.     public void write(OutputStream out,PortaDelegataSoggettoErogatore portaDelegataSoggettoErogatore) throws SerializerException {
  6339.         this.objToXml(out, PortaDelegataSoggettoErogatore.class, portaDelegataSoggettoErogatore, false);
  6340.     }
  6341.     /**
  6342.      * Serialize to output stream <var>out</var> the object <var>portaDelegataSoggettoErogatore</var> of type {@link org.openspcoop2.core.config.PortaDelegataSoggettoErogatore}
  6343.      *
  6344.      * @param out OutputStream to serialize the object <var>portaDelegataSoggettoErogatore</var>
  6345.      * @param portaDelegataSoggettoErogatore Object to be serialized in xml file <var>fileName</var>
  6346.      * @param prettyPrint if true output the XML with indenting
  6347.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6348.      */
  6349.     public void write(OutputStream out,PortaDelegataSoggettoErogatore portaDelegataSoggettoErogatore,boolean prettyPrint) throws SerializerException {
  6350.         this.objToXml(out, PortaDelegataSoggettoErogatore.class, portaDelegataSoggettoErogatore, prettyPrint);
  6351.     }
  6352.            
  6353.     /**
  6354.      * Serialize to byte array the object <var>portaDelegataSoggettoErogatore</var> of type {@link org.openspcoop2.core.config.PortaDelegataSoggettoErogatore}
  6355.      *
  6356.      * @param portaDelegataSoggettoErogatore Object to be serialized
  6357.      * @return Object to be serialized in byte array
  6358.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6359.      */
  6360.     public byte[] toByteArray(PortaDelegataSoggettoErogatore portaDelegataSoggettoErogatore) throws SerializerException {
  6361.         return this.objToXml(PortaDelegataSoggettoErogatore.class, portaDelegataSoggettoErogatore, false).toByteArray();
  6362.     }
  6363.     /**
  6364.      * Serialize to byte array the object <var>portaDelegataSoggettoErogatore</var> of type {@link org.openspcoop2.core.config.PortaDelegataSoggettoErogatore}
  6365.      *
  6366.      * @param portaDelegataSoggettoErogatore Object to be serialized
  6367.      * @param prettyPrint if true output the XML with indenting
  6368.      * @return Object to be serialized in byte array
  6369.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6370.      */
  6371.     public byte[] toByteArray(PortaDelegataSoggettoErogatore portaDelegataSoggettoErogatore,boolean prettyPrint) throws SerializerException {
  6372.         return this.objToXml(PortaDelegataSoggettoErogatore.class, portaDelegataSoggettoErogatore, prettyPrint).toByteArray();
  6373.     }
  6374.    
  6375.     /**
  6376.      * Serialize to String the object <var>portaDelegataSoggettoErogatore</var> of type {@link org.openspcoop2.core.config.PortaDelegataSoggettoErogatore}
  6377.      *
  6378.      * @param portaDelegataSoggettoErogatore Object to be serialized
  6379.      * @return Object to be serialized as String
  6380.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6381.      */
  6382.     public String toString(PortaDelegataSoggettoErogatore portaDelegataSoggettoErogatore) throws SerializerException {
  6383.         return this.objToXml(PortaDelegataSoggettoErogatore.class, portaDelegataSoggettoErogatore, false).toString();
  6384.     }
  6385.     /**
  6386.      * Serialize to String the object <var>portaDelegataSoggettoErogatore</var> of type {@link org.openspcoop2.core.config.PortaDelegataSoggettoErogatore}
  6387.      *
  6388.      * @param portaDelegataSoggettoErogatore Object to be serialized
  6389.      * @param prettyPrint if true output the XML with indenting
  6390.      * @return Object to be serialized as String
  6391.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6392.      */
  6393.     public String toString(PortaDelegataSoggettoErogatore portaDelegataSoggettoErogatore,boolean prettyPrint) throws SerializerException {
  6394.         return this.objToXml(PortaDelegataSoggettoErogatore.class, portaDelegataSoggettoErogatore, prettyPrint).toString();
  6395.     }
  6396.    
  6397.    
  6398.    
  6399.     /*
  6400.      =================================================================================
  6401.      Object: porta-applicativa-servizio-applicativo-connettore
  6402.      =================================================================================
  6403.     */
  6404.    
  6405.     /**
  6406.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativaServizioApplicativoConnettore</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizioApplicativoConnettore}
  6407.      *
  6408.      * @param fileName Xml file to serialize the object <var>portaApplicativaServizioApplicativoConnettore</var>
  6409.      * @param portaApplicativaServizioApplicativoConnettore Object to be serialized in xml file <var>fileName</var>
  6410.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6411.      */
  6412.     public void write(String fileName,PortaApplicativaServizioApplicativoConnettore portaApplicativaServizioApplicativoConnettore) throws SerializerException {
  6413.         this.objToXml(fileName, PortaApplicativaServizioApplicativoConnettore.class, portaApplicativaServizioApplicativoConnettore, false);
  6414.     }
  6415.     /**
  6416.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativaServizioApplicativoConnettore</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizioApplicativoConnettore}
  6417.      *
  6418.      * @param fileName Xml file to serialize the object <var>portaApplicativaServizioApplicativoConnettore</var>
  6419.      * @param portaApplicativaServizioApplicativoConnettore Object to be serialized in xml file <var>fileName</var>
  6420.      * @param prettyPrint if true output the XML with indenting
  6421.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6422.      */
  6423.     public void write(String fileName,PortaApplicativaServizioApplicativoConnettore portaApplicativaServizioApplicativoConnettore,boolean prettyPrint) throws SerializerException {
  6424.         this.objToXml(fileName, PortaApplicativaServizioApplicativoConnettore.class, portaApplicativaServizioApplicativoConnettore, prettyPrint);
  6425.     }
  6426.    
  6427.     /**
  6428.      * Serialize to file system in <var>file</var> the object <var>portaApplicativaServizioApplicativoConnettore</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizioApplicativoConnettore}
  6429.      *
  6430.      * @param file Xml file to serialize the object <var>portaApplicativaServizioApplicativoConnettore</var>
  6431.      * @param portaApplicativaServizioApplicativoConnettore Object to be serialized in xml file <var>fileName</var>
  6432.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6433.      */
  6434.     public void write(File file,PortaApplicativaServizioApplicativoConnettore portaApplicativaServizioApplicativoConnettore) throws SerializerException {
  6435.         this.objToXml(file, PortaApplicativaServizioApplicativoConnettore.class, portaApplicativaServizioApplicativoConnettore, false);
  6436.     }
  6437.     /**
  6438.      * Serialize to file system in <var>file</var> the object <var>portaApplicativaServizioApplicativoConnettore</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizioApplicativoConnettore}
  6439.      *
  6440.      * @param file Xml file to serialize the object <var>portaApplicativaServizioApplicativoConnettore</var>
  6441.      * @param portaApplicativaServizioApplicativoConnettore Object to be serialized in xml file <var>fileName</var>
  6442.      * @param prettyPrint if true output the XML with indenting
  6443.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6444.      */
  6445.     public void write(File file,PortaApplicativaServizioApplicativoConnettore portaApplicativaServizioApplicativoConnettore,boolean prettyPrint) throws SerializerException {
  6446.         this.objToXml(file, PortaApplicativaServizioApplicativoConnettore.class, portaApplicativaServizioApplicativoConnettore, prettyPrint);
  6447.     }
  6448.    
  6449.     /**
  6450.      * Serialize to output stream <var>out</var> the object <var>portaApplicativaServizioApplicativoConnettore</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizioApplicativoConnettore}
  6451.      *
  6452.      * @param out OutputStream to serialize the object <var>portaApplicativaServizioApplicativoConnettore</var>
  6453.      * @param portaApplicativaServizioApplicativoConnettore Object to be serialized in xml file <var>fileName</var>
  6454.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6455.      */
  6456.     public void write(OutputStream out,PortaApplicativaServizioApplicativoConnettore portaApplicativaServizioApplicativoConnettore) throws SerializerException {
  6457.         this.objToXml(out, PortaApplicativaServizioApplicativoConnettore.class, portaApplicativaServizioApplicativoConnettore, false);
  6458.     }
  6459.     /**
  6460.      * Serialize to output stream <var>out</var> the object <var>portaApplicativaServizioApplicativoConnettore</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizioApplicativoConnettore}
  6461.      *
  6462.      * @param out OutputStream to serialize the object <var>portaApplicativaServizioApplicativoConnettore</var>
  6463.      * @param portaApplicativaServizioApplicativoConnettore Object to be serialized in xml file <var>fileName</var>
  6464.      * @param prettyPrint if true output the XML with indenting
  6465.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6466.      */
  6467.     public void write(OutputStream out,PortaApplicativaServizioApplicativoConnettore portaApplicativaServizioApplicativoConnettore,boolean prettyPrint) throws SerializerException {
  6468.         this.objToXml(out, PortaApplicativaServizioApplicativoConnettore.class, portaApplicativaServizioApplicativoConnettore, prettyPrint);
  6469.     }
  6470.            
  6471.     /**
  6472.      * Serialize to byte array the object <var>portaApplicativaServizioApplicativoConnettore</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizioApplicativoConnettore}
  6473.      *
  6474.      * @param portaApplicativaServizioApplicativoConnettore Object to be serialized
  6475.      * @return Object to be serialized in byte array
  6476.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6477.      */
  6478.     public byte[] toByteArray(PortaApplicativaServizioApplicativoConnettore portaApplicativaServizioApplicativoConnettore) throws SerializerException {
  6479.         return this.objToXml(PortaApplicativaServizioApplicativoConnettore.class, portaApplicativaServizioApplicativoConnettore, false).toByteArray();
  6480.     }
  6481.     /**
  6482.      * Serialize to byte array the object <var>portaApplicativaServizioApplicativoConnettore</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizioApplicativoConnettore}
  6483.      *
  6484.      * @param portaApplicativaServizioApplicativoConnettore Object to be serialized
  6485.      * @param prettyPrint if true output the XML with indenting
  6486.      * @return Object to be serialized in byte array
  6487.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6488.      */
  6489.     public byte[] toByteArray(PortaApplicativaServizioApplicativoConnettore portaApplicativaServizioApplicativoConnettore,boolean prettyPrint) throws SerializerException {
  6490.         return this.objToXml(PortaApplicativaServizioApplicativoConnettore.class, portaApplicativaServizioApplicativoConnettore, prettyPrint).toByteArray();
  6491.     }
  6492.    
  6493.     /**
  6494.      * Serialize to String the object <var>portaApplicativaServizioApplicativoConnettore</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizioApplicativoConnettore}
  6495.      *
  6496.      * @param portaApplicativaServizioApplicativoConnettore Object to be serialized
  6497.      * @return Object to be serialized as String
  6498.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6499.      */
  6500.     public String toString(PortaApplicativaServizioApplicativoConnettore portaApplicativaServizioApplicativoConnettore) throws SerializerException {
  6501.         return this.objToXml(PortaApplicativaServizioApplicativoConnettore.class, portaApplicativaServizioApplicativoConnettore, false).toString();
  6502.     }
  6503.     /**
  6504.      * Serialize to String the object <var>portaApplicativaServizioApplicativoConnettore</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizioApplicativoConnettore}
  6505.      *
  6506.      * @param portaApplicativaServizioApplicativoConnettore Object to be serialized
  6507.      * @param prettyPrint if true output the XML with indenting
  6508.      * @return Object to be serialized as String
  6509.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6510.      */
  6511.     public String toString(PortaApplicativaServizioApplicativoConnettore portaApplicativaServizioApplicativoConnettore,boolean prettyPrint) throws SerializerException {
  6512.         return this.objToXml(PortaApplicativaServizioApplicativoConnettore.class, portaApplicativaServizioApplicativoConnettore, prettyPrint).toString();
  6513.     }
  6514.    
  6515.    
  6516.    
  6517.     /*
  6518.      =================================================================================
  6519.      Object: proprieta-oggetto
  6520.      =================================================================================
  6521.     */
  6522.    
  6523.     /**
  6524.      * Serialize to file system in <var>fileName</var> the object <var>proprietaOggetto</var> of type {@link org.openspcoop2.core.config.ProprietaOggetto}
  6525.      *
  6526.      * @param fileName Xml file to serialize the object <var>proprietaOggetto</var>
  6527.      * @param proprietaOggetto Object to be serialized in xml file <var>fileName</var>
  6528.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6529.      */
  6530.     public void write(String fileName,ProprietaOggetto proprietaOggetto) throws SerializerException {
  6531.         this.objToXml(fileName, ProprietaOggetto.class, proprietaOggetto, false);
  6532.     }
  6533.     /**
  6534.      * Serialize to file system in <var>fileName</var> the object <var>proprietaOggetto</var> of type {@link org.openspcoop2.core.config.ProprietaOggetto}
  6535.      *
  6536.      * @param fileName Xml file to serialize the object <var>proprietaOggetto</var>
  6537.      * @param proprietaOggetto Object to be serialized in xml file <var>fileName</var>
  6538.      * @param prettyPrint if true output the XML with indenting
  6539.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6540.      */
  6541.     public void write(String fileName,ProprietaOggetto proprietaOggetto,boolean prettyPrint) throws SerializerException {
  6542.         this.objToXml(fileName, ProprietaOggetto.class, proprietaOggetto, prettyPrint);
  6543.     }
  6544.    
  6545.     /**
  6546.      * Serialize to file system in <var>file</var> the object <var>proprietaOggetto</var> of type {@link org.openspcoop2.core.config.ProprietaOggetto}
  6547.      *
  6548.      * @param file Xml file to serialize the object <var>proprietaOggetto</var>
  6549.      * @param proprietaOggetto Object to be serialized in xml file <var>fileName</var>
  6550.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6551.      */
  6552.     public void write(File file,ProprietaOggetto proprietaOggetto) throws SerializerException {
  6553.         this.objToXml(file, ProprietaOggetto.class, proprietaOggetto, false);
  6554.     }
  6555.     /**
  6556.      * Serialize to file system in <var>file</var> the object <var>proprietaOggetto</var> of type {@link org.openspcoop2.core.config.ProprietaOggetto}
  6557.      *
  6558.      * @param file Xml file to serialize the object <var>proprietaOggetto</var>
  6559.      * @param proprietaOggetto Object to be serialized in xml file <var>fileName</var>
  6560.      * @param prettyPrint if true output the XML with indenting
  6561.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6562.      */
  6563.     public void write(File file,ProprietaOggetto proprietaOggetto,boolean prettyPrint) throws SerializerException {
  6564.         this.objToXml(file, ProprietaOggetto.class, proprietaOggetto, prettyPrint);
  6565.     }
  6566.    
  6567.     /**
  6568.      * Serialize to output stream <var>out</var> the object <var>proprietaOggetto</var> of type {@link org.openspcoop2.core.config.ProprietaOggetto}
  6569.      *
  6570.      * @param out OutputStream to serialize the object <var>proprietaOggetto</var>
  6571.      * @param proprietaOggetto Object to be serialized in xml file <var>fileName</var>
  6572.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6573.      */
  6574.     public void write(OutputStream out,ProprietaOggetto proprietaOggetto) throws SerializerException {
  6575.         this.objToXml(out, ProprietaOggetto.class, proprietaOggetto, false);
  6576.     }
  6577.     /**
  6578.      * Serialize to output stream <var>out</var> the object <var>proprietaOggetto</var> of type {@link org.openspcoop2.core.config.ProprietaOggetto}
  6579.      *
  6580.      * @param out OutputStream to serialize the object <var>proprietaOggetto</var>
  6581.      * @param proprietaOggetto Object to be serialized in xml file <var>fileName</var>
  6582.      * @param prettyPrint if true output the XML with indenting
  6583.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6584.      */
  6585.     public void write(OutputStream out,ProprietaOggetto proprietaOggetto,boolean prettyPrint) throws SerializerException {
  6586.         this.objToXml(out, ProprietaOggetto.class, proprietaOggetto, prettyPrint);
  6587.     }
  6588.            
  6589.     /**
  6590.      * Serialize to byte array the object <var>proprietaOggetto</var> of type {@link org.openspcoop2.core.config.ProprietaOggetto}
  6591.      *
  6592.      * @param proprietaOggetto Object to be serialized
  6593.      * @return Object to be serialized in byte array
  6594.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6595.      */
  6596.     public byte[] toByteArray(ProprietaOggetto proprietaOggetto) throws SerializerException {
  6597.         return this.objToXml(ProprietaOggetto.class, proprietaOggetto, false).toByteArray();
  6598.     }
  6599.     /**
  6600.      * Serialize to byte array the object <var>proprietaOggetto</var> of type {@link org.openspcoop2.core.config.ProprietaOggetto}
  6601.      *
  6602.      * @param proprietaOggetto Object to be serialized
  6603.      * @param prettyPrint if true output the XML with indenting
  6604.      * @return Object to be serialized in byte array
  6605.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6606.      */
  6607.     public byte[] toByteArray(ProprietaOggetto proprietaOggetto,boolean prettyPrint) throws SerializerException {
  6608.         return this.objToXml(ProprietaOggetto.class, proprietaOggetto, prettyPrint).toByteArray();
  6609.     }
  6610.    
  6611.     /**
  6612.      * Serialize to String the object <var>proprietaOggetto</var> of type {@link org.openspcoop2.core.config.ProprietaOggetto}
  6613.      *
  6614.      * @param proprietaOggetto Object to be serialized
  6615.      * @return Object to be serialized as String
  6616.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6617.      */
  6618.     public String toString(ProprietaOggetto proprietaOggetto) throws SerializerException {
  6619.         return this.objToXml(ProprietaOggetto.class, proprietaOggetto, false).toString();
  6620.     }
  6621.     /**
  6622.      * Serialize to String the object <var>proprietaOggetto</var> of type {@link org.openspcoop2.core.config.ProprietaOggetto}
  6623.      *
  6624.      * @param proprietaOggetto Object to be serialized
  6625.      * @param prettyPrint if true output the XML with indenting
  6626.      * @return Object to be serialized as String
  6627.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6628.      */
  6629.     public String toString(ProprietaOggetto proprietaOggetto,boolean prettyPrint) throws SerializerException {
  6630.         return this.objToXml(ProprietaOggetto.class, proprietaOggetto, prettyPrint).toString();
  6631.     }
  6632.    
  6633.    
  6634.    
  6635.     /*
  6636.      =================================================================================
  6637.      Object: registro-plugin-archivio
  6638.      =================================================================================
  6639.     */
  6640.    
  6641.     /**
  6642.      * Serialize to file system in <var>fileName</var> the object <var>registroPluginArchivio</var> of type {@link org.openspcoop2.core.config.RegistroPluginArchivio}
  6643.      *
  6644.      * @param fileName Xml file to serialize the object <var>registroPluginArchivio</var>
  6645.      * @param registroPluginArchivio Object to be serialized in xml file <var>fileName</var>
  6646.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6647.      */
  6648.     public void write(String fileName,RegistroPluginArchivio registroPluginArchivio) throws SerializerException {
  6649.         this.objToXml(fileName, RegistroPluginArchivio.class, registroPluginArchivio, false);
  6650.     }
  6651.     /**
  6652.      * Serialize to file system in <var>fileName</var> the object <var>registroPluginArchivio</var> of type {@link org.openspcoop2.core.config.RegistroPluginArchivio}
  6653.      *
  6654.      * @param fileName Xml file to serialize the object <var>registroPluginArchivio</var>
  6655.      * @param registroPluginArchivio Object to be serialized in xml file <var>fileName</var>
  6656.      * @param prettyPrint if true output the XML with indenting
  6657.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6658.      */
  6659.     public void write(String fileName,RegistroPluginArchivio registroPluginArchivio,boolean prettyPrint) throws SerializerException {
  6660.         this.objToXml(fileName, RegistroPluginArchivio.class, registroPluginArchivio, prettyPrint);
  6661.     }
  6662.    
  6663.     /**
  6664.      * Serialize to file system in <var>file</var> the object <var>registroPluginArchivio</var> of type {@link org.openspcoop2.core.config.RegistroPluginArchivio}
  6665.      *
  6666.      * @param file Xml file to serialize the object <var>registroPluginArchivio</var>
  6667.      * @param registroPluginArchivio Object to be serialized in xml file <var>fileName</var>
  6668.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6669.      */
  6670.     public void write(File file,RegistroPluginArchivio registroPluginArchivio) throws SerializerException {
  6671.         this.objToXml(file, RegistroPluginArchivio.class, registroPluginArchivio, false);
  6672.     }
  6673.     /**
  6674.      * Serialize to file system in <var>file</var> the object <var>registroPluginArchivio</var> of type {@link org.openspcoop2.core.config.RegistroPluginArchivio}
  6675.      *
  6676.      * @param file Xml file to serialize the object <var>registroPluginArchivio</var>
  6677.      * @param registroPluginArchivio Object to be serialized in xml file <var>fileName</var>
  6678.      * @param prettyPrint if true output the XML with indenting
  6679.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6680.      */
  6681.     public void write(File file,RegistroPluginArchivio registroPluginArchivio,boolean prettyPrint) throws SerializerException {
  6682.         this.objToXml(file, RegistroPluginArchivio.class, registroPluginArchivio, prettyPrint);
  6683.     }
  6684.    
  6685.     /**
  6686.      * Serialize to output stream <var>out</var> the object <var>registroPluginArchivio</var> of type {@link org.openspcoop2.core.config.RegistroPluginArchivio}
  6687.      *
  6688.      * @param out OutputStream to serialize the object <var>registroPluginArchivio</var>
  6689.      * @param registroPluginArchivio Object to be serialized in xml file <var>fileName</var>
  6690.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6691.      */
  6692.     public void write(OutputStream out,RegistroPluginArchivio registroPluginArchivio) throws SerializerException {
  6693.         this.objToXml(out, RegistroPluginArchivio.class, registroPluginArchivio, false);
  6694.     }
  6695.     /**
  6696.      * Serialize to output stream <var>out</var> the object <var>registroPluginArchivio</var> of type {@link org.openspcoop2.core.config.RegistroPluginArchivio}
  6697.      *
  6698.      * @param out OutputStream to serialize the object <var>registroPluginArchivio</var>
  6699.      * @param registroPluginArchivio Object to be serialized in xml file <var>fileName</var>
  6700.      * @param prettyPrint if true output the XML with indenting
  6701.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6702.      */
  6703.     public void write(OutputStream out,RegistroPluginArchivio registroPluginArchivio,boolean prettyPrint) throws SerializerException {
  6704.         this.objToXml(out, RegistroPluginArchivio.class, registroPluginArchivio, prettyPrint);
  6705.     }
  6706.            
  6707.     /**
  6708.      * Serialize to byte array the object <var>registroPluginArchivio</var> of type {@link org.openspcoop2.core.config.RegistroPluginArchivio}
  6709.      *
  6710.      * @param registroPluginArchivio Object to be serialized
  6711.      * @return Object to be serialized in byte array
  6712.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6713.      */
  6714.     public byte[] toByteArray(RegistroPluginArchivio registroPluginArchivio) throws SerializerException {
  6715.         return this.objToXml(RegistroPluginArchivio.class, registroPluginArchivio, false).toByteArray();
  6716.     }
  6717.     /**
  6718.      * Serialize to byte array the object <var>registroPluginArchivio</var> of type {@link org.openspcoop2.core.config.RegistroPluginArchivio}
  6719.      *
  6720.      * @param registroPluginArchivio Object to be serialized
  6721.      * @param prettyPrint if true output the XML with indenting
  6722.      * @return Object to be serialized in byte array
  6723.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6724.      */
  6725.     public byte[] toByteArray(RegistroPluginArchivio registroPluginArchivio,boolean prettyPrint) throws SerializerException {
  6726.         return this.objToXml(RegistroPluginArchivio.class, registroPluginArchivio, prettyPrint).toByteArray();
  6727.     }
  6728.    
  6729.     /**
  6730.      * Serialize to String the object <var>registroPluginArchivio</var> of type {@link org.openspcoop2.core.config.RegistroPluginArchivio}
  6731.      *
  6732.      * @param registroPluginArchivio Object to be serialized
  6733.      * @return Object to be serialized as String
  6734.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6735.      */
  6736.     public String toString(RegistroPluginArchivio registroPluginArchivio) throws SerializerException {
  6737.         return this.objToXml(RegistroPluginArchivio.class, registroPluginArchivio, false).toString();
  6738.     }
  6739.     /**
  6740.      * Serialize to String the object <var>registroPluginArchivio</var> of type {@link org.openspcoop2.core.config.RegistroPluginArchivio}
  6741.      *
  6742.      * @param registroPluginArchivio Object to be serialized
  6743.      * @param prettyPrint if true output the XML with indenting
  6744.      * @return Object to be serialized as String
  6745.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6746.      */
  6747.     public String toString(RegistroPluginArchivio registroPluginArchivio,boolean prettyPrint) throws SerializerException {
  6748.         return this.objToXml(RegistroPluginArchivio.class, registroPluginArchivio, prettyPrint).toString();
  6749.     }
  6750.    
  6751.    
  6752.    
  6753.     /*
  6754.      =================================================================================
  6755.      Object: id-porta-delegata
  6756.      =================================================================================
  6757.     */
  6758.    
  6759.     /**
  6760.      * Serialize to file system in <var>fileName</var> the object <var>idPortaDelegata</var> of type {@link org.openspcoop2.core.config.IdPortaDelegata}
  6761.      *
  6762.      * @param fileName Xml file to serialize the object <var>idPortaDelegata</var>
  6763.      * @param idPortaDelegata Object to be serialized in xml file <var>fileName</var>
  6764.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6765.      */
  6766.     public void write(String fileName,IdPortaDelegata idPortaDelegata) throws SerializerException {
  6767.         this.objToXml(fileName, IdPortaDelegata.class, idPortaDelegata, false);
  6768.     }
  6769.     /**
  6770.      * Serialize to file system in <var>fileName</var> the object <var>idPortaDelegata</var> of type {@link org.openspcoop2.core.config.IdPortaDelegata}
  6771.      *
  6772.      * @param fileName Xml file to serialize the object <var>idPortaDelegata</var>
  6773.      * @param idPortaDelegata Object to be serialized in xml file <var>fileName</var>
  6774.      * @param prettyPrint if true output the XML with indenting
  6775.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6776.      */
  6777.     public void write(String fileName,IdPortaDelegata idPortaDelegata,boolean prettyPrint) throws SerializerException {
  6778.         this.objToXml(fileName, IdPortaDelegata.class, idPortaDelegata, prettyPrint);
  6779.     }
  6780.    
  6781.     /**
  6782.      * Serialize to file system in <var>file</var> the object <var>idPortaDelegata</var> of type {@link org.openspcoop2.core.config.IdPortaDelegata}
  6783.      *
  6784.      * @param file Xml file to serialize the object <var>idPortaDelegata</var>
  6785.      * @param idPortaDelegata Object to be serialized in xml file <var>fileName</var>
  6786.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6787.      */
  6788.     public void write(File file,IdPortaDelegata idPortaDelegata) throws SerializerException {
  6789.         this.objToXml(file, IdPortaDelegata.class, idPortaDelegata, false);
  6790.     }
  6791.     /**
  6792.      * Serialize to file system in <var>file</var> the object <var>idPortaDelegata</var> of type {@link org.openspcoop2.core.config.IdPortaDelegata}
  6793.      *
  6794.      * @param file Xml file to serialize the object <var>idPortaDelegata</var>
  6795.      * @param idPortaDelegata Object to be serialized in xml file <var>fileName</var>
  6796.      * @param prettyPrint if true output the XML with indenting
  6797.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6798.      */
  6799.     public void write(File file,IdPortaDelegata idPortaDelegata,boolean prettyPrint) throws SerializerException {
  6800.         this.objToXml(file, IdPortaDelegata.class, idPortaDelegata, prettyPrint);
  6801.     }
  6802.    
  6803.     /**
  6804.      * Serialize to output stream <var>out</var> the object <var>idPortaDelegata</var> of type {@link org.openspcoop2.core.config.IdPortaDelegata}
  6805.      *
  6806.      * @param out OutputStream to serialize the object <var>idPortaDelegata</var>
  6807.      * @param idPortaDelegata Object to be serialized in xml file <var>fileName</var>
  6808.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6809.      */
  6810.     public void write(OutputStream out,IdPortaDelegata idPortaDelegata) throws SerializerException {
  6811.         this.objToXml(out, IdPortaDelegata.class, idPortaDelegata, false);
  6812.     }
  6813.     /**
  6814.      * Serialize to output stream <var>out</var> the object <var>idPortaDelegata</var> of type {@link org.openspcoop2.core.config.IdPortaDelegata}
  6815.      *
  6816.      * @param out OutputStream to serialize the object <var>idPortaDelegata</var>
  6817.      * @param idPortaDelegata Object to be serialized in xml file <var>fileName</var>
  6818.      * @param prettyPrint if true output the XML with indenting
  6819.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6820.      */
  6821.     public void write(OutputStream out,IdPortaDelegata idPortaDelegata,boolean prettyPrint) throws SerializerException {
  6822.         this.objToXml(out, IdPortaDelegata.class, idPortaDelegata, prettyPrint);
  6823.     }
  6824.            
  6825.     /**
  6826.      * Serialize to byte array the object <var>idPortaDelegata</var> of type {@link org.openspcoop2.core.config.IdPortaDelegata}
  6827.      *
  6828.      * @param idPortaDelegata Object to be serialized
  6829.      * @return Object to be serialized in byte array
  6830.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6831.      */
  6832.     public byte[] toByteArray(IdPortaDelegata idPortaDelegata) throws SerializerException {
  6833.         return this.objToXml(IdPortaDelegata.class, idPortaDelegata, false).toByteArray();
  6834.     }
  6835.     /**
  6836.      * Serialize to byte array the object <var>idPortaDelegata</var> of type {@link org.openspcoop2.core.config.IdPortaDelegata}
  6837.      *
  6838.      * @param idPortaDelegata Object to be serialized
  6839.      * @param prettyPrint if true output the XML with indenting
  6840.      * @return Object to be serialized in byte array
  6841.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6842.      */
  6843.     public byte[] toByteArray(IdPortaDelegata idPortaDelegata,boolean prettyPrint) throws SerializerException {
  6844.         return this.objToXml(IdPortaDelegata.class, idPortaDelegata, prettyPrint).toByteArray();
  6845.     }
  6846.    
  6847.     /**
  6848.      * Serialize to String the object <var>idPortaDelegata</var> of type {@link org.openspcoop2.core.config.IdPortaDelegata}
  6849.      *
  6850.      * @param idPortaDelegata Object to be serialized
  6851.      * @return Object to be serialized as String
  6852.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6853.      */
  6854.     public String toString(IdPortaDelegata idPortaDelegata) throws SerializerException {
  6855.         return this.objToXml(IdPortaDelegata.class, idPortaDelegata, false).toString();
  6856.     }
  6857.     /**
  6858.      * Serialize to String the object <var>idPortaDelegata</var> of type {@link org.openspcoop2.core.config.IdPortaDelegata}
  6859.      *
  6860.      * @param idPortaDelegata Object to be serialized
  6861.      * @param prettyPrint if true output the XML with indenting
  6862.      * @return Object to be serialized as String
  6863.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6864.      */
  6865.     public String toString(IdPortaDelegata idPortaDelegata,boolean prettyPrint) throws SerializerException {
  6866.         return this.objToXml(IdPortaDelegata.class, idPortaDelegata, prettyPrint).toString();
  6867.     }
  6868.    
  6869.    
  6870.    
  6871.     /*
  6872.      =================================================================================
  6873.      Object: porta-delegata-servizio
  6874.      =================================================================================
  6875.     */
  6876.    
  6877.     /**
  6878.      * Serialize to file system in <var>fileName</var> the object <var>portaDelegataServizio</var> of type {@link org.openspcoop2.core.config.PortaDelegataServizio}
  6879.      *
  6880.      * @param fileName Xml file to serialize the object <var>portaDelegataServizio</var>
  6881.      * @param portaDelegataServizio Object to be serialized in xml file <var>fileName</var>
  6882.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6883.      */
  6884.     public void write(String fileName,PortaDelegataServizio portaDelegataServizio) throws SerializerException {
  6885.         this.objToXml(fileName, PortaDelegataServizio.class, portaDelegataServizio, false);
  6886.     }
  6887.     /**
  6888.      * Serialize to file system in <var>fileName</var> the object <var>portaDelegataServizio</var> of type {@link org.openspcoop2.core.config.PortaDelegataServizio}
  6889.      *
  6890.      * @param fileName Xml file to serialize the object <var>portaDelegataServizio</var>
  6891.      * @param portaDelegataServizio Object to be serialized in xml file <var>fileName</var>
  6892.      * @param prettyPrint if true output the XML with indenting
  6893.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6894.      */
  6895.     public void write(String fileName,PortaDelegataServizio portaDelegataServizio,boolean prettyPrint) throws SerializerException {
  6896.         this.objToXml(fileName, PortaDelegataServizio.class, portaDelegataServizio, prettyPrint);
  6897.     }
  6898.    
  6899.     /**
  6900.      * Serialize to file system in <var>file</var> the object <var>portaDelegataServizio</var> of type {@link org.openspcoop2.core.config.PortaDelegataServizio}
  6901.      *
  6902.      * @param file Xml file to serialize the object <var>portaDelegataServizio</var>
  6903.      * @param portaDelegataServizio Object to be serialized in xml file <var>fileName</var>
  6904.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6905.      */
  6906.     public void write(File file,PortaDelegataServizio portaDelegataServizio) throws SerializerException {
  6907.         this.objToXml(file, PortaDelegataServizio.class, portaDelegataServizio, false);
  6908.     }
  6909.     /**
  6910.      * Serialize to file system in <var>file</var> the object <var>portaDelegataServizio</var> of type {@link org.openspcoop2.core.config.PortaDelegataServizio}
  6911.      *
  6912.      * @param file Xml file to serialize the object <var>portaDelegataServizio</var>
  6913.      * @param portaDelegataServizio Object to be serialized in xml file <var>fileName</var>
  6914.      * @param prettyPrint if true output the XML with indenting
  6915.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6916.      */
  6917.     public void write(File file,PortaDelegataServizio portaDelegataServizio,boolean prettyPrint) throws SerializerException {
  6918.         this.objToXml(file, PortaDelegataServizio.class, portaDelegataServizio, prettyPrint);
  6919.     }
  6920.    
  6921.     /**
  6922.      * Serialize to output stream <var>out</var> the object <var>portaDelegataServizio</var> of type {@link org.openspcoop2.core.config.PortaDelegataServizio}
  6923.      *
  6924.      * @param out OutputStream to serialize the object <var>portaDelegataServizio</var>
  6925.      * @param portaDelegataServizio Object to be serialized in xml file <var>fileName</var>
  6926.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6927.      */
  6928.     public void write(OutputStream out,PortaDelegataServizio portaDelegataServizio) throws SerializerException {
  6929.         this.objToXml(out, PortaDelegataServizio.class, portaDelegataServizio, false);
  6930.     }
  6931.     /**
  6932.      * Serialize to output stream <var>out</var> the object <var>portaDelegataServizio</var> of type {@link org.openspcoop2.core.config.PortaDelegataServizio}
  6933.      *
  6934.      * @param out OutputStream to serialize the object <var>portaDelegataServizio</var>
  6935.      * @param portaDelegataServizio Object to be serialized in xml file <var>fileName</var>
  6936.      * @param prettyPrint if true output the XML with indenting
  6937.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6938.      */
  6939.     public void write(OutputStream out,PortaDelegataServizio portaDelegataServizio,boolean prettyPrint) throws SerializerException {
  6940.         this.objToXml(out, PortaDelegataServizio.class, portaDelegataServizio, prettyPrint);
  6941.     }
  6942.            
  6943.     /**
  6944.      * Serialize to byte array the object <var>portaDelegataServizio</var> of type {@link org.openspcoop2.core.config.PortaDelegataServizio}
  6945.      *
  6946.      * @param portaDelegataServizio Object to be serialized
  6947.      * @return Object to be serialized in byte array
  6948.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6949.      */
  6950.     public byte[] toByteArray(PortaDelegataServizio portaDelegataServizio) throws SerializerException {
  6951.         return this.objToXml(PortaDelegataServizio.class, portaDelegataServizio, false).toByteArray();
  6952.     }
  6953.     /**
  6954.      * Serialize to byte array the object <var>portaDelegataServizio</var> of type {@link org.openspcoop2.core.config.PortaDelegataServizio}
  6955.      *
  6956.      * @param portaDelegataServizio Object to be serialized
  6957.      * @param prettyPrint if true output the XML with indenting
  6958.      * @return Object to be serialized in byte array
  6959.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6960.      */
  6961.     public byte[] toByteArray(PortaDelegataServizio portaDelegataServizio,boolean prettyPrint) throws SerializerException {
  6962.         return this.objToXml(PortaDelegataServizio.class, portaDelegataServizio, prettyPrint).toByteArray();
  6963.     }
  6964.    
  6965.     /**
  6966.      * Serialize to String the object <var>portaDelegataServizio</var> of type {@link org.openspcoop2.core.config.PortaDelegataServizio}
  6967.      *
  6968.      * @param portaDelegataServizio Object to be serialized
  6969.      * @return Object to be serialized as String
  6970.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6971.      */
  6972.     public String toString(PortaDelegataServizio portaDelegataServizio) throws SerializerException {
  6973.         return this.objToXml(PortaDelegataServizio.class, portaDelegataServizio, false).toString();
  6974.     }
  6975.     /**
  6976.      * Serialize to String the object <var>portaDelegataServizio</var> of type {@link org.openspcoop2.core.config.PortaDelegataServizio}
  6977.      *
  6978.      * @param portaDelegataServizio Object to be serialized
  6979.      * @param prettyPrint if true output the XML with indenting
  6980.      * @return Object to be serialized as String
  6981.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6982.      */
  6983.     public String toString(PortaDelegataServizio portaDelegataServizio,boolean prettyPrint) throws SerializerException {
  6984.         return this.objToXml(PortaDelegataServizio.class, portaDelegataServizio, prettyPrint).toString();
  6985.     }
  6986.    
  6987.    
  6988.    
  6989.     /*
  6990.      =================================================================================
  6991.      Object: porta-delegata-azione
  6992.      =================================================================================
  6993.     */
  6994.    
  6995.     /**
  6996.      * Serialize to file system in <var>fileName</var> the object <var>portaDelegataAzione</var> of type {@link org.openspcoop2.core.config.PortaDelegataAzione}
  6997.      *
  6998.      * @param fileName Xml file to serialize the object <var>portaDelegataAzione</var>
  6999.      * @param portaDelegataAzione Object to be serialized in xml file <var>fileName</var>
  7000.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7001.      */
  7002.     public void write(String fileName,PortaDelegataAzione portaDelegataAzione) throws SerializerException {
  7003.         this.objToXml(fileName, PortaDelegataAzione.class, portaDelegataAzione, false);
  7004.     }
  7005.     /**
  7006.      * Serialize to file system in <var>fileName</var> the object <var>portaDelegataAzione</var> of type {@link org.openspcoop2.core.config.PortaDelegataAzione}
  7007.      *
  7008.      * @param fileName Xml file to serialize the object <var>portaDelegataAzione</var>
  7009.      * @param portaDelegataAzione Object to be serialized in xml file <var>fileName</var>
  7010.      * @param prettyPrint if true output the XML with indenting
  7011.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7012.      */
  7013.     public void write(String fileName,PortaDelegataAzione portaDelegataAzione,boolean prettyPrint) throws SerializerException {
  7014.         this.objToXml(fileName, PortaDelegataAzione.class, portaDelegataAzione, prettyPrint);
  7015.     }
  7016.    
  7017.     /**
  7018.      * Serialize to file system in <var>file</var> the object <var>portaDelegataAzione</var> of type {@link org.openspcoop2.core.config.PortaDelegataAzione}
  7019.      *
  7020.      * @param file Xml file to serialize the object <var>portaDelegataAzione</var>
  7021.      * @param portaDelegataAzione Object to be serialized in xml file <var>fileName</var>
  7022.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7023.      */
  7024.     public void write(File file,PortaDelegataAzione portaDelegataAzione) throws SerializerException {
  7025.         this.objToXml(file, PortaDelegataAzione.class, portaDelegataAzione, false);
  7026.     }
  7027.     /**
  7028.      * Serialize to file system in <var>file</var> the object <var>portaDelegataAzione</var> of type {@link org.openspcoop2.core.config.PortaDelegataAzione}
  7029.      *
  7030.      * @param file Xml file to serialize the object <var>portaDelegataAzione</var>
  7031.      * @param portaDelegataAzione Object to be serialized in xml file <var>fileName</var>
  7032.      * @param prettyPrint if true output the XML with indenting
  7033.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7034.      */
  7035.     public void write(File file,PortaDelegataAzione portaDelegataAzione,boolean prettyPrint) throws SerializerException {
  7036.         this.objToXml(file, PortaDelegataAzione.class, portaDelegataAzione, prettyPrint);
  7037.     }
  7038.    
  7039.     /**
  7040.      * Serialize to output stream <var>out</var> the object <var>portaDelegataAzione</var> of type {@link org.openspcoop2.core.config.PortaDelegataAzione}
  7041.      *
  7042.      * @param out OutputStream to serialize the object <var>portaDelegataAzione</var>
  7043.      * @param portaDelegataAzione Object to be serialized in xml file <var>fileName</var>
  7044.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7045.      */
  7046.     public void write(OutputStream out,PortaDelegataAzione portaDelegataAzione) throws SerializerException {
  7047.         this.objToXml(out, PortaDelegataAzione.class, portaDelegataAzione, false);
  7048.     }
  7049.     /**
  7050.      * Serialize to output stream <var>out</var> the object <var>portaDelegataAzione</var> of type {@link org.openspcoop2.core.config.PortaDelegataAzione}
  7051.      *
  7052.      * @param out OutputStream to serialize the object <var>portaDelegataAzione</var>
  7053.      * @param portaDelegataAzione Object to be serialized in xml file <var>fileName</var>
  7054.      * @param prettyPrint if true output the XML with indenting
  7055.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7056.      */
  7057.     public void write(OutputStream out,PortaDelegataAzione portaDelegataAzione,boolean prettyPrint) throws SerializerException {
  7058.         this.objToXml(out, PortaDelegataAzione.class, portaDelegataAzione, prettyPrint);
  7059.     }
  7060.            
  7061.     /**
  7062.      * Serialize to byte array the object <var>portaDelegataAzione</var> of type {@link org.openspcoop2.core.config.PortaDelegataAzione}
  7063.      *
  7064.      * @param portaDelegataAzione Object to be serialized
  7065.      * @return Object to be serialized in byte array
  7066.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7067.      */
  7068.     public byte[] toByteArray(PortaDelegataAzione portaDelegataAzione) throws SerializerException {
  7069.         return this.objToXml(PortaDelegataAzione.class, portaDelegataAzione, false).toByteArray();
  7070.     }
  7071.     /**
  7072.      * Serialize to byte array the object <var>portaDelegataAzione</var> of type {@link org.openspcoop2.core.config.PortaDelegataAzione}
  7073.      *
  7074.      * @param portaDelegataAzione Object to be serialized
  7075.      * @param prettyPrint if true output the XML with indenting
  7076.      * @return Object to be serialized in byte array
  7077.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7078.      */
  7079.     public byte[] toByteArray(PortaDelegataAzione portaDelegataAzione,boolean prettyPrint) throws SerializerException {
  7080.         return this.objToXml(PortaDelegataAzione.class, portaDelegataAzione, prettyPrint).toByteArray();
  7081.     }
  7082.    
  7083.     /**
  7084.      * Serialize to String the object <var>portaDelegataAzione</var> of type {@link org.openspcoop2.core.config.PortaDelegataAzione}
  7085.      *
  7086.      * @param portaDelegataAzione Object to be serialized
  7087.      * @return Object to be serialized as String
  7088.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7089.      */
  7090.     public String toString(PortaDelegataAzione portaDelegataAzione) throws SerializerException {
  7091.         return this.objToXml(PortaDelegataAzione.class, portaDelegataAzione, false).toString();
  7092.     }
  7093.     /**
  7094.      * Serialize to String the object <var>portaDelegataAzione</var> of type {@link org.openspcoop2.core.config.PortaDelegataAzione}
  7095.      *
  7096.      * @param portaDelegataAzione Object to be serialized
  7097.      * @param prettyPrint if true output the XML with indenting
  7098.      * @return Object to be serialized as String
  7099.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7100.      */
  7101.     public String toString(PortaDelegataAzione portaDelegataAzione,boolean prettyPrint) throws SerializerException {
  7102.         return this.objToXml(PortaDelegataAzione.class, portaDelegataAzione, prettyPrint).toString();
  7103.     }
  7104.    
  7105.    
  7106.    
  7107.     /*
  7108.      =================================================================================
  7109.      Object: porta-delegata-servizio-applicativo
  7110.      =================================================================================
  7111.     */
  7112.    
  7113.     /**
  7114.      * Serialize to file system in <var>fileName</var> the object <var>portaDelegataServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaDelegataServizioApplicativo}
  7115.      *
  7116.      * @param fileName Xml file to serialize the object <var>portaDelegataServizioApplicativo</var>
  7117.      * @param portaDelegataServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  7118.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7119.      */
  7120.     public void write(String fileName,PortaDelegataServizioApplicativo portaDelegataServizioApplicativo) throws SerializerException {
  7121.         this.objToXml(fileName, PortaDelegataServizioApplicativo.class, portaDelegataServizioApplicativo, false);
  7122.     }
  7123.     /**
  7124.      * Serialize to file system in <var>fileName</var> the object <var>portaDelegataServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaDelegataServizioApplicativo}
  7125.      *
  7126.      * @param fileName Xml file to serialize the object <var>portaDelegataServizioApplicativo</var>
  7127.      * @param portaDelegataServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  7128.      * @param prettyPrint if true output the XML with indenting
  7129.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7130.      */
  7131.     public void write(String fileName,PortaDelegataServizioApplicativo portaDelegataServizioApplicativo,boolean prettyPrint) throws SerializerException {
  7132.         this.objToXml(fileName, PortaDelegataServizioApplicativo.class, portaDelegataServizioApplicativo, prettyPrint);
  7133.     }
  7134.    
  7135.     /**
  7136.      * Serialize to file system in <var>file</var> the object <var>portaDelegataServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaDelegataServizioApplicativo}
  7137.      *
  7138.      * @param file Xml file to serialize the object <var>portaDelegataServizioApplicativo</var>
  7139.      * @param portaDelegataServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  7140.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7141.      */
  7142.     public void write(File file,PortaDelegataServizioApplicativo portaDelegataServizioApplicativo) throws SerializerException {
  7143.         this.objToXml(file, PortaDelegataServizioApplicativo.class, portaDelegataServizioApplicativo, false);
  7144.     }
  7145.     /**
  7146.      * Serialize to file system in <var>file</var> the object <var>portaDelegataServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaDelegataServizioApplicativo}
  7147.      *
  7148.      * @param file Xml file to serialize the object <var>portaDelegataServizioApplicativo</var>
  7149.      * @param portaDelegataServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  7150.      * @param prettyPrint if true output the XML with indenting
  7151.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7152.      */
  7153.     public void write(File file,PortaDelegataServizioApplicativo portaDelegataServizioApplicativo,boolean prettyPrint) throws SerializerException {
  7154.         this.objToXml(file, PortaDelegataServizioApplicativo.class, portaDelegataServizioApplicativo, prettyPrint);
  7155.     }
  7156.    
  7157.     /**
  7158.      * Serialize to output stream <var>out</var> the object <var>portaDelegataServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaDelegataServizioApplicativo}
  7159.      *
  7160.      * @param out OutputStream to serialize the object <var>portaDelegataServizioApplicativo</var>
  7161.      * @param portaDelegataServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  7162.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7163.      */
  7164.     public void write(OutputStream out,PortaDelegataServizioApplicativo portaDelegataServizioApplicativo) throws SerializerException {
  7165.         this.objToXml(out, PortaDelegataServizioApplicativo.class, portaDelegataServizioApplicativo, false);
  7166.     }
  7167.     /**
  7168.      * Serialize to output stream <var>out</var> the object <var>portaDelegataServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaDelegataServizioApplicativo}
  7169.      *
  7170.      * @param out OutputStream to serialize the object <var>portaDelegataServizioApplicativo</var>
  7171.      * @param portaDelegataServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  7172.      * @param prettyPrint if true output the XML with indenting
  7173.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7174.      */
  7175.     public void write(OutputStream out,PortaDelegataServizioApplicativo portaDelegataServizioApplicativo,boolean prettyPrint) throws SerializerException {
  7176.         this.objToXml(out, PortaDelegataServizioApplicativo.class, portaDelegataServizioApplicativo, prettyPrint);
  7177.     }
  7178.            
  7179.     /**
  7180.      * Serialize to byte array the object <var>portaDelegataServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaDelegataServizioApplicativo}
  7181.      *
  7182.      * @param portaDelegataServizioApplicativo Object to be serialized
  7183.      * @return Object to be serialized in byte array
  7184.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7185.      */
  7186.     public byte[] toByteArray(PortaDelegataServizioApplicativo portaDelegataServizioApplicativo) throws SerializerException {
  7187.         return this.objToXml(PortaDelegataServizioApplicativo.class, portaDelegataServizioApplicativo, false).toByteArray();
  7188.     }
  7189.     /**
  7190.      * Serialize to byte array the object <var>portaDelegataServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaDelegataServizioApplicativo}
  7191.      *
  7192.      * @param portaDelegataServizioApplicativo Object to be serialized
  7193.      * @param prettyPrint if true output the XML with indenting
  7194.      * @return Object to be serialized in byte array
  7195.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7196.      */
  7197.     public byte[] toByteArray(PortaDelegataServizioApplicativo portaDelegataServizioApplicativo,boolean prettyPrint) throws SerializerException {
  7198.         return this.objToXml(PortaDelegataServizioApplicativo.class, portaDelegataServizioApplicativo, prettyPrint).toByteArray();
  7199.     }
  7200.    
  7201.     /**
  7202.      * Serialize to String the object <var>portaDelegataServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaDelegataServizioApplicativo}
  7203.      *
  7204.      * @param portaDelegataServizioApplicativo Object to be serialized
  7205.      * @return Object to be serialized as String
  7206.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7207.      */
  7208.     public String toString(PortaDelegataServizioApplicativo portaDelegataServizioApplicativo) throws SerializerException {
  7209.         return this.objToXml(PortaDelegataServizioApplicativo.class, portaDelegataServizioApplicativo, false).toString();
  7210.     }
  7211.     /**
  7212.      * Serialize to String the object <var>portaDelegataServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaDelegataServizioApplicativo}
  7213.      *
  7214.      * @param portaDelegataServizioApplicativo Object to be serialized
  7215.      * @param prettyPrint if true output the XML with indenting
  7216.      * @return Object to be serialized as String
  7217.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7218.      */
  7219.     public String toString(PortaDelegataServizioApplicativo portaDelegataServizioApplicativo,boolean prettyPrint) throws SerializerException {
  7220.         return this.objToXml(PortaDelegataServizioApplicativo.class, portaDelegataServizioApplicativo, prettyPrint).toString();
  7221.     }
  7222.    
  7223.    
  7224.    
  7225.     /*
  7226.      =================================================================================
  7227.      Object: autorizzazione-scope
  7228.      =================================================================================
  7229.     */
  7230.    
  7231.     /**
  7232.      * Serialize to file system in <var>fileName</var> the object <var>autorizzazioneScope</var> of type {@link org.openspcoop2.core.config.AutorizzazioneScope}
  7233.      *
  7234.      * @param fileName Xml file to serialize the object <var>autorizzazioneScope</var>
  7235.      * @param autorizzazioneScope Object to be serialized in xml file <var>fileName</var>
  7236.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7237.      */
  7238.     public void write(String fileName,AutorizzazioneScope autorizzazioneScope) throws SerializerException {
  7239.         this.objToXml(fileName, AutorizzazioneScope.class, autorizzazioneScope, false);
  7240.     }
  7241.     /**
  7242.      * Serialize to file system in <var>fileName</var> the object <var>autorizzazioneScope</var> of type {@link org.openspcoop2.core.config.AutorizzazioneScope}
  7243.      *
  7244.      * @param fileName Xml file to serialize the object <var>autorizzazioneScope</var>
  7245.      * @param autorizzazioneScope Object to be serialized in xml file <var>fileName</var>
  7246.      * @param prettyPrint if true output the XML with indenting
  7247.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7248.      */
  7249.     public void write(String fileName,AutorizzazioneScope autorizzazioneScope,boolean prettyPrint) throws SerializerException {
  7250.         this.objToXml(fileName, AutorizzazioneScope.class, autorizzazioneScope, prettyPrint);
  7251.     }
  7252.    
  7253.     /**
  7254.      * Serialize to file system in <var>file</var> the object <var>autorizzazioneScope</var> of type {@link org.openspcoop2.core.config.AutorizzazioneScope}
  7255.      *
  7256.      * @param file Xml file to serialize the object <var>autorizzazioneScope</var>
  7257.      * @param autorizzazioneScope Object to be serialized in xml file <var>fileName</var>
  7258.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7259.      */
  7260.     public void write(File file,AutorizzazioneScope autorizzazioneScope) throws SerializerException {
  7261.         this.objToXml(file, AutorizzazioneScope.class, autorizzazioneScope, false);
  7262.     }
  7263.     /**
  7264.      * Serialize to file system in <var>file</var> the object <var>autorizzazioneScope</var> of type {@link org.openspcoop2.core.config.AutorizzazioneScope}
  7265.      *
  7266.      * @param file Xml file to serialize the object <var>autorizzazioneScope</var>
  7267.      * @param autorizzazioneScope Object to be serialized in xml file <var>fileName</var>
  7268.      * @param prettyPrint if true output the XML with indenting
  7269.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7270.      */
  7271.     public void write(File file,AutorizzazioneScope autorizzazioneScope,boolean prettyPrint) throws SerializerException {
  7272.         this.objToXml(file, AutorizzazioneScope.class, autorizzazioneScope, prettyPrint);
  7273.     }
  7274.    
  7275.     /**
  7276.      * Serialize to output stream <var>out</var> the object <var>autorizzazioneScope</var> of type {@link org.openspcoop2.core.config.AutorizzazioneScope}
  7277.      *
  7278.      * @param out OutputStream to serialize the object <var>autorizzazioneScope</var>
  7279.      * @param autorizzazioneScope Object to be serialized in xml file <var>fileName</var>
  7280.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7281.      */
  7282.     public void write(OutputStream out,AutorizzazioneScope autorizzazioneScope) throws SerializerException {
  7283.         this.objToXml(out, AutorizzazioneScope.class, autorizzazioneScope, false);
  7284.     }
  7285.     /**
  7286.      * Serialize to output stream <var>out</var> the object <var>autorizzazioneScope</var> of type {@link org.openspcoop2.core.config.AutorizzazioneScope}
  7287.      *
  7288.      * @param out OutputStream to serialize the object <var>autorizzazioneScope</var>
  7289.      * @param autorizzazioneScope Object to be serialized in xml file <var>fileName</var>
  7290.      * @param prettyPrint if true output the XML with indenting
  7291.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7292.      */
  7293.     public void write(OutputStream out,AutorizzazioneScope autorizzazioneScope,boolean prettyPrint) throws SerializerException {
  7294.         this.objToXml(out, AutorizzazioneScope.class, autorizzazioneScope, prettyPrint);
  7295.     }
  7296.            
  7297.     /**
  7298.      * Serialize to byte array the object <var>autorizzazioneScope</var> of type {@link org.openspcoop2.core.config.AutorizzazioneScope}
  7299.      *
  7300.      * @param autorizzazioneScope Object to be serialized
  7301.      * @return Object to be serialized in byte array
  7302.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7303.      */
  7304.     public byte[] toByteArray(AutorizzazioneScope autorizzazioneScope) throws SerializerException {
  7305.         return this.objToXml(AutorizzazioneScope.class, autorizzazioneScope, false).toByteArray();
  7306.     }
  7307.     /**
  7308.      * Serialize to byte array the object <var>autorizzazioneScope</var> of type {@link org.openspcoop2.core.config.AutorizzazioneScope}
  7309.      *
  7310.      * @param autorizzazioneScope Object to be serialized
  7311.      * @param prettyPrint if true output the XML with indenting
  7312.      * @return Object to be serialized in byte array
  7313.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7314.      */
  7315.     public byte[] toByteArray(AutorizzazioneScope autorizzazioneScope,boolean prettyPrint) throws SerializerException {
  7316.         return this.objToXml(AutorizzazioneScope.class, autorizzazioneScope, prettyPrint).toByteArray();
  7317.     }
  7318.    
  7319.     /**
  7320.      * Serialize to String the object <var>autorizzazioneScope</var> of type {@link org.openspcoop2.core.config.AutorizzazioneScope}
  7321.      *
  7322.      * @param autorizzazioneScope Object to be serialized
  7323.      * @return Object to be serialized as String
  7324.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7325.      */
  7326.     public String toString(AutorizzazioneScope autorizzazioneScope) throws SerializerException {
  7327.         return this.objToXml(AutorizzazioneScope.class, autorizzazioneScope, false).toString();
  7328.     }
  7329.     /**
  7330.      * Serialize to String the object <var>autorizzazioneScope</var> of type {@link org.openspcoop2.core.config.AutorizzazioneScope}
  7331.      *
  7332.      * @param autorizzazioneScope Object to be serialized
  7333.      * @param prettyPrint if true output the XML with indenting
  7334.      * @return Object to be serialized as String
  7335.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7336.      */
  7337.     public String toString(AutorizzazioneScope autorizzazioneScope,boolean prettyPrint) throws SerializerException {
  7338.         return this.objToXml(AutorizzazioneScope.class, autorizzazioneScope, prettyPrint).toString();
  7339.     }
  7340.    
  7341.    
  7342.    
  7343.     /*
  7344.      =================================================================================
  7345.      Object: porta-delegata-local-forward
  7346.      =================================================================================
  7347.     */
  7348.    
  7349.     /**
  7350.      * Serialize to file system in <var>fileName</var> the object <var>portaDelegataLocalForward</var> of type {@link org.openspcoop2.core.config.PortaDelegataLocalForward}
  7351.      *
  7352.      * @param fileName Xml file to serialize the object <var>portaDelegataLocalForward</var>
  7353.      * @param portaDelegataLocalForward Object to be serialized in xml file <var>fileName</var>
  7354.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7355.      */
  7356.     public void write(String fileName,PortaDelegataLocalForward portaDelegataLocalForward) throws SerializerException {
  7357.         this.objToXml(fileName, PortaDelegataLocalForward.class, portaDelegataLocalForward, false);
  7358.     }
  7359.     /**
  7360.      * Serialize to file system in <var>fileName</var> the object <var>portaDelegataLocalForward</var> of type {@link org.openspcoop2.core.config.PortaDelegataLocalForward}
  7361.      *
  7362.      * @param fileName Xml file to serialize the object <var>portaDelegataLocalForward</var>
  7363.      * @param portaDelegataLocalForward Object to be serialized in xml file <var>fileName</var>
  7364.      * @param prettyPrint if true output the XML with indenting
  7365.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7366.      */
  7367.     public void write(String fileName,PortaDelegataLocalForward portaDelegataLocalForward,boolean prettyPrint) throws SerializerException {
  7368.         this.objToXml(fileName, PortaDelegataLocalForward.class, portaDelegataLocalForward, prettyPrint);
  7369.     }
  7370.    
  7371.     /**
  7372.      * Serialize to file system in <var>file</var> the object <var>portaDelegataLocalForward</var> of type {@link org.openspcoop2.core.config.PortaDelegataLocalForward}
  7373.      *
  7374.      * @param file Xml file to serialize the object <var>portaDelegataLocalForward</var>
  7375.      * @param portaDelegataLocalForward Object to be serialized in xml file <var>fileName</var>
  7376.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7377.      */
  7378.     public void write(File file,PortaDelegataLocalForward portaDelegataLocalForward) throws SerializerException {
  7379.         this.objToXml(file, PortaDelegataLocalForward.class, portaDelegataLocalForward, false);
  7380.     }
  7381.     /**
  7382.      * Serialize to file system in <var>file</var> the object <var>portaDelegataLocalForward</var> of type {@link org.openspcoop2.core.config.PortaDelegataLocalForward}
  7383.      *
  7384.      * @param file Xml file to serialize the object <var>portaDelegataLocalForward</var>
  7385.      * @param portaDelegataLocalForward Object to be serialized in xml file <var>fileName</var>
  7386.      * @param prettyPrint if true output the XML with indenting
  7387.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7388.      */
  7389.     public void write(File file,PortaDelegataLocalForward portaDelegataLocalForward,boolean prettyPrint) throws SerializerException {
  7390.         this.objToXml(file, PortaDelegataLocalForward.class, portaDelegataLocalForward, prettyPrint);
  7391.     }
  7392.    
  7393.     /**
  7394.      * Serialize to output stream <var>out</var> the object <var>portaDelegataLocalForward</var> of type {@link org.openspcoop2.core.config.PortaDelegataLocalForward}
  7395.      *
  7396.      * @param out OutputStream to serialize the object <var>portaDelegataLocalForward</var>
  7397.      * @param portaDelegataLocalForward Object to be serialized in xml file <var>fileName</var>
  7398.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7399.      */
  7400.     public void write(OutputStream out,PortaDelegataLocalForward portaDelegataLocalForward) throws SerializerException {
  7401.         this.objToXml(out, PortaDelegataLocalForward.class, portaDelegataLocalForward, false);
  7402.     }
  7403.     /**
  7404.      * Serialize to output stream <var>out</var> the object <var>portaDelegataLocalForward</var> of type {@link org.openspcoop2.core.config.PortaDelegataLocalForward}
  7405.      *
  7406.      * @param out OutputStream to serialize the object <var>portaDelegataLocalForward</var>
  7407.      * @param portaDelegataLocalForward Object to be serialized in xml file <var>fileName</var>
  7408.      * @param prettyPrint if true output the XML with indenting
  7409.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7410.      */
  7411.     public void write(OutputStream out,PortaDelegataLocalForward portaDelegataLocalForward,boolean prettyPrint) throws SerializerException {
  7412.         this.objToXml(out, PortaDelegataLocalForward.class, portaDelegataLocalForward, prettyPrint);
  7413.     }
  7414.            
  7415.     /**
  7416.      * Serialize to byte array the object <var>portaDelegataLocalForward</var> of type {@link org.openspcoop2.core.config.PortaDelegataLocalForward}
  7417.      *
  7418.      * @param portaDelegataLocalForward Object to be serialized
  7419.      * @return Object to be serialized in byte array
  7420.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7421.      */
  7422.     public byte[] toByteArray(PortaDelegataLocalForward portaDelegataLocalForward) throws SerializerException {
  7423.         return this.objToXml(PortaDelegataLocalForward.class, portaDelegataLocalForward, false).toByteArray();
  7424.     }
  7425.     /**
  7426.      * Serialize to byte array the object <var>portaDelegataLocalForward</var> of type {@link org.openspcoop2.core.config.PortaDelegataLocalForward}
  7427.      *
  7428.      * @param portaDelegataLocalForward Object to be serialized
  7429.      * @param prettyPrint if true output the XML with indenting
  7430.      * @return Object to be serialized in byte array
  7431.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7432.      */
  7433.     public byte[] toByteArray(PortaDelegataLocalForward portaDelegataLocalForward,boolean prettyPrint) throws SerializerException {
  7434.         return this.objToXml(PortaDelegataLocalForward.class, portaDelegataLocalForward, prettyPrint).toByteArray();
  7435.     }
  7436.    
  7437.     /**
  7438.      * Serialize to String the object <var>portaDelegataLocalForward</var> of type {@link org.openspcoop2.core.config.PortaDelegataLocalForward}
  7439.      *
  7440.      * @param portaDelegataLocalForward Object to be serialized
  7441.      * @return Object to be serialized as String
  7442.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7443.      */
  7444.     public String toString(PortaDelegataLocalForward portaDelegataLocalForward) throws SerializerException {
  7445.         return this.objToXml(PortaDelegataLocalForward.class, portaDelegataLocalForward, false).toString();
  7446.     }
  7447.     /**
  7448.      * Serialize to String the object <var>portaDelegataLocalForward</var> of type {@link org.openspcoop2.core.config.PortaDelegataLocalForward}
  7449.      *
  7450.      * @param portaDelegataLocalForward Object to be serialized
  7451.      * @param prettyPrint if true output the XML with indenting
  7452.      * @return Object to be serialized as String
  7453.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7454.      */
  7455.     public String toString(PortaDelegataLocalForward portaDelegataLocalForward,boolean prettyPrint) throws SerializerException {
  7456.         return this.objToXml(PortaDelegataLocalForward.class, portaDelegataLocalForward, prettyPrint).toString();
  7457.     }
  7458.    
  7459.    
  7460.    
  7461.     /*
  7462.      =================================================================================
  7463.      Object: message-security
  7464.      =================================================================================
  7465.     */
  7466.    
  7467.     /**
  7468.      * Serialize to file system in <var>fileName</var> the object <var>messageSecurity</var> of type {@link org.openspcoop2.core.config.MessageSecurity}
  7469.      *
  7470.      * @param fileName Xml file to serialize the object <var>messageSecurity</var>
  7471.      * @param messageSecurity Object to be serialized in xml file <var>fileName</var>
  7472.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7473.      */
  7474.     public void write(String fileName,MessageSecurity messageSecurity) throws SerializerException {
  7475.         this.objToXml(fileName, MessageSecurity.class, messageSecurity, false);
  7476.     }
  7477.     /**
  7478.      * Serialize to file system in <var>fileName</var> the object <var>messageSecurity</var> of type {@link org.openspcoop2.core.config.MessageSecurity}
  7479.      *
  7480.      * @param fileName Xml file to serialize the object <var>messageSecurity</var>
  7481.      * @param messageSecurity Object to be serialized in xml file <var>fileName</var>
  7482.      * @param prettyPrint if true output the XML with indenting
  7483.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7484.      */
  7485.     public void write(String fileName,MessageSecurity messageSecurity,boolean prettyPrint) throws SerializerException {
  7486.         this.objToXml(fileName, MessageSecurity.class, messageSecurity, prettyPrint);
  7487.     }
  7488.    
  7489.     /**
  7490.      * Serialize to file system in <var>file</var> the object <var>messageSecurity</var> of type {@link org.openspcoop2.core.config.MessageSecurity}
  7491.      *
  7492.      * @param file Xml file to serialize the object <var>messageSecurity</var>
  7493.      * @param messageSecurity Object to be serialized in xml file <var>fileName</var>
  7494.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7495.      */
  7496.     public void write(File file,MessageSecurity messageSecurity) throws SerializerException {
  7497.         this.objToXml(file, MessageSecurity.class, messageSecurity, false);
  7498.     }
  7499.     /**
  7500.      * Serialize to file system in <var>file</var> the object <var>messageSecurity</var> of type {@link org.openspcoop2.core.config.MessageSecurity}
  7501.      *
  7502.      * @param file Xml file to serialize the object <var>messageSecurity</var>
  7503.      * @param messageSecurity Object to be serialized in xml file <var>fileName</var>
  7504.      * @param prettyPrint if true output the XML with indenting
  7505.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7506.      */
  7507.     public void write(File file,MessageSecurity messageSecurity,boolean prettyPrint) throws SerializerException {
  7508.         this.objToXml(file, MessageSecurity.class, messageSecurity, prettyPrint);
  7509.     }
  7510.    
  7511.     /**
  7512.      * Serialize to output stream <var>out</var> the object <var>messageSecurity</var> of type {@link org.openspcoop2.core.config.MessageSecurity}
  7513.      *
  7514.      * @param out OutputStream to serialize the object <var>messageSecurity</var>
  7515.      * @param messageSecurity Object to be serialized in xml file <var>fileName</var>
  7516.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7517.      */
  7518.     public void write(OutputStream out,MessageSecurity messageSecurity) throws SerializerException {
  7519.         this.objToXml(out, MessageSecurity.class, messageSecurity, false);
  7520.     }
  7521.     /**
  7522.      * Serialize to output stream <var>out</var> the object <var>messageSecurity</var> of type {@link org.openspcoop2.core.config.MessageSecurity}
  7523.      *
  7524.      * @param out OutputStream to serialize the object <var>messageSecurity</var>
  7525.      * @param messageSecurity Object to be serialized in xml file <var>fileName</var>
  7526.      * @param prettyPrint if true output the XML with indenting
  7527.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7528.      */
  7529.     public void write(OutputStream out,MessageSecurity messageSecurity,boolean prettyPrint) throws SerializerException {
  7530.         this.objToXml(out, MessageSecurity.class, messageSecurity, prettyPrint);
  7531.     }
  7532.            
  7533.     /**
  7534.      * Serialize to byte array the object <var>messageSecurity</var> of type {@link org.openspcoop2.core.config.MessageSecurity}
  7535.      *
  7536.      * @param messageSecurity Object to be serialized
  7537.      * @return Object to be serialized in byte array
  7538.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7539.      */
  7540.     public byte[] toByteArray(MessageSecurity messageSecurity) throws SerializerException {
  7541.         return this.objToXml(MessageSecurity.class, messageSecurity, false).toByteArray();
  7542.     }
  7543.     /**
  7544.      * Serialize to byte array the object <var>messageSecurity</var> of type {@link org.openspcoop2.core.config.MessageSecurity}
  7545.      *
  7546.      * @param messageSecurity Object to be serialized
  7547.      * @param prettyPrint if true output the XML with indenting
  7548.      * @return Object to be serialized in byte array
  7549.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7550.      */
  7551.     public byte[] toByteArray(MessageSecurity messageSecurity,boolean prettyPrint) throws SerializerException {
  7552.         return this.objToXml(MessageSecurity.class, messageSecurity, prettyPrint).toByteArray();
  7553.     }
  7554.    
  7555.     /**
  7556.      * Serialize to String the object <var>messageSecurity</var> of type {@link org.openspcoop2.core.config.MessageSecurity}
  7557.      *
  7558.      * @param messageSecurity Object to be serialized
  7559.      * @return Object to be serialized as String
  7560.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7561.      */
  7562.     public String toString(MessageSecurity messageSecurity) throws SerializerException {
  7563.         return this.objToXml(MessageSecurity.class, messageSecurity, false).toString();
  7564.     }
  7565.     /**
  7566.      * Serialize to String the object <var>messageSecurity</var> of type {@link org.openspcoop2.core.config.MessageSecurity}
  7567.      *
  7568.      * @param messageSecurity Object to be serialized
  7569.      * @param prettyPrint if true output the XML with indenting
  7570.      * @return Object to be serialized as String
  7571.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7572.      */
  7573.     public String toString(MessageSecurity messageSecurity,boolean prettyPrint) throws SerializerException {
  7574.         return this.objToXml(MessageSecurity.class, messageSecurity, prettyPrint).toString();
  7575.     }
  7576.    
  7577.    
  7578.    
  7579.     /*
  7580.      =================================================================================
  7581.      Object: validazione-contenuti-applicativi
  7582.      =================================================================================
  7583.     */
  7584.    
  7585.     /**
  7586.      * Serialize to file system in <var>fileName</var> the object <var>validazioneContenutiApplicativi</var> of type {@link org.openspcoop2.core.config.ValidazioneContenutiApplicativi}
  7587.      *
  7588.      * @param fileName Xml file to serialize the object <var>validazioneContenutiApplicativi</var>
  7589.      * @param validazioneContenutiApplicativi Object to be serialized in xml file <var>fileName</var>
  7590.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7591.      */
  7592.     public void write(String fileName,ValidazioneContenutiApplicativi validazioneContenutiApplicativi) throws SerializerException {
  7593.         this.objToXml(fileName, ValidazioneContenutiApplicativi.class, validazioneContenutiApplicativi, false);
  7594.     }
  7595.     /**
  7596.      * Serialize to file system in <var>fileName</var> the object <var>validazioneContenutiApplicativi</var> of type {@link org.openspcoop2.core.config.ValidazioneContenutiApplicativi}
  7597.      *
  7598.      * @param fileName Xml file to serialize the object <var>validazioneContenutiApplicativi</var>
  7599.      * @param validazioneContenutiApplicativi Object to be serialized in xml file <var>fileName</var>
  7600.      * @param prettyPrint if true output the XML with indenting
  7601.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7602.      */
  7603.     public void write(String fileName,ValidazioneContenutiApplicativi validazioneContenutiApplicativi,boolean prettyPrint) throws SerializerException {
  7604.         this.objToXml(fileName, ValidazioneContenutiApplicativi.class, validazioneContenutiApplicativi, prettyPrint);
  7605.     }
  7606.    
  7607.     /**
  7608.      * Serialize to file system in <var>file</var> the object <var>validazioneContenutiApplicativi</var> of type {@link org.openspcoop2.core.config.ValidazioneContenutiApplicativi}
  7609.      *
  7610.      * @param file Xml file to serialize the object <var>validazioneContenutiApplicativi</var>
  7611.      * @param validazioneContenutiApplicativi Object to be serialized in xml file <var>fileName</var>
  7612.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7613.      */
  7614.     public void write(File file,ValidazioneContenutiApplicativi validazioneContenutiApplicativi) throws SerializerException {
  7615.         this.objToXml(file, ValidazioneContenutiApplicativi.class, validazioneContenutiApplicativi, false);
  7616.     }
  7617.     /**
  7618.      * Serialize to file system in <var>file</var> the object <var>validazioneContenutiApplicativi</var> of type {@link org.openspcoop2.core.config.ValidazioneContenutiApplicativi}
  7619.      *
  7620.      * @param file Xml file to serialize the object <var>validazioneContenutiApplicativi</var>
  7621.      * @param validazioneContenutiApplicativi Object to be serialized in xml file <var>fileName</var>
  7622.      * @param prettyPrint if true output the XML with indenting
  7623.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7624.      */
  7625.     public void write(File file,ValidazioneContenutiApplicativi validazioneContenutiApplicativi,boolean prettyPrint) throws SerializerException {
  7626.         this.objToXml(file, ValidazioneContenutiApplicativi.class, validazioneContenutiApplicativi, prettyPrint);
  7627.     }
  7628.    
  7629.     /**
  7630.      * Serialize to output stream <var>out</var> the object <var>validazioneContenutiApplicativi</var> of type {@link org.openspcoop2.core.config.ValidazioneContenutiApplicativi}
  7631.      *
  7632.      * @param out OutputStream to serialize the object <var>validazioneContenutiApplicativi</var>
  7633.      * @param validazioneContenutiApplicativi Object to be serialized in xml file <var>fileName</var>
  7634.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7635.      */
  7636.     public void write(OutputStream out,ValidazioneContenutiApplicativi validazioneContenutiApplicativi) throws SerializerException {
  7637.         this.objToXml(out, ValidazioneContenutiApplicativi.class, validazioneContenutiApplicativi, false);
  7638.     }
  7639.     /**
  7640.      * Serialize to output stream <var>out</var> the object <var>validazioneContenutiApplicativi</var> of type {@link org.openspcoop2.core.config.ValidazioneContenutiApplicativi}
  7641.      *
  7642.      * @param out OutputStream to serialize the object <var>validazioneContenutiApplicativi</var>
  7643.      * @param validazioneContenutiApplicativi Object to be serialized in xml file <var>fileName</var>
  7644.      * @param prettyPrint if true output the XML with indenting
  7645.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7646.      */
  7647.     public void write(OutputStream out,ValidazioneContenutiApplicativi validazioneContenutiApplicativi,boolean prettyPrint) throws SerializerException {
  7648.         this.objToXml(out, ValidazioneContenutiApplicativi.class, validazioneContenutiApplicativi, prettyPrint);
  7649.     }
  7650.            
  7651.     /**
  7652.      * Serialize to byte array the object <var>validazioneContenutiApplicativi</var> of type {@link org.openspcoop2.core.config.ValidazioneContenutiApplicativi}
  7653.      *
  7654.      * @param validazioneContenutiApplicativi Object to be serialized
  7655.      * @return Object to be serialized in byte array
  7656.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7657.      */
  7658.     public byte[] toByteArray(ValidazioneContenutiApplicativi validazioneContenutiApplicativi) throws SerializerException {
  7659.         return this.objToXml(ValidazioneContenutiApplicativi.class, validazioneContenutiApplicativi, false).toByteArray();
  7660.     }
  7661.     /**
  7662.      * Serialize to byte array the object <var>validazioneContenutiApplicativi</var> of type {@link org.openspcoop2.core.config.ValidazioneContenutiApplicativi}
  7663.      *
  7664.      * @param validazioneContenutiApplicativi Object to be serialized
  7665.      * @param prettyPrint if true output the XML with indenting
  7666.      * @return Object to be serialized in byte array
  7667.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7668.      */
  7669.     public byte[] toByteArray(ValidazioneContenutiApplicativi validazioneContenutiApplicativi,boolean prettyPrint) throws SerializerException {
  7670.         return this.objToXml(ValidazioneContenutiApplicativi.class, validazioneContenutiApplicativi, prettyPrint).toByteArray();
  7671.     }
  7672.    
  7673.     /**
  7674.      * Serialize to String the object <var>validazioneContenutiApplicativi</var> of type {@link org.openspcoop2.core.config.ValidazioneContenutiApplicativi}
  7675.      *
  7676.      * @param validazioneContenutiApplicativi Object to be serialized
  7677.      * @return Object to be serialized as String
  7678.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7679.      */
  7680.     public String toString(ValidazioneContenutiApplicativi validazioneContenutiApplicativi) throws SerializerException {
  7681.         return this.objToXml(ValidazioneContenutiApplicativi.class, validazioneContenutiApplicativi, false).toString();
  7682.     }
  7683.     /**
  7684.      * Serialize to String the object <var>validazioneContenutiApplicativi</var> of type {@link org.openspcoop2.core.config.ValidazioneContenutiApplicativi}
  7685.      *
  7686.      * @param validazioneContenutiApplicativi Object to be serialized
  7687.      * @param prettyPrint if true output the XML with indenting
  7688.      * @return Object to be serialized as String
  7689.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7690.      */
  7691.     public String toString(ValidazioneContenutiApplicativi validazioneContenutiApplicativi,boolean prettyPrint) throws SerializerException {
  7692.         return this.objToXml(ValidazioneContenutiApplicativi.class, validazioneContenutiApplicativi, prettyPrint).toString();
  7693.     }
  7694.    
  7695.    
  7696.    
  7697.     /*
  7698.      =================================================================================
  7699.      Object: correlazione-applicativa
  7700.      =================================================================================
  7701.     */
  7702.    
  7703.     /**
  7704.      * Serialize to file system in <var>fileName</var> the object <var>correlazioneApplicativa</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativa}
  7705.      *
  7706.      * @param fileName Xml file to serialize the object <var>correlazioneApplicativa</var>
  7707.      * @param correlazioneApplicativa Object to be serialized in xml file <var>fileName</var>
  7708.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7709.      */
  7710.     public void write(String fileName,CorrelazioneApplicativa correlazioneApplicativa) throws SerializerException {
  7711.         this.objToXml(fileName, CorrelazioneApplicativa.class, correlazioneApplicativa, false);
  7712.     }
  7713.     /**
  7714.      * Serialize to file system in <var>fileName</var> the object <var>correlazioneApplicativa</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativa}
  7715.      *
  7716.      * @param fileName Xml file to serialize the object <var>correlazioneApplicativa</var>
  7717.      * @param correlazioneApplicativa Object to be serialized in xml file <var>fileName</var>
  7718.      * @param prettyPrint if true output the XML with indenting
  7719.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7720.      */
  7721.     public void write(String fileName,CorrelazioneApplicativa correlazioneApplicativa,boolean prettyPrint) throws SerializerException {
  7722.         this.objToXml(fileName, CorrelazioneApplicativa.class, correlazioneApplicativa, prettyPrint);
  7723.     }
  7724.    
  7725.     /**
  7726.      * Serialize to file system in <var>file</var> the object <var>correlazioneApplicativa</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativa}
  7727.      *
  7728.      * @param file Xml file to serialize the object <var>correlazioneApplicativa</var>
  7729.      * @param correlazioneApplicativa Object to be serialized in xml file <var>fileName</var>
  7730.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7731.      */
  7732.     public void write(File file,CorrelazioneApplicativa correlazioneApplicativa) throws SerializerException {
  7733.         this.objToXml(file, CorrelazioneApplicativa.class, correlazioneApplicativa, false);
  7734.     }
  7735.     /**
  7736.      * Serialize to file system in <var>file</var> the object <var>correlazioneApplicativa</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativa}
  7737.      *
  7738.      * @param file Xml file to serialize the object <var>correlazioneApplicativa</var>
  7739.      * @param correlazioneApplicativa Object to be serialized in xml file <var>fileName</var>
  7740.      * @param prettyPrint if true output the XML with indenting
  7741.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7742.      */
  7743.     public void write(File file,CorrelazioneApplicativa correlazioneApplicativa,boolean prettyPrint) throws SerializerException {
  7744.         this.objToXml(file, CorrelazioneApplicativa.class, correlazioneApplicativa, prettyPrint);
  7745.     }
  7746.    
  7747.     /**
  7748.      * Serialize to output stream <var>out</var> the object <var>correlazioneApplicativa</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativa}
  7749.      *
  7750.      * @param out OutputStream to serialize the object <var>correlazioneApplicativa</var>
  7751.      * @param correlazioneApplicativa Object to be serialized in xml file <var>fileName</var>
  7752.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7753.      */
  7754.     public void write(OutputStream out,CorrelazioneApplicativa correlazioneApplicativa) throws SerializerException {
  7755.         this.objToXml(out, CorrelazioneApplicativa.class, correlazioneApplicativa, false);
  7756.     }
  7757.     /**
  7758.      * Serialize to output stream <var>out</var> the object <var>correlazioneApplicativa</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativa}
  7759.      *
  7760.      * @param out OutputStream to serialize the object <var>correlazioneApplicativa</var>
  7761.      * @param correlazioneApplicativa Object to be serialized in xml file <var>fileName</var>
  7762.      * @param prettyPrint if true output the XML with indenting
  7763.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7764.      */
  7765.     public void write(OutputStream out,CorrelazioneApplicativa correlazioneApplicativa,boolean prettyPrint) throws SerializerException {
  7766.         this.objToXml(out, CorrelazioneApplicativa.class, correlazioneApplicativa, prettyPrint);
  7767.     }
  7768.            
  7769.     /**
  7770.      * Serialize to byte array the object <var>correlazioneApplicativa</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativa}
  7771.      *
  7772.      * @param correlazioneApplicativa Object to be serialized
  7773.      * @return Object to be serialized in byte array
  7774.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7775.      */
  7776.     public byte[] toByteArray(CorrelazioneApplicativa correlazioneApplicativa) throws SerializerException {
  7777.         return this.objToXml(CorrelazioneApplicativa.class, correlazioneApplicativa, false).toByteArray();
  7778.     }
  7779.     /**
  7780.      * Serialize to byte array the object <var>correlazioneApplicativa</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativa}
  7781.      *
  7782.      * @param correlazioneApplicativa Object to be serialized
  7783.      * @param prettyPrint if true output the XML with indenting
  7784.      * @return Object to be serialized in byte array
  7785.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7786.      */
  7787.     public byte[] toByteArray(CorrelazioneApplicativa correlazioneApplicativa,boolean prettyPrint) throws SerializerException {
  7788.         return this.objToXml(CorrelazioneApplicativa.class, correlazioneApplicativa, prettyPrint).toByteArray();
  7789.     }
  7790.    
  7791.     /**
  7792.      * Serialize to String the object <var>correlazioneApplicativa</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativa}
  7793.      *
  7794.      * @param correlazioneApplicativa Object to be serialized
  7795.      * @return Object to be serialized as String
  7796.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7797.      */
  7798.     public String toString(CorrelazioneApplicativa correlazioneApplicativa) throws SerializerException {
  7799.         return this.objToXml(CorrelazioneApplicativa.class, correlazioneApplicativa, false).toString();
  7800.     }
  7801.     /**
  7802.      * Serialize to String the object <var>correlazioneApplicativa</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativa}
  7803.      *
  7804.      * @param correlazioneApplicativa Object to be serialized
  7805.      * @param prettyPrint if true output the XML with indenting
  7806.      * @return Object to be serialized as String
  7807.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7808.      */
  7809.     public String toString(CorrelazioneApplicativa correlazioneApplicativa,boolean prettyPrint) throws SerializerException {
  7810.         return this.objToXml(CorrelazioneApplicativa.class, correlazioneApplicativa, prettyPrint).toString();
  7811.     }
  7812.    
  7813.    
  7814.    
  7815.     /*
  7816.      =================================================================================
  7817.      Object: correlazione-applicativa-risposta
  7818.      =================================================================================
  7819.     */
  7820.    
  7821.     /**
  7822.      * Serialize to file system in <var>fileName</var> the object <var>correlazioneApplicativaRisposta</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaRisposta}
  7823.      *
  7824.      * @param fileName Xml file to serialize the object <var>correlazioneApplicativaRisposta</var>
  7825.      * @param correlazioneApplicativaRisposta Object to be serialized in xml file <var>fileName</var>
  7826.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7827.      */
  7828.     public void write(String fileName,CorrelazioneApplicativaRisposta correlazioneApplicativaRisposta) throws SerializerException {
  7829.         this.objToXml(fileName, CorrelazioneApplicativaRisposta.class, correlazioneApplicativaRisposta, false);
  7830.     }
  7831.     /**
  7832.      * Serialize to file system in <var>fileName</var> the object <var>correlazioneApplicativaRisposta</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaRisposta}
  7833.      *
  7834.      * @param fileName Xml file to serialize the object <var>correlazioneApplicativaRisposta</var>
  7835.      * @param correlazioneApplicativaRisposta Object to be serialized in xml file <var>fileName</var>
  7836.      * @param prettyPrint if true output the XML with indenting
  7837.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7838.      */
  7839.     public void write(String fileName,CorrelazioneApplicativaRisposta correlazioneApplicativaRisposta,boolean prettyPrint) throws SerializerException {
  7840.         this.objToXml(fileName, CorrelazioneApplicativaRisposta.class, correlazioneApplicativaRisposta, prettyPrint);
  7841.     }
  7842.    
  7843.     /**
  7844.      * Serialize to file system in <var>file</var> the object <var>correlazioneApplicativaRisposta</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaRisposta}
  7845.      *
  7846.      * @param file Xml file to serialize the object <var>correlazioneApplicativaRisposta</var>
  7847.      * @param correlazioneApplicativaRisposta Object to be serialized in xml file <var>fileName</var>
  7848.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7849.      */
  7850.     public void write(File file,CorrelazioneApplicativaRisposta correlazioneApplicativaRisposta) throws SerializerException {
  7851.         this.objToXml(file, CorrelazioneApplicativaRisposta.class, correlazioneApplicativaRisposta, false);
  7852.     }
  7853.     /**
  7854.      * Serialize to file system in <var>file</var> the object <var>correlazioneApplicativaRisposta</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaRisposta}
  7855.      *
  7856.      * @param file Xml file to serialize the object <var>correlazioneApplicativaRisposta</var>
  7857.      * @param correlazioneApplicativaRisposta Object to be serialized in xml file <var>fileName</var>
  7858.      * @param prettyPrint if true output the XML with indenting
  7859.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7860.      */
  7861.     public void write(File file,CorrelazioneApplicativaRisposta correlazioneApplicativaRisposta,boolean prettyPrint) throws SerializerException {
  7862.         this.objToXml(file, CorrelazioneApplicativaRisposta.class, correlazioneApplicativaRisposta, prettyPrint);
  7863.     }
  7864.    
  7865.     /**
  7866.      * Serialize to output stream <var>out</var> the object <var>correlazioneApplicativaRisposta</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaRisposta}
  7867.      *
  7868.      * @param out OutputStream to serialize the object <var>correlazioneApplicativaRisposta</var>
  7869.      * @param correlazioneApplicativaRisposta Object to be serialized in xml file <var>fileName</var>
  7870.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7871.      */
  7872.     public void write(OutputStream out,CorrelazioneApplicativaRisposta correlazioneApplicativaRisposta) throws SerializerException {
  7873.         this.objToXml(out, CorrelazioneApplicativaRisposta.class, correlazioneApplicativaRisposta, false);
  7874.     }
  7875.     /**
  7876.      * Serialize to output stream <var>out</var> the object <var>correlazioneApplicativaRisposta</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaRisposta}
  7877.      *
  7878.      * @param out OutputStream to serialize the object <var>correlazioneApplicativaRisposta</var>
  7879.      * @param correlazioneApplicativaRisposta Object to be serialized in xml file <var>fileName</var>
  7880.      * @param prettyPrint if true output the XML with indenting
  7881.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7882.      */
  7883.     public void write(OutputStream out,CorrelazioneApplicativaRisposta correlazioneApplicativaRisposta,boolean prettyPrint) throws SerializerException {
  7884.         this.objToXml(out, CorrelazioneApplicativaRisposta.class, correlazioneApplicativaRisposta, prettyPrint);
  7885.     }
  7886.            
  7887.     /**
  7888.      * Serialize to byte array the object <var>correlazioneApplicativaRisposta</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaRisposta}
  7889.      *
  7890.      * @param correlazioneApplicativaRisposta Object to be serialized
  7891.      * @return Object to be serialized in byte array
  7892.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7893.      */
  7894.     public byte[] toByteArray(CorrelazioneApplicativaRisposta correlazioneApplicativaRisposta) throws SerializerException {
  7895.         return this.objToXml(CorrelazioneApplicativaRisposta.class, correlazioneApplicativaRisposta, false).toByteArray();
  7896.     }
  7897.     /**
  7898.      * Serialize to byte array the object <var>correlazioneApplicativaRisposta</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaRisposta}
  7899.      *
  7900.      * @param correlazioneApplicativaRisposta Object to be serialized
  7901.      * @param prettyPrint if true output the XML with indenting
  7902.      * @return Object to be serialized in byte array
  7903.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7904.      */
  7905.     public byte[] toByteArray(CorrelazioneApplicativaRisposta correlazioneApplicativaRisposta,boolean prettyPrint) throws SerializerException {
  7906.         return this.objToXml(CorrelazioneApplicativaRisposta.class, correlazioneApplicativaRisposta, prettyPrint).toByteArray();
  7907.     }
  7908.    
  7909.     /**
  7910.      * Serialize to String the object <var>correlazioneApplicativaRisposta</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaRisposta}
  7911.      *
  7912.      * @param correlazioneApplicativaRisposta Object to be serialized
  7913.      * @return Object to be serialized as String
  7914.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7915.      */
  7916.     public String toString(CorrelazioneApplicativaRisposta correlazioneApplicativaRisposta) throws SerializerException {
  7917.         return this.objToXml(CorrelazioneApplicativaRisposta.class, correlazioneApplicativaRisposta, false).toString();
  7918.     }
  7919.     /**
  7920.      * Serialize to String the object <var>correlazioneApplicativaRisposta</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaRisposta}
  7921.      *
  7922.      * @param correlazioneApplicativaRisposta Object to be serialized
  7923.      * @param prettyPrint if true output the XML with indenting
  7924.      * @return Object to be serialized as String
  7925.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7926.      */
  7927.     public String toString(CorrelazioneApplicativaRisposta correlazioneApplicativaRisposta,boolean prettyPrint) throws SerializerException {
  7928.         return this.objToXml(CorrelazioneApplicativaRisposta.class, correlazioneApplicativaRisposta, prettyPrint).toString();
  7929.     }
  7930.    
  7931.    
  7932.    
  7933.     /*
  7934.      =================================================================================
  7935.      Object: dump-configurazione
  7936.      =================================================================================
  7937.     */
  7938.    
  7939.     /**
  7940.      * Serialize to file system in <var>fileName</var> the object <var>dumpConfigurazione</var> of type {@link org.openspcoop2.core.config.DumpConfigurazione}
  7941.      *
  7942.      * @param fileName Xml file to serialize the object <var>dumpConfigurazione</var>
  7943.      * @param dumpConfigurazione Object to be serialized in xml file <var>fileName</var>
  7944.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7945.      */
  7946.     public void write(String fileName,DumpConfigurazione dumpConfigurazione) throws SerializerException {
  7947.         this.objToXml(fileName, DumpConfigurazione.class, dumpConfigurazione, false);
  7948.     }
  7949.     /**
  7950.      * Serialize to file system in <var>fileName</var> the object <var>dumpConfigurazione</var> of type {@link org.openspcoop2.core.config.DumpConfigurazione}
  7951.      *
  7952.      * @param fileName Xml file to serialize the object <var>dumpConfigurazione</var>
  7953.      * @param dumpConfigurazione Object to be serialized in xml file <var>fileName</var>
  7954.      * @param prettyPrint if true output the XML with indenting
  7955.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7956.      */
  7957.     public void write(String fileName,DumpConfigurazione dumpConfigurazione,boolean prettyPrint) throws SerializerException {
  7958.         this.objToXml(fileName, DumpConfigurazione.class, dumpConfigurazione, prettyPrint);
  7959.     }
  7960.    
  7961.     /**
  7962.      * Serialize to file system in <var>file</var> the object <var>dumpConfigurazione</var> of type {@link org.openspcoop2.core.config.DumpConfigurazione}
  7963.      *
  7964.      * @param file Xml file to serialize the object <var>dumpConfigurazione</var>
  7965.      * @param dumpConfigurazione Object to be serialized in xml file <var>fileName</var>
  7966.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7967.      */
  7968.     public void write(File file,DumpConfigurazione dumpConfigurazione) throws SerializerException {
  7969.         this.objToXml(file, DumpConfigurazione.class, dumpConfigurazione, false);
  7970.     }
  7971.     /**
  7972.      * Serialize to file system in <var>file</var> the object <var>dumpConfigurazione</var> of type {@link org.openspcoop2.core.config.DumpConfigurazione}
  7973.      *
  7974.      * @param file Xml file to serialize the object <var>dumpConfigurazione</var>
  7975.      * @param dumpConfigurazione Object to be serialized in xml file <var>fileName</var>
  7976.      * @param prettyPrint if true output the XML with indenting
  7977.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7978.      */
  7979.     public void write(File file,DumpConfigurazione dumpConfigurazione,boolean prettyPrint) throws SerializerException {
  7980.         this.objToXml(file, DumpConfigurazione.class, dumpConfigurazione, prettyPrint);
  7981.     }
  7982.    
  7983.     /**
  7984.      * Serialize to output stream <var>out</var> the object <var>dumpConfigurazione</var> of type {@link org.openspcoop2.core.config.DumpConfigurazione}
  7985.      *
  7986.      * @param out OutputStream to serialize the object <var>dumpConfigurazione</var>
  7987.      * @param dumpConfigurazione Object to be serialized in xml file <var>fileName</var>
  7988.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  7989.      */
  7990.     public void write(OutputStream out,DumpConfigurazione dumpConfigurazione) throws SerializerException {
  7991.         this.objToXml(out, DumpConfigurazione.class, dumpConfigurazione, false);
  7992.     }
  7993.     /**
  7994.      * Serialize to output stream <var>out</var> the object <var>dumpConfigurazione</var> of type {@link org.openspcoop2.core.config.DumpConfigurazione}
  7995.      *
  7996.      * @param out OutputStream to serialize the object <var>dumpConfigurazione</var>
  7997.      * @param dumpConfigurazione Object to be serialized in xml file <var>fileName</var>
  7998.      * @param prettyPrint if true output the XML with indenting
  7999.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8000.      */
  8001.     public void write(OutputStream out,DumpConfigurazione dumpConfigurazione,boolean prettyPrint) throws SerializerException {
  8002.         this.objToXml(out, DumpConfigurazione.class, dumpConfigurazione, prettyPrint);
  8003.     }
  8004.            
  8005.     /**
  8006.      * Serialize to byte array the object <var>dumpConfigurazione</var> of type {@link org.openspcoop2.core.config.DumpConfigurazione}
  8007.      *
  8008.      * @param dumpConfigurazione Object to be serialized
  8009.      * @return Object to be serialized in byte array
  8010.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8011.      */
  8012.     public byte[] toByteArray(DumpConfigurazione dumpConfigurazione) throws SerializerException {
  8013.         return this.objToXml(DumpConfigurazione.class, dumpConfigurazione, false).toByteArray();
  8014.     }
  8015.     /**
  8016.      * Serialize to byte array the object <var>dumpConfigurazione</var> of type {@link org.openspcoop2.core.config.DumpConfigurazione}
  8017.      *
  8018.      * @param dumpConfigurazione Object to be serialized
  8019.      * @param prettyPrint if true output the XML with indenting
  8020.      * @return Object to be serialized in byte array
  8021.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8022.      */
  8023.     public byte[] toByteArray(DumpConfigurazione dumpConfigurazione,boolean prettyPrint) throws SerializerException {
  8024.         return this.objToXml(DumpConfigurazione.class, dumpConfigurazione, prettyPrint).toByteArray();
  8025.     }
  8026.    
  8027.     /**
  8028.      * Serialize to String the object <var>dumpConfigurazione</var> of type {@link org.openspcoop2.core.config.DumpConfigurazione}
  8029.      *
  8030.      * @param dumpConfigurazione Object to be serialized
  8031.      * @return Object to be serialized as String
  8032.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8033.      */
  8034.     public String toString(DumpConfigurazione dumpConfigurazione) throws SerializerException {
  8035.         return this.objToXml(DumpConfigurazione.class, dumpConfigurazione, false).toString();
  8036.     }
  8037.     /**
  8038.      * Serialize to String the object <var>dumpConfigurazione</var> of type {@link org.openspcoop2.core.config.DumpConfigurazione}
  8039.      *
  8040.      * @param dumpConfigurazione Object to be serialized
  8041.      * @param prettyPrint if true output the XML with indenting
  8042.      * @return Object to be serialized as String
  8043.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8044.      */
  8045.     public String toString(DumpConfigurazione dumpConfigurazione,boolean prettyPrint) throws SerializerException {
  8046.         return this.objToXml(DumpConfigurazione.class, dumpConfigurazione, prettyPrint).toString();
  8047.     }
  8048.    
  8049.    
  8050.    
  8051.     /*
  8052.      =================================================================================
  8053.      Object: porta-tracciamento
  8054.      =================================================================================
  8055.     */
  8056.    
  8057.     /**
  8058.      * Serialize to file system in <var>fileName</var> the object <var>portaTracciamento</var> of type {@link org.openspcoop2.core.config.PortaTracciamento}
  8059.      *
  8060.      * @param fileName Xml file to serialize the object <var>portaTracciamento</var>
  8061.      * @param portaTracciamento Object to be serialized in xml file <var>fileName</var>
  8062.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8063.      */
  8064.     public void write(String fileName,PortaTracciamento portaTracciamento) throws SerializerException {
  8065.         this.objToXml(fileName, PortaTracciamento.class, portaTracciamento, false);
  8066.     }
  8067.     /**
  8068.      * Serialize to file system in <var>fileName</var> the object <var>portaTracciamento</var> of type {@link org.openspcoop2.core.config.PortaTracciamento}
  8069.      *
  8070.      * @param fileName Xml file to serialize the object <var>portaTracciamento</var>
  8071.      * @param portaTracciamento Object to be serialized in xml file <var>fileName</var>
  8072.      * @param prettyPrint if true output the XML with indenting
  8073.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8074.      */
  8075.     public void write(String fileName,PortaTracciamento portaTracciamento,boolean prettyPrint) throws SerializerException {
  8076.         this.objToXml(fileName, PortaTracciamento.class, portaTracciamento, prettyPrint);
  8077.     }
  8078.    
  8079.     /**
  8080.      * Serialize to file system in <var>file</var> the object <var>portaTracciamento</var> of type {@link org.openspcoop2.core.config.PortaTracciamento}
  8081.      *
  8082.      * @param file Xml file to serialize the object <var>portaTracciamento</var>
  8083.      * @param portaTracciamento Object to be serialized in xml file <var>fileName</var>
  8084.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8085.      */
  8086.     public void write(File file,PortaTracciamento portaTracciamento) throws SerializerException {
  8087.         this.objToXml(file, PortaTracciamento.class, portaTracciamento, false);
  8088.     }
  8089.     /**
  8090.      * Serialize to file system in <var>file</var> the object <var>portaTracciamento</var> of type {@link org.openspcoop2.core.config.PortaTracciamento}
  8091.      *
  8092.      * @param file Xml file to serialize the object <var>portaTracciamento</var>
  8093.      * @param portaTracciamento Object to be serialized in xml file <var>fileName</var>
  8094.      * @param prettyPrint if true output the XML with indenting
  8095.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8096.      */
  8097.     public void write(File file,PortaTracciamento portaTracciamento,boolean prettyPrint) throws SerializerException {
  8098.         this.objToXml(file, PortaTracciamento.class, portaTracciamento, prettyPrint);
  8099.     }
  8100.    
  8101.     /**
  8102.      * Serialize to output stream <var>out</var> the object <var>portaTracciamento</var> of type {@link org.openspcoop2.core.config.PortaTracciamento}
  8103.      *
  8104.      * @param out OutputStream to serialize the object <var>portaTracciamento</var>
  8105.      * @param portaTracciamento Object to be serialized in xml file <var>fileName</var>
  8106.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8107.      */
  8108.     public void write(OutputStream out,PortaTracciamento portaTracciamento) throws SerializerException {
  8109.         this.objToXml(out, PortaTracciamento.class, portaTracciamento, false);
  8110.     }
  8111.     /**
  8112.      * Serialize to output stream <var>out</var> the object <var>portaTracciamento</var> of type {@link org.openspcoop2.core.config.PortaTracciamento}
  8113.      *
  8114.      * @param out OutputStream to serialize the object <var>portaTracciamento</var>
  8115.      * @param portaTracciamento Object to be serialized in xml file <var>fileName</var>
  8116.      * @param prettyPrint if true output the XML with indenting
  8117.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8118.      */
  8119.     public void write(OutputStream out,PortaTracciamento portaTracciamento,boolean prettyPrint) throws SerializerException {
  8120.         this.objToXml(out, PortaTracciamento.class, portaTracciamento, prettyPrint);
  8121.     }
  8122.            
  8123.     /**
  8124.      * Serialize to byte array the object <var>portaTracciamento</var> of type {@link org.openspcoop2.core.config.PortaTracciamento}
  8125.      *
  8126.      * @param portaTracciamento Object to be serialized
  8127.      * @return Object to be serialized in byte array
  8128.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8129.      */
  8130.     public byte[] toByteArray(PortaTracciamento portaTracciamento) throws SerializerException {
  8131.         return this.objToXml(PortaTracciamento.class, portaTracciamento, false).toByteArray();
  8132.     }
  8133.     /**
  8134.      * Serialize to byte array the object <var>portaTracciamento</var> of type {@link org.openspcoop2.core.config.PortaTracciamento}
  8135.      *
  8136.      * @param portaTracciamento Object to be serialized
  8137.      * @param prettyPrint if true output the XML with indenting
  8138.      * @return Object to be serialized in byte array
  8139.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8140.      */
  8141.     public byte[] toByteArray(PortaTracciamento portaTracciamento,boolean prettyPrint) throws SerializerException {
  8142.         return this.objToXml(PortaTracciamento.class, portaTracciamento, prettyPrint).toByteArray();
  8143.     }
  8144.    
  8145.     /**
  8146.      * Serialize to String the object <var>portaTracciamento</var> of type {@link org.openspcoop2.core.config.PortaTracciamento}
  8147.      *
  8148.      * @param portaTracciamento Object to be serialized
  8149.      * @return Object to be serialized as String
  8150.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8151.      */
  8152.     public String toString(PortaTracciamento portaTracciamento) throws SerializerException {
  8153.         return this.objToXml(PortaTracciamento.class, portaTracciamento, false).toString();
  8154.     }
  8155.     /**
  8156.      * Serialize to String the object <var>portaTracciamento</var> of type {@link org.openspcoop2.core.config.PortaTracciamento}
  8157.      *
  8158.      * @param portaTracciamento Object to be serialized
  8159.      * @param prettyPrint if true output the XML with indenting
  8160.      * @return Object to be serialized as String
  8161.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8162.      */
  8163.     public String toString(PortaTracciamento portaTracciamento,boolean prettyPrint) throws SerializerException {
  8164.         return this.objToXml(PortaTracciamento.class, portaTracciamento, prettyPrint).toString();
  8165.     }
  8166.    
  8167.    
  8168.    
  8169.     /*
  8170.      =================================================================================
  8171.      Object: cors-configurazione
  8172.      =================================================================================
  8173.     */
  8174.    
  8175.     /**
  8176.      * Serialize to file system in <var>fileName</var> the object <var>corsConfigurazione</var> of type {@link org.openspcoop2.core.config.CorsConfigurazione}
  8177.      *
  8178.      * @param fileName Xml file to serialize the object <var>corsConfigurazione</var>
  8179.      * @param corsConfigurazione Object to be serialized in xml file <var>fileName</var>
  8180.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8181.      */
  8182.     public void write(String fileName,CorsConfigurazione corsConfigurazione) throws SerializerException {
  8183.         this.objToXml(fileName, CorsConfigurazione.class, corsConfigurazione, false);
  8184.     }
  8185.     /**
  8186.      * Serialize to file system in <var>fileName</var> the object <var>corsConfigurazione</var> of type {@link org.openspcoop2.core.config.CorsConfigurazione}
  8187.      *
  8188.      * @param fileName Xml file to serialize the object <var>corsConfigurazione</var>
  8189.      * @param corsConfigurazione Object to be serialized in xml file <var>fileName</var>
  8190.      * @param prettyPrint if true output the XML with indenting
  8191.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8192.      */
  8193.     public void write(String fileName,CorsConfigurazione corsConfigurazione,boolean prettyPrint) throws SerializerException {
  8194.         this.objToXml(fileName, CorsConfigurazione.class, corsConfigurazione, prettyPrint);
  8195.     }
  8196.    
  8197.     /**
  8198.      * Serialize to file system in <var>file</var> the object <var>corsConfigurazione</var> of type {@link org.openspcoop2.core.config.CorsConfigurazione}
  8199.      *
  8200.      * @param file Xml file to serialize the object <var>corsConfigurazione</var>
  8201.      * @param corsConfigurazione Object to be serialized in xml file <var>fileName</var>
  8202.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8203.      */
  8204.     public void write(File file,CorsConfigurazione corsConfigurazione) throws SerializerException {
  8205.         this.objToXml(file, CorsConfigurazione.class, corsConfigurazione, false);
  8206.     }
  8207.     /**
  8208.      * Serialize to file system in <var>file</var> the object <var>corsConfigurazione</var> of type {@link org.openspcoop2.core.config.CorsConfigurazione}
  8209.      *
  8210.      * @param file Xml file to serialize the object <var>corsConfigurazione</var>
  8211.      * @param corsConfigurazione Object to be serialized in xml file <var>fileName</var>
  8212.      * @param prettyPrint if true output the XML with indenting
  8213.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8214.      */
  8215.     public void write(File file,CorsConfigurazione corsConfigurazione,boolean prettyPrint) throws SerializerException {
  8216.         this.objToXml(file, CorsConfigurazione.class, corsConfigurazione, prettyPrint);
  8217.     }
  8218.    
  8219.     /**
  8220.      * Serialize to output stream <var>out</var> the object <var>corsConfigurazione</var> of type {@link org.openspcoop2.core.config.CorsConfigurazione}
  8221.      *
  8222.      * @param out OutputStream to serialize the object <var>corsConfigurazione</var>
  8223.      * @param corsConfigurazione Object to be serialized in xml file <var>fileName</var>
  8224.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8225.      */
  8226.     public void write(OutputStream out,CorsConfigurazione corsConfigurazione) throws SerializerException {
  8227.         this.objToXml(out, CorsConfigurazione.class, corsConfigurazione, false);
  8228.     }
  8229.     /**
  8230.      * Serialize to output stream <var>out</var> the object <var>corsConfigurazione</var> of type {@link org.openspcoop2.core.config.CorsConfigurazione}
  8231.      *
  8232.      * @param out OutputStream to serialize the object <var>corsConfigurazione</var>
  8233.      * @param corsConfigurazione Object to be serialized in xml file <var>fileName</var>
  8234.      * @param prettyPrint if true output the XML with indenting
  8235.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8236.      */
  8237.     public void write(OutputStream out,CorsConfigurazione corsConfigurazione,boolean prettyPrint) throws SerializerException {
  8238.         this.objToXml(out, CorsConfigurazione.class, corsConfigurazione, prettyPrint);
  8239.     }
  8240.            
  8241.     /**
  8242.      * Serialize to byte array the object <var>corsConfigurazione</var> of type {@link org.openspcoop2.core.config.CorsConfigurazione}
  8243.      *
  8244.      * @param corsConfigurazione Object to be serialized
  8245.      * @return Object to be serialized in byte array
  8246.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8247.      */
  8248.     public byte[] toByteArray(CorsConfigurazione corsConfigurazione) throws SerializerException {
  8249.         return this.objToXml(CorsConfigurazione.class, corsConfigurazione, false).toByteArray();
  8250.     }
  8251.     /**
  8252.      * Serialize to byte array the object <var>corsConfigurazione</var> of type {@link org.openspcoop2.core.config.CorsConfigurazione}
  8253.      *
  8254.      * @param corsConfigurazione Object to be serialized
  8255.      * @param prettyPrint if true output the XML with indenting
  8256.      * @return Object to be serialized in byte array
  8257.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8258.      */
  8259.     public byte[] toByteArray(CorsConfigurazione corsConfigurazione,boolean prettyPrint) throws SerializerException {
  8260.         return this.objToXml(CorsConfigurazione.class, corsConfigurazione, prettyPrint).toByteArray();
  8261.     }
  8262.    
  8263.     /**
  8264.      * Serialize to String the object <var>corsConfigurazione</var> of type {@link org.openspcoop2.core.config.CorsConfigurazione}
  8265.      *
  8266.      * @param corsConfigurazione Object to be serialized
  8267.      * @return Object to be serialized as String
  8268.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8269.      */
  8270.     public String toString(CorsConfigurazione corsConfigurazione) throws SerializerException {
  8271.         return this.objToXml(CorsConfigurazione.class, corsConfigurazione, false).toString();
  8272.     }
  8273.     /**
  8274.      * Serialize to String the object <var>corsConfigurazione</var> of type {@link org.openspcoop2.core.config.CorsConfigurazione}
  8275.      *
  8276.      * @param corsConfigurazione Object to be serialized
  8277.      * @param prettyPrint if true output the XML with indenting
  8278.      * @return Object to be serialized as String
  8279.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8280.      */
  8281.     public String toString(CorsConfigurazione corsConfigurazione,boolean prettyPrint) throws SerializerException {
  8282.         return this.objToXml(CorsConfigurazione.class, corsConfigurazione, prettyPrint).toString();
  8283.     }
  8284.    
  8285.    
  8286.    
  8287.     /*
  8288.      =================================================================================
  8289.      Object: response-caching-configurazione
  8290.      =================================================================================
  8291.     */
  8292.    
  8293.     /**
  8294.      * Serialize to file system in <var>fileName</var> the object <var>responseCachingConfigurazione</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazione}
  8295.      *
  8296.      * @param fileName Xml file to serialize the object <var>responseCachingConfigurazione</var>
  8297.      * @param responseCachingConfigurazione Object to be serialized in xml file <var>fileName</var>
  8298.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8299.      */
  8300.     public void write(String fileName,ResponseCachingConfigurazione responseCachingConfigurazione) throws SerializerException {
  8301.         this.objToXml(fileName, ResponseCachingConfigurazione.class, responseCachingConfigurazione, false);
  8302.     }
  8303.     /**
  8304.      * Serialize to file system in <var>fileName</var> the object <var>responseCachingConfigurazione</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazione}
  8305.      *
  8306.      * @param fileName Xml file to serialize the object <var>responseCachingConfigurazione</var>
  8307.      * @param responseCachingConfigurazione Object to be serialized in xml file <var>fileName</var>
  8308.      * @param prettyPrint if true output the XML with indenting
  8309.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8310.      */
  8311.     public void write(String fileName,ResponseCachingConfigurazione responseCachingConfigurazione,boolean prettyPrint) throws SerializerException {
  8312.         this.objToXml(fileName, ResponseCachingConfigurazione.class, responseCachingConfigurazione, prettyPrint);
  8313.     }
  8314.    
  8315.     /**
  8316.      * Serialize to file system in <var>file</var> the object <var>responseCachingConfigurazione</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazione}
  8317.      *
  8318.      * @param file Xml file to serialize the object <var>responseCachingConfigurazione</var>
  8319.      * @param responseCachingConfigurazione Object to be serialized in xml file <var>fileName</var>
  8320.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8321.      */
  8322.     public void write(File file,ResponseCachingConfigurazione responseCachingConfigurazione) throws SerializerException {
  8323.         this.objToXml(file, ResponseCachingConfigurazione.class, responseCachingConfigurazione, false);
  8324.     }
  8325.     /**
  8326.      * Serialize to file system in <var>file</var> the object <var>responseCachingConfigurazione</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazione}
  8327.      *
  8328.      * @param file Xml file to serialize the object <var>responseCachingConfigurazione</var>
  8329.      * @param responseCachingConfigurazione Object to be serialized in xml file <var>fileName</var>
  8330.      * @param prettyPrint if true output the XML with indenting
  8331.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8332.      */
  8333.     public void write(File file,ResponseCachingConfigurazione responseCachingConfigurazione,boolean prettyPrint) throws SerializerException {
  8334.         this.objToXml(file, ResponseCachingConfigurazione.class, responseCachingConfigurazione, prettyPrint);
  8335.     }
  8336.    
  8337.     /**
  8338.      * Serialize to output stream <var>out</var> the object <var>responseCachingConfigurazione</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazione}
  8339.      *
  8340.      * @param out OutputStream to serialize the object <var>responseCachingConfigurazione</var>
  8341.      * @param responseCachingConfigurazione Object to be serialized in xml file <var>fileName</var>
  8342.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8343.      */
  8344.     public void write(OutputStream out,ResponseCachingConfigurazione responseCachingConfigurazione) throws SerializerException {
  8345.         this.objToXml(out, ResponseCachingConfigurazione.class, responseCachingConfigurazione, false);
  8346.     }
  8347.     /**
  8348.      * Serialize to output stream <var>out</var> the object <var>responseCachingConfigurazione</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazione}
  8349.      *
  8350.      * @param out OutputStream to serialize the object <var>responseCachingConfigurazione</var>
  8351.      * @param responseCachingConfigurazione Object to be serialized in xml file <var>fileName</var>
  8352.      * @param prettyPrint if true output the XML with indenting
  8353.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8354.      */
  8355.     public void write(OutputStream out,ResponseCachingConfigurazione responseCachingConfigurazione,boolean prettyPrint) throws SerializerException {
  8356.         this.objToXml(out, ResponseCachingConfigurazione.class, responseCachingConfigurazione, prettyPrint);
  8357.     }
  8358.            
  8359.     /**
  8360.      * Serialize to byte array the object <var>responseCachingConfigurazione</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazione}
  8361.      *
  8362.      * @param responseCachingConfigurazione Object to be serialized
  8363.      * @return Object to be serialized in byte array
  8364.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8365.      */
  8366.     public byte[] toByteArray(ResponseCachingConfigurazione responseCachingConfigurazione) throws SerializerException {
  8367.         return this.objToXml(ResponseCachingConfigurazione.class, responseCachingConfigurazione, false).toByteArray();
  8368.     }
  8369.     /**
  8370.      * Serialize to byte array the object <var>responseCachingConfigurazione</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazione}
  8371.      *
  8372.      * @param responseCachingConfigurazione Object to be serialized
  8373.      * @param prettyPrint if true output the XML with indenting
  8374.      * @return Object to be serialized in byte array
  8375.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8376.      */
  8377.     public byte[] toByteArray(ResponseCachingConfigurazione responseCachingConfigurazione,boolean prettyPrint) throws SerializerException {
  8378.         return this.objToXml(ResponseCachingConfigurazione.class, responseCachingConfigurazione, prettyPrint).toByteArray();
  8379.     }
  8380.    
  8381.     /**
  8382.      * Serialize to String the object <var>responseCachingConfigurazione</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazione}
  8383.      *
  8384.      * @param responseCachingConfigurazione Object to be serialized
  8385.      * @return Object to be serialized as String
  8386.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8387.      */
  8388.     public String toString(ResponseCachingConfigurazione responseCachingConfigurazione) throws SerializerException {
  8389.         return this.objToXml(ResponseCachingConfigurazione.class, responseCachingConfigurazione, false).toString();
  8390.     }
  8391.     /**
  8392.      * Serialize to String the object <var>responseCachingConfigurazione</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazione}
  8393.      *
  8394.      * @param responseCachingConfigurazione Object to be serialized
  8395.      * @param prettyPrint if true output the XML with indenting
  8396.      * @return Object to be serialized as String
  8397.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8398.      */
  8399.     public String toString(ResponseCachingConfigurazione responseCachingConfigurazione,boolean prettyPrint) throws SerializerException {
  8400.         return this.objToXml(ResponseCachingConfigurazione.class, responseCachingConfigurazione, prettyPrint).toString();
  8401.     }
  8402.    
  8403.    
  8404.    
  8405.     /*
  8406.      =================================================================================
  8407.      Object: trasformazioni
  8408.      =================================================================================
  8409.     */
  8410.    
  8411.     /**
  8412.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioni</var> of type {@link org.openspcoop2.core.config.Trasformazioni}
  8413.      *
  8414.      * @param fileName Xml file to serialize the object <var>trasformazioni</var>
  8415.      * @param trasformazioni Object to be serialized in xml file <var>fileName</var>
  8416.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8417.      */
  8418.     public void write(String fileName,Trasformazioni trasformazioni) throws SerializerException {
  8419.         this.objToXml(fileName, Trasformazioni.class, trasformazioni, false);
  8420.     }
  8421.     /**
  8422.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioni</var> of type {@link org.openspcoop2.core.config.Trasformazioni}
  8423.      *
  8424.      * @param fileName Xml file to serialize the object <var>trasformazioni</var>
  8425.      * @param trasformazioni Object to be serialized in xml file <var>fileName</var>
  8426.      * @param prettyPrint if true output the XML with indenting
  8427.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8428.      */
  8429.     public void write(String fileName,Trasformazioni trasformazioni,boolean prettyPrint) throws SerializerException {
  8430.         this.objToXml(fileName, Trasformazioni.class, trasformazioni, prettyPrint);
  8431.     }
  8432.    
  8433.     /**
  8434.      * Serialize to file system in <var>file</var> the object <var>trasformazioni</var> of type {@link org.openspcoop2.core.config.Trasformazioni}
  8435.      *
  8436.      * @param file Xml file to serialize the object <var>trasformazioni</var>
  8437.      * @param trasformazioni Object to be serialized in xml file <var>fileName</var>
  8438.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8439.      */
  8440.     public void write(File file,Trasformazioni trasformazioni) throws SerializerException {
  8441.         this.objToXml(file, Trasformazioni.class, trasformazioni, false);
  8442.     }
  8443.     /**
  8444.      * Serialize to file system in <var>file</var> the object <var>trasformazioni</var> of type {@link org.openspcoop2.core.config.Trasformazioni}
  8445.      *
  8446.      * @param file Xml file to serialize the object <var>trasformazioni</var>
  8447.      * @param trasformazioni Object to be serialized in xml file <var>fileName</var>
  8448.      * @param prettyPrint if true output the XML with indenting
  8449.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8450.      */
  8451.     public void write(File file,Trasformazioni trasformazioni,boolean prettyPrint) throws SerializerException {
  8452.         this.objToXml(file, Trasformazioni.class, trasformazioni, prettyPrint);
  8453.     }
  8454.    
  8455.     /**
  8456.      * Serialize to output stream <var>out</var> the object <var>trasformazioni</var> of type {@link org.openspcoop2.core.config.Trasformazioni}
  8457.      *
  8458.      * @param out OutputStream to serialize the object <var>trasformazioni</var>
  8459.      * @param trasformazioni Object to be serialized in xml file <var>fileName</var>
  8460.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8461.      */
  8462.     public void write(OutputStream out,Trasformazioni trasformazioni) throws SerializerException {
  8463.         this.objToXml(out, Trasformazioni.class, trasformazioni, false);
  8464.     }
  8465.     /**
  8466.      * Serialize to output stream <var>out</var> the object <var>trasformazioni</var> of type {@link org.openspcoop2.core.config.Trasformazioni}
  8467.      *
  8468.      * @param out OutputStream to serialize the object <var>trasformazioni</var>
  8469.      * @param trasformazioni Object to be serialized in xml file <var>fileName</var>
  8470.      * @param prettyPrint if true output the XML with indenting
  8471.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8472.      */
  8473.     public void write(OutputStream out,Trasformazioni trasformazioni,boolean prettyPrint) throws SerializerException {
  8474.         this.objToXml(out, Trasformazioni.class, trasformazioni, prettyPrint);
  8475.     }
  8476.            
  8477.     /**
  8478.      * Serialize to byte array the object <var>trasformazioni</var> of type {@link org.openspcoop2.core.config.Trasformazioni}
  8479.      *
  8480.      * @param trasformazioni Object to be serialized
  8481.      * @return Object to be serialized in byte array
  8482.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8483.      */
  8484.     public byte[] toByteArray(Trasformazioni trasformazioni) throws SerializerException {
  8485.         return this.objToXml(Trasformazioni.class, trasformazioni, false).toByteArray();
  8486.     }
  8487.     /**
  8488.      * Serialize to byte array the object <var>trasformazioni</var> of type {@link org.openspcoop2.core.config.Trasformazioni}
  8489.      *
  8490.      * @param trasformazioni Object to be serialized
  8491.      * @param prettyPrint if true output the XML with indenting
  8492.      * @return Object to be serialized in byte array
  8493.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8494.      */
  8495.     public byte[] toByteArray(Trasformazioni trasformazioni,boolean prettyPrint) throws SerializerException {
  8496.         return this.objToXml(Trasformazioni.class, trasformazioni, prettyPrint).toByteArray();
  8497.     }
  8498.    
  8499.     /**
  8500.      * Serialize to String the object <var>trasformazioni</var> of type {@link org.openspcoop2.core.config.Trasformazioni}
  8501.      *
  8502.      * @param trasformazioni Object to be serialized
  8503.      * @return Object to be serialized as String
  8504.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8505.      */
  8506.     public String toString(Trasformazioni trasformazioni) throws SerializerException {
  8507.         return this.objToXml(Trasformazioni.class, trasformazioni, false).toString();
  8508.     }
  8509.     /**
  8510.      * Serialize to String the object <var>trasformazioni</var> of type {@link org.openspcoop2.core.config.Trasformazioni}
  8511.      *
  8512.      * @param trasformazioni Object to be serialized
  8513.      * @param prettyPrint if true output the XML with indenting
  8514.      * @return Object to be serialized as String
  8515.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8516.      */
  8517.     public String toString(Trasformazioni trasformazioni,boolean prettyPrint) throws SerializerException {
  8518.         return this.objToXml(Trasformazioni.class, trasformazioni, prettyPrint).toString();
  8519.     }
  8520.    
  8521.    
  8522.    
  8523.     /*
  8524.      =================================================================================
  8525.      Object: configurazione-porta-handler
  8526.      =================================================================================
  8527.     */
  8528.    
  8529.     /**
  8530.      * Serialize to file system in <var>fileName</var> the object <var>configurazionePortaHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazionePortaHandler}
  8531.      *
  8532.      * @param fileName Xml file to serialize the object <var>configurazionePortaHandler</var>
  8533.      * @param configurazionePortaHandler Object to be serialized in xml file <var>fileName</var>
  8534.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8535.      */
  8536.     public void write(String fileName,ConfigurazionePortaHandler configurazionePortaHandler) throws SerializerException {
  8537.         this.objToXml(fileName, ConfigurazionePortaHandler.class, configurazionePortaHandler, false);
  8538.     }
  8539.     /**
  8540.      * Serialize to file system in <var>fileName</var> the object <var>configurazionePortaHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazionePortaHandler}
  8541.      *
  8542.      * @param fileName Xml file to serialize the object <var>configurazionePortaHandler</var>
  8543.      * @param configurazionePortaHandler Object to be serialized in xml file <var>fileName</var>
  8544.      * @param prettyPrint if true output the XML with indenting
  8545.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8546.      */
  8547.     public void write(String fileName,ConfigurazionePortaHandler configurazionePortaHandler,boolean prettyPrint) throws SerializerException {
  8548.         this.objToXml(fileName, ConfigurazionePortaHandler.class, configurazionePortaHandler, prettyPrint);
  8549.     }
  8550.    
  8551.     /**
  8552.      * Serialize to file system in <var>file</var> the object <var>configurazionePortaHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazionePortaHandler}
  8553.      *
  8554.      * @param file Xml file to serialize the object <var>configurazionePortaHandler</var>
  8555.      * @param configurazionePortaHandler Object to be serialized in xml file <var>fileName</var>
  8556.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8557.      */
  8558.     public void write(File file,ConfigurazionePortaHandler configurazionePortaHandler) throws SerializerException {
  8559.         this.objToXml(file, ConfigurazionePortaHandler.class, configurazionePortaHandler, false);
  8560.     }
  8561.     /**
  8562.      * Serialize to file system in <var>file</var> the object <var>configurazionePortaHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazionePortaHandler}
  8563.      *
  8564.      * @param file Xml file to serialize the object <var>configurazionePortaHandler</var>
  8565.      * @param configurazionePortaHandler Object to be serialized in xml file <var>fileName</var>
  8566.      * @param prettyPrint if true output the XML with indenting
  8567.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8568.      */
  8569.     public void write(File file,ConfigurazionePortaHandler configurazionePortaHandler,boolean prettyPrint) throws SerializerException {
  8570.         this.objToXml(file, ConfigurazionePortaHandler.class, configurazionePortaHandler, prettyPrint);
  8571.     }
  8572.    
  8573.     /**
  8574.      * Serialize to output stream <var>out</var> the object <var>configurazionePortaHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazionePortaHandler}
  8575.      *
  8576.      * @param out OutputStream to serialize the object <var>configurazionePortaHandler</var>
  8577.      * @param configurazionePortaHandler Object to be serialized in xml file <var>fileName</var>
  8578.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8579.      */
  8580.     public void write(OutputStream out,ConfigurazionePortaHandler configurazionePortaHandler) throws SerializerException {
  8581.         this.objToXml(out, ConfigurazionePortaHandler.class, configurazionePortaHandler, false);
  8582.     }
  8583.     /**
  8584.      * Serialize to output stream <var>out</var> the object <var>configurazionePortaHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazionePortaHandler}
  8585.      *
  8586.      * @param out OutputStream to serialize the object <var>configurazionePortaHandler</var>
  8587.      * @param configurazionePortaHandler Object to be serialized in xml file <var>fileName</var>
  8588.      * @param prettyPrint if true output the XML with indenting
  8589.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8590.      */
  8591.     public void write(OutputStream out,ConfigurazionePortaHandler configurazionePortaHandler,boolean prettyPrint) throws SerializerException {
  8592.         this.objToXml(out, ConfigurazionePortaHandler.class, configurazionePortaHandler, prettyPrint);
  8593.     }
  8594.            
  8595.     /**
  8596.      * Serialize to byte array the object <var>configurazionePortaHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazionePortaHandler}
  8597.      *
  8598.      * @param configurazionePortaHandler Object to be serialized
  8599.      * @return Object to be serialized in byte array
  8600.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8601.      */
  8602.     public byte[] toByteArray(ConfigurazionePortaHandler configurazionePortaHandler) throws SerializerException {
  8603.         return this.objToXml(ConfigurazionePortaHandler.class, configurazionePortaHandler, false).toByteArray();
  8604.     }
  8605.     /**
  8606.      * Serialize to byte array the object <var>configurazionePortaHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazionePortaHandler}
  8607.      *
  8608.      * @param configurazionePortaHandler Object to be serialized
  8609.      * @param prettyPrint if true output the XML with indenting
  8610.      * @return Object to be serialized in byte array
  8611.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8612.      */
  8613.     public byte[] toByteArray(ConfigurazionePortaHandler configurazionePortaHandler,boolean prettyPrint) throws SerializerException {
  8614.         return this.objToXml(ConfigurazionePortaHandler.class, configurazionePortaHandler, prettyPrint).toByteArray();
  8615.     }
  8616.    
  8617.     /**
  8618.      * Serialize to String the object <var>configurazionePortaHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazionePortaHandler}
  8619.      *
  8620.      * @param configurazionePortaHandler Object to be serialized
  8621.      * @return Object to be serialized as String
  8622.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8623.      */
  8624.     public String toString(ConfigurazionePortaHandler configurazionePortaHandler) throws SerializerException {
  8625.         return this.objToXml(ConfigurazionePortaHandler.class, configurazionePortaHandler, false).toString();
  8626.     }
  8627.     /**
  8628.      * Serialize to String the object <var>configurazionePortaHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazionePortaHandler}
  8629.      *
  8630.      * @param configurazionePortaHandler Object to be serialized
  8631.      * @param prettyPrint if true output the XML with indenting
  8632.      * @return Object to be serialized as String
  8633.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8634.      */
  8635.     public String toString(ConfigurazionePortaHandler configurazionePortaHandler,boolean prettyPrint) throws SerializerException {
  8636.         return this.objToXml(ConfigurazionePortaHandler.class, configurazionePortaHandler, prettyPrint).toString();
  8637.     }
  8638.    
  8639.    
  8640.    
  8641.     /*
  8642.      =================================================================================
  8643.      Object: attribute-authority
  8644.      =================================================================================
  8645.     */
  8646.    
  8647.     /**
  8648.      * Serialize to file system in <var>fileName</var> the object <var>attributeAuthority</var> of type {@link org.openspcoop2.core.config.AttributeAuthority}
  8649.      *
  8650.      * @param fileName Xml file to serialize the object <var>attributeAuthority</var>
  8651.      * @param attributeAuthority Object to be serialized in xml file <var>fileName</var>
  8652.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8653.      */
  8654.     public void write(String fileName,AttributeAuthority attributeAuthority) throws SerializerException {
  8655.         this.objToXml(fileName, AttributeAuthority.class, attributeAuthority, false);
  8656.     }
  8657.     /**
  8658.      * Serialize to file system in <var>fileName</var> the object <var>attributeAuthority</var> of type {@link org.openspcoop2.core.config.AttributeAuthority}
  8659.      *
  8660.      * @param fileName Xml file to serialize the object <var>attributeAuthority</var>
  8661.      * @param attributeAuthority Object to be serialized in xml file <var>fileName</var>
  8662.      * @param prettyPrint if true output the XML with indenting
  8663.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8664.      */
  8665.     public void write(String fileName,AttributeAuthority attributeAuthority,boolean prettyPrint) throws SerializerException {
  8666.         this.objToXml(fileName, AttributeAuthority.class, attributeAuthority, prettyPrint);
  8667.     }
  8668.    
  8669.     /**
  8670.      * Serialize to file system in <var>file</var> the object <var>attributeAuthority</var> of type {@link org.openspcoop2.core.config.AttributeAuthority}
  8671.      *
  8672.      * @param file Xml file to serialize the object <var>attributeAuthority</var>
  8673.      * @param attributeAuthority Object to be serialized in xml file <var>fileName</var>
  8674.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8675.      */
  8676.     public void write(File file,AttributeAuthority attributeAuthority) throws SerializerException {
  8677.         this.objToXml(file, AttributeAuthority.class, attributeAuthority, false);
  8678.     }
  8679.     /**
  8680.      * Serialize to file system in <var>file</var> the object <var>attributeAuthority</var> of type {@link org.openspcoop2.core.config.AttributeAuthority}
  8681.      *
  8682.      * @param file Xml file to serialize the object <var>attributeAuthority</var>
  8683.      * @param attributeAuthority Object to be serialized in xml file <var>fileName</var>
  8684.      * @param prettyPrint if true output the XML with indenting
  8685.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8686.      */
  8687.     public void write(File file,AttributeAuthority attributeAuthority,boolean prettyPrint) throws SerializerException {
  8688.         this.objToXml(file, AttributeAuthority.class, attributeAuthority, prettyPrint);
  8689.     }
  8690.    
  8691.     /**
  8692.      * Serialize to output stream <var>out</var> the object <var>attributeAuthority</var> of type {@link org.openspcoop2.core.config.AttributeAuthority}
  8693.      *
  8694.      * @param out OutputStream to serialize the object <var>attributeAuthority</var>
  8695.      * @param attributeAuthority Object to be serialized in xml file <var>fileName</var>
  8696.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8697.      */
  8698.     public void write(OutputStream out,AttributeAuthority attributeAuthority) throws SerializerException {
  8699.         this.objToXml(out, AttributeAuthority.class, attributeAuthority, false);
  8700.     }
  8701.     /**
  8702.      * Serialize to output stream <var>out</var> the object <var>attributeAuthority</var> of type {@link org.openspcoop2.core.config.AttributeAuthority}
  8703.      *
  8704.      * @param out OutputStream to serialize the object <var>attributeAuthority</var>
  8705.      * @param attributeAuthority Object to be serialized in xml file <var>fileName</var>
  8706.      * @param prettyPrint if true output the XML with indenting
  8707.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8708.      */
  8709.     public void write(OutputStream out,AttributeAuthority attributeAuthority,boolean prettyPrint) throws SerializerException {
  8710.         this.objToXml(out, AttributeAuthority.class, attributeAuthority, prettyPrint);
  8711.     }
  8712.            
  8713.     /**
  8714.      * Serialize to byte array the object <var>attributeAuthority</var> of type {@link org.openspcoop2.core.config.AttributeAuthority}
  8715.      *
  8716.      * @param attributeAuthority Object to be serialized
  8717.      * @return Object to be serialized in byte array
  8718.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8719.      */
  8720.     public byte[] toByteArray(AttributeAuthority attributeAuthority) throws SerializerException {
  8721.         return this.objToXml(AttributeAuthority.class, attributeAuthority, false).toByteArray();
  8722.     }
  8723.     /**
  8724.      * Serialize to byte array the object <var>attributeAuthority</var> of type {@link org.openspcoop2.core.config.AttributeAuthority}
  8725.      *
  8726.      * @param attributeAuthority Object to be serialized
  8727.      * @param prettyPrint if true output the XML with indenting
  8728.      * @return Object to be serialized in byte array
  8729.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8730.      */
  8731.     public byte[] toByteArray(AttributeAuthority attributeAuthority,boolean prettyPrint) throws SerializerException {
  8732.         return this.objToXml(AttributeAuthority.class, attributeAuthority, prettyPrint).toByteArray();
  8733.     }
  8734.    
  8735.     /**
  8736.      * Serialize to String the object <var>attributeAuthority</var> of type {@link org.openspcoop2.core.config.AttributeAuthority}
  8737.      *
  8738.      * @param attributeAuthority Object to be serialized
  8739.      * @return Object to be serialized as String
  8740.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8741.      */
  8742.     public String toString(AttributeAuthority attributeAuthority) throws SerializerException {
  8743.         return this.objToXml(AttributeAuthority.class, attributeAuthority, false).toString();
  8744.     }
  8745.     /**
  8746.      * Serialize to String the object <var>attributeAuthority</var> of type {@link org.openspcoop2.core.config.AttributeAuthority}
  8747.      *
  8748.      * @param attributeAuthority Object to be serialized
  8749.      * @param prettyPrint if true output the XML with indenting
  8750.      * @return Object to be serialized as String
  8751.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8752.      */
  8753.     public String toString(AttributeAuthority attributeAuthority,boolean prettyPrint) throws SerializerException {
  8754.         return this.objToXml(AttributeAuthority.class, attributeAuthority, prettyPrint).toString();
  8755.     }
  8756.    
  8757.    
  8758.    
  8759.     /*
  8760.      =================================================================================
  8761.      Object: response-caching-configurazione-regola
  8762.      =================================================================================
  8763.     */
  8764.    
  8765.     /**
  8766.      * Serialize to file system in <var>fileName</var> the object <var>responseCachingConfigurazioneRegola</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneRegola}
  8767.      *
  8768.      * @param fileName Xml file to serialize the object <var>responseCachingConfigurazioneRegola</var>
  8769.      * @param responseCachingConfigurazioneRegola Object to be serialized in xml file <var>fileName</var>
  8770.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8771.      */
  8772.     public void write(String fileName,ResponseCachingConfigurazioneRegola responseCachingConfigurazioneRegola) throws SerializerException {
  8773.         this.objToXml(fileName, ResponseCachingConfigurazioneRegola.class, responseCachingConfigurazioneRegola, false);
  8774.     }
  8775.     /**
  8776.      * Serialize to file system in <var>fileName</var> the object <var>responseCachingConfigurazioneRegola</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneRegola}
  8777.      *
  8778.      * @param fileName Xml file to serialize the object <var>responseCachingConfigurazioneRegola</var>
  8779.      * @param responseCachingConfigurazioneRegola Object to be serialized in xml file <var>fileName</var>
  8780.      * @param prettyPrint if true output the XML with indenting
  8781.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8782.      */
  8783.     public void write(String fileName,ResponseCachingConfigurazioneRegola responseCachingConfigurazioneRegola,boolean prettyPrint) throws SerializerException {
  8784.         this.objToXml(fileName, ResponseCachingConfigurazioneRegola.class, responseCachingConfigurazioneRegola, prettyPrint);
  8785.     }
  8786.    
  8787.     /**
  8788.      * Serialize to file system in <var>file</var> the object <var>responseCachingConfigurazioneRegola</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneRegola}
  8789.      *
  8790.      * @param file Xml file to serialize the object <var>responseCachingConfigurazioneRegola</var>
  8791.      * @param responseCachingConfigurazioneRegola Object to be serialized in xml file <var>fileName</var>
  8792.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8793.      */
  8794.     public void write(File file,ResponseCachingConfigurazioneRegola responseCachingConfigurazioneRegola) throws SerializerException {
  8795.         this.objToXml(file, ResponseCachingConfigurazioneRegola.class, responseCachingConfigurazioneRegola, false);
  8796.     }
  8797.     /**
  8798.      * Serialize to file system in <var>file</var> the object <var>responseCachingConfigurazioneRegola</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneRegola}
  8799.      *
  8800.      * @param file Xml file to serialize the object <var>responseCachingConfigurazioneRegola</var>
  8801.      * @param responseCachingConfigurazioneRegola Object to be serialized in xml file <var>fileName</var>
  8802.      * @param prettyPrint if true output the XML with indenting
  8803.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8804.      */
  8805.     public void write(File file,ResponseCachingConfigurazioneRegola responseCachingConfigurazioneRegola,boolean prettyPrint) throws SerializerException {
  8806.         this.objToXml(file, ResponseCachingConfigurazioneRegola.class, responseCachingConfigurazioneRegola, prettyPrint);
  8807.     }
  8808.    
  8809.     /**
  8810.      * Serialize to output stream <var>out</var> the object <var>responseCachingConfigurazioneRegola</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneRegola}
  8811.      *
  8812.      * @param out OutputStream to serialize the object <var>responseCachingConfigurazioneRegola</var>
  8813.      * @param responseCachingConfigurazioneRegola Object to be serialized in xml file <var>fileName</var>
  8814.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8815.      */
  8816.     public void write(OutputStream out,ResponseCachingConfigurazioneRegola responseCachingConfigurazioneRegola) throws SerializerException {
  8817.         this.objToXml(out, ResponseCachingConfigurazioneRegola.class, responseCachingConfigurazioneRegola, false);
  8818.     }
  8819.     /**
  8820.      * Serialize to output stream <var>out</var> the object <var>responseCachingConfigurazioneRegola</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneRegola}
  8821.      *
  8822.      * @param out OutputStream to serialize the object <var>responseCachingConfigurazioneRegola</var>
  8823.      * @param responseCachingConfigurazioneRegola Object to be serialized in xml file <var>fileName</var>
  8824.      * @param prettyPrint if true output the XML with indenting
  8825.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8826.      */
  8827.     public void write(OutputStream out,ResponseCachingConfigurazioneRegola responseCachingConfigurazioneRegola,boolean prettyPrint) throws SerializerException {
  8828.         this.objToXml(out, ResponseCachingConfigurazioneRegola.class, responseCachingConfigurazioneRegola, prettyPrint);
  8829.     }
  8830.            
  8831.     /**
  8832.      * Serialize to byte array the object <var>responseCachingConfigurazioneRegola</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneRegola}
  8833.      *
  8834.      * @param responseCachingConfigurazioneRegola Object to be serialized
  8835.      * @return Object to be serialized in byte array
  8836.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8837.      */
  8838.     public byte[] toByteArray(ResponseCachingConfigurazioneRegola responseCachingConfigurazioneRegola) throws SerializerException {
  8839.         return this.objToXml(ResponseCachingConfigurazioneRegola.class, responseCachingConfigurazioneRegola, false).toByteArray();
  8840.     }
  8841.     /**
  8842.      * Serialize to byte array the object <var>responseCachingConfigurazioneRegola</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneRegola}
  8843.      *
  8844.      * @param responseCachingConfigurazioneRegola Object to be serialized
  8845.      * @param prettyPrint if true output the XML with indenting
  8846.      * @return Object to be serialized in byte array
  8847.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8848.      */
  8849.     public byte[] toByteArray(ResponseCachingConfigurazioneRegola responseCachingConfigurazioneRegola,boolean prettyPrint) throws SerializerException {
  8850.         return this.objToXml(ResponseCachingConfigurazioneRegola.class, responseCachingConfigurazioneRegola, prettyPrint).toByteArray();
  8851.     }
  8852.    
  8853.     /**
  8854.      * Serialize to String the object <var>responseCachingConfigurazioneRegola</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneRegola}
  8855.      *
  8856.      * @param responseCachingConfigurazioneRegola Object to be serialized
  8857.      * @return Object to be serialized as String
  8858.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8859.      */
  8860.     public String toString(ResponseCachingConfigurazioneRegola responseCachingConfigurazioneRegola) throws SerializerException {
  8861.         return this.objToXml(ResponseCachingConfigurazioneRegola.class, responseCachingConfigurazioneRegola, false).toString();
  8862.     }
  8863.     /**
  8864.      * Serialize to String the object <var>responseCachingConfigurazioneRegola</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneRegola}
  8865.      *
  8866.      * @param responseCachingConfigurazioneRegola Object to be serialized
  8867.      * @param prettyPrint if true output the XML with indenting
  8868.      * @return Object to be serialized as String
  8869.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8870.      */
  8871.     public String toString(ResponseCachingConfigurazioneRegola responseCachingConfigurazioneRegola,boolean prettyPrint) throws SerializerException {
  8872.         return this.objToXml(ResponseCachingConfigurazioneRegola.class, responseCachingConfigurazioneRegola, prettyPrint).toString();
  8873.     }
  8874.    
  8875.    
  8876.    
  8877.     /*
  8878.      =================================================================================
  8879.      Object: generic-properties
  8880.      =================================================================================
  8881.     */
  8882.    
  8883.     /**
  8884.      * Serialize to file system in <var>fileName</var> the object <var>genericProperties</var> of type {@link org.openspcoop2.core.config.GenericProperties}
  8885.      *
  8886.      * @param fileName Xml file to serialize the object <var>genericProperties</var>
  8887.      * @param genericProperties Object to be serialized in xml file <var>fileName</var>
  8888.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8889.      */
  8890.     public void write(String fileName,GenericProperties genericProperties) throws SerializerException {
  8891.         this.objToXml(fileName, GenericProperties.class, genericProperties, false);
  8892.     }
  8893.     /**
  8894.      * Serialize to file system in <var>fileName</var> the object <var>genericProperties</var> of type {@link org.openspcoop2.core.config.GenericProperties}
  8895.      *
  8896.      * @param fileName Xml file to serialize the object <var>genericProperties</var>
  8897.      * @param genericProperties Object to be serialized in xml file <var>fileName</var>
  8898.      * @param prettyPrint if true output the XML with indenting
  8899.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8900.      */
  8901.     public void write(String fileName,GenericProperties genericProperties,boolean prettyPrint) throws SerializerException {
  8902.         this.objToXml(fileName, GenericProperties.class, genericProperties, prettyPrint);
  8903.     }
  8904.    
  8905.     /**
  8906.      * Serialize to file system in <var>file</var> the object <var>genericProperties</var> of type {@link org.openspcoop2.core.config.GenericProperties}
  8907.      *
  8908.      * @param file Xml file to serialize the object <var>genericProperties</var>
  8909.      * @param genericProperties Object to be serialized in xml file <var>fileName</var>
  8910.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8911.      */
  8912.     public void write(File file,GenericProperties genericProperties) throws SerializerException {
  8913.         this.objToXml(file, GenericProperties.class, genericProperties, false);
  8914.     }
  8915.     /**
  8916.      * Serialize to file system in <var>file</var> the object <var>genericProperties</var> of type {@link org.openspcoop2.core.config.GenericProperties}
  8917.      *
  8918.      * @param file Xml file to serialize the object <var>genericProperties</var>
  8919.      * @param genericProperties Object to be serialized in xml file <var>fileName</var>
  8920.      * @param prettyPrint if true output the XML with indenting
  8921.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8922.      */
  8923.     public void write(File file,GenericProperties genericProperties,boolean prettyPrint) throws SerializerException {
  8924.         this.objToXml(file, GenericProperties.class, genericProperties, prettyPrint);
  8925.     }
  8926.    
  8927.     /**
  8928.      * Serialize to output stream <var>out</var> the object <var>genericProperties</var> of type {@link org.openspcoop2.core.config.GenericProperties}
  8929.      *
  8930.      * @param out OutputStream to serialize the object <var>genericProperties</var>
  8931.      * @param genericProperties Object to be serialized in xml file <var>fileName</var>
  8932.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8933.      */
  8934.     public void write(OutputStream out,GenericProperties genericProperties) throws SerializerException {
  8935.         this.objToXml(out, GenericProperties.class, genericProperties, false);
  8936.     }
  8937.     /**
  8938.      * Serialize to output stream <var>out</var> the object <var>genericProperties</var> of type {@link org.openspcoop2.core.config.GenericProperties}
  8939.      *
  8940.      * @param out OutputStream to serialize the object <var>genericProperties</var>
  8941.      * @param genericProperties Object to be serialized in xml file <var>fileName</var>
  8942.      * @param prettyPrint if true output the XML with indenting
  8943.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8944.      */
  8945.     public void write(OutputStream out,GenericProperties genericProperties,boolean prettyPrint) throws SerializerException {
  8946.         this.objToXml(out, GenericProperties.class, genericProperties, prettyPrint);
  8947.     }
  8948.            
  8949.     /**
  8950.      * Serialize to byte array the object <var>genericProperties</var> of type {@link org.openspcoop2.core.config.GenericProperties}
  8951.      *
  8952.      * @param genericProperties Object to be serialized
  8953.      * @return Object to be serialized in byte array
  8954.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8955.      */
  8956.     public byte[] toByteArray(GenericProperties genericProperties) throws SerializerException {
  8957.         return this.objToXml(GenericProperties.class, genericProperties, false).toByteArray();
  8958.     }
  8959.     /**
  8960.      * Serialize to byte array the object <var>genericProperties</var> of type {@link org.openspcoop2.core.config.GenericProperties}
  8961.      *
  8962.      * @param genericProperties Object to be serialized
  8963.      * @param prettyPrint if true output the XML with indenting
  8964.      * @return Object to be serialized in byte array
  8965.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8966.      */
  8967.     public byte[] toByteArray(GenericProperties genericProperties,boolean prettyPrint) throws SerializerException {
  8968.         return this.objToXml(GenericProperties.class, genericProperties, prettyPrint).toByteArray();
  8969.     }
  8970.    
  8971.     /**
  8972.      * Serialize to String the object <var>genericProperties</var> of type {@link org.openspcoop2.core.config.GenericProperties}
  8973.      *
  8974.      * @param genericProperties Object to be serialized
  8975.      * @return Object to be serialized as String
  8976.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8977.      */
  8978.     public String toString(GenericProperties genericProperties) throws SerializerException {
  8979.         return this.objToXml(GenericProperties.class, genericProperties, false).toString();
  8980.     }
  8981.     /**
  8982.      * Serialize to String the object <var>genericProperties</var> of type {@link org.openspcoop2.core.config.GenericProperties}
  8983.      *
  8984.      * @param genericProperties Object to be serialized
  8985.      * @param prettyPrint if true output the XML with indenting
  8986.      * @return Object to be serialized as String
  8987.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  8988.      */
  8989.     public String toString(GenericProperties genericProperties,boolean prettyPrint) throws SerializerException {
  8990.         return this.objToXml(GenericProperties.class, genericProperties, prettyPrint).toString();
  8991.     }
  8992.    
  8993.    
  8994.    
  8995.     /*
  8996.      =================================================================================
  8997.      Object: id-servizio-applicativo
  8998.      =================================================================================
  8999.     */
  9000.    
  9001.     /**
  9002.      * Serialize to file system in <var>fileName</var> the object <var>idServizioApplicativo</var> of type {@link org.openspcoop2.core.config.IdServizioApplicativo}
  9003.      *
  9004.      * @param fileName Xml file to serialize the object <var>idServizioApplicativo</var>
  9005.      * @param idServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  9006.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9007.      */
  9008.     public void write(String fileName,IdServizioApplicativo idServizioApplicativo) throws SerializerException {
  9009.         this.objToXml(fileName, IdServizioApplicativo.class, idServizioApplicativo, false);
  9010.     }
  9011.     /**
  9012.      * Serialize to file system in <var>fileName</var> the object <var>idServizioApplicativo</var> of type {@link org.openspcoop2.core.config.IdServizioApplicativo}
  9013.      *
  9014.      * @param fileName Xml file to serialize the object <var>idServizioApplicativo</var>
  9015.      * @param idServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  9016.      * @param prettyPrint if true output the XML with indenting
  9017.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9018.      */
  9019.     public void write(String fileName,IdServizioApplicativo idServizioApplicativo,boolean prettyPrint) throws SerializerException {
  9020.         this.objToXml(fileName, IdServizioApplicativo.class, idServizioApplicativo, prettyPrint);
  9021.     }
  9022.    
  9023.     /**
  9024.      * Serialize to file system in <var>file</var> the object <var>idServizioApplicativo</var> of type {@link org.openspcoop2.core.config.IdServizioApplicativo}
  9025.      *
  9026.      * @param file Xml file to serialize the object <var>idServizioApplicativo</var>
  9027.      * @param idServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  9028.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9029.      */
  9030.     public void write(File file,IdServizioApplicativo idServizioApplicativo) throws SerializerException {
  9031.         this.objToXml(file, IdServizioApplicativo.class, idServizioApplicativo, false);
  9032.     }
  9033.     /**
  9034.      * Serialize to file system in <var>file</var> the object <var>idServizioApplicativo</var> of type {@link org.openspcoop2.core.config.IdServizioApplicativo}
  9035.      *
  9036.      * @param file Xml file to serialize the object <var>idServizioApplicativo</var>
  9037.      * @param idServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  9038.      * @param prettyPrint if true output the XML with indenting
  9039.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9040.      */
  9041.     public void write(File file,IdServizioApplicativo idServizioApplicativo,boolean prettyPrint) throws SerializerException {
  9042.         this.objToXml(file, IdServizioApplicativo.class, idServizioApplicativo, prettyPrint);
  9043.     }
  9044.    
  9045.     /**
  9046.      * Serialize to output stream <var>out</var> the object <var>idServizioApplicativo</var> of type {@link org.openspcoop2.core.config.IdServizioApplicativo}
  9047.      *
  9048.      * @param out OutputStream to serialize the object <var>idServizioApplicativo</var>
  9049.      * @param idServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  9050.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9051.      */
  9052.     public void write(OutputStream out,IdServizioApplicativo idServizioApplicativo) throws SerializerException {
  9053.         this.objToXml(out, IdServizioApplicativo.class, idServizioApplicativo, false);
  9054.     }
  9055.     /**
  9056.      * Serialize to output stream <var>out</var> the object <var>idServizioApplicativo</var> of type {@link org.openspcoop2.core.config.IdServizioApplicativo}
  9057.      *
  9058.      * @param out OutputStream to serialize the object <var>idServizioApplicativo</var>
  9059.      * @param idServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  9060.      * @param prettyPrint if true output the XML with indenting
  9061.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9062.      */
  9063.     public void write(OutputStream out,IdServizioApplicativo idServizioApplicativo,boolean prettyPrint) throws SerializerException {
  9064.         this.objToXml(out, IdServizioApplicativo.class, idServizioApplicativo, prettyPrint);
  9065.     }
  9066.            
  9067.     /**
  9068.      * Serialize to byte array the object <var>idServizioApplicativo</var> of type {@link org.openspcoop2.core.config.IdServizioApplicativo}
  9069.      *
  9070.      * @param idServizioApplicativo Object to be serialized
  9071.      * @return Object to be serialized in byte array
  9072.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9073.      */
  9074.     public byte[] toByteArray(IdServizioApplicativo idServizioApplicativo) throws SerializerException {
  9075.         return this.objToXml(IdServizioApplicativo.class, idServizioApplicativo, false).toByteArray();
  9076.     }
  9077.     /**
  9078.      * Serialize to byte array the object <var>idServizioApplicativo</var> of type {@link org.openspcoop2.core.config.IdServizioApplicativo}
  9079.      *
  9080.      * @param idServizioApplicativo Object to be serialized
  9081.      * @param prettyPrint if true output the XML with indenting
  9082.      * @return Object to be serialized in byte array
  9083.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9084.      */
  9085.     public byte[] toByteArray(IdServizioApplicativo idServizioApplicativo,boolean prettyPrint) throws SerializerException {
  9086.         return this.objToXml(IdServizioApplicativo.class, idServizioApplicativo, prettyPrint).toByteArray();
  9087.     }
  9088.    
  9089.     /**
  9090.      * Serialize to String the object <var>idServizioApplicativo</var> of type {@link org.openspcoop2.core.config.IdServizioApplicativo}
  9091.      *
  9092.      * @param idServizioApplicativo Object to be serialized
  9093.      * @return Object to be serialized as String
  9094.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9095.      */
  9096.     public String toString(IdServizioApplicativo idServizioApplicativo) throws SerializerException {
  9097.         return this.objToXml(IdServizioApplicativo.class, idServizioApplicativo, false).toString();
  9098.     }
  9099.     /**
  9100.      * Serialize to String the object <var>idServizioApplicativo</var> of type {@link org.openspcoop2.core.config.IdServizioApplicativo}
  9101.      *
  9102.      * @param idServizioApplicativo Object to be serialized
  9103.      * @param prettyPrint if true output the XML with indenting
  9104.      * @return Object to be serialized as String
  9105.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9106.      */
  9107.     public String toString(IdServizioApplicativo idServizioApplicativo,boolean prettyPrint) throws SerializerException {
  9108.         return this.objToXml(IdServizioApplicativo.class, idServizioApplicativo, prettyPrint).toString();
  9109.     }
  9110.    
  9111.    
  9112.    
  9113.     /*
  9114.      =================================================================================
  9115.      Object: canale-configurazione
  9116.      =================================================================================
  9117.     */
  9118.    
  9119.     /**
  9120.      * Serialize to file system in <var>fileName</var> the object <var>canaleConfigurazione</var> of type {@link org.openspcoop2.core.config.CanaleConfigurazione}
  9121.      *
  9122.      * @param fileName Xml file to serialize the object <var>canaleConfigurazione</var>
  9123.      * @param canaleConfigurazione Object to be serialized in xml file <var>fileName</var>
  9124.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9125.      */
  9126.     public void write(String fileName,CanaleConfigurazione canaleConfigurazione) throws SerializerException {
  9127.         this.objToXml(fileName, CanaleConfigurazione.class, canaleConfigurazione, false);
  9128.     }
  9129.     /**
  9130.      * Serialize to file system in <var>fileName</var> the object <var>canaleConfigurazione</var> of type {@link org.openspcoop2.core.config.CanaleConfigurazione}
  9131.      *
  9132.      * @param fileName Xml file to serialize the object <var>canaleConfigurazione</var>
  9133.      * @param canaleConfigurazione Object to be serialized in xml file <var>fileName</var>
  9134.      * @param prettyPrint if true output the XML with indenting
  9135.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9136.      */
  9137.     public void write(String fileName,CanaleConfigurazione canaleConfigurazione,boolean prettyPrint) throws SerializerException {
  9138.         this.objToXml(fileName, CanaleConfigurazione.class, canaleConfigurazione, prettyPrint);
  9139.     }
  9140.    
  9141.     /**
  9142.      * Serialize to file system in <var>file</var> the object <var>canaleConfigurazione</var> of type {@link org.openspcoop2.core.config.CanaleConfigurazione}
  9143.      *
  9144.      * @param file Xml file to serialize the object <var>canaleConfigurazione</var>
  9145.      * @param canaleConfigurazione Object to be serialized in xml file <var>fileName</var>
  9146.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9147.      */
  9148.     public void write(File file,CanaleConfigurazione canaleConfigurazione) throws SerializerException {
  9149.         this.objToXml(file, CanaleConfigurazione.class, canaleConfigurazione, false);
  9150.     }
  9151.     /**
  9152.      * Serialize to file system in <var>file</var> the object <var>canaleConfigurazione</var> of type {@link org.openspcoop2.core.config.CanaleConfigurazione}
  9153.      *
  9154.      * @param file Xml file to serialize the object <var>canaleConfigurazione</var>
  9155.      * @param canaleConfigurazione Object to be serialized in xml file <var>fileName</var>
  9156.      * @param prettyPrint if true output the XML with indenting
  9157.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9158.      */
  9159.     public void write(File file,CanaleConfigurazione canaleConfigurazione,boolean prettyPrint) throws SerializerException {
  9160.         this.objToXml(file, CanaleConfigurazione.class, canaleConfigurazione, prettyPrint);
  9161.     }
  9162.    
  9163.     /**
  9164.      * Serialize to output stream <var>out</var> the object <var>canaleConfigurazione</var> of type {@link org.openspcoop2.core.config.CanaleConfigurazione}
  9165.      *
  9166.      * @param out OutputStream to serialize the object <var>canaleConfigurazione</var>
  9167.      * @param canaleConfigurazione Object to be serialized in xml file <var>fileName</var>
  9168.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9169.      */
  9170.     public void write(OutputStream out,CanaleConfigurazione canaleConfigurazione) throws SerializerException {
  9171.         this.objToXml(out, CanaleConfigurazione.class, canaleConfigurazione, false);
  9172.     }
  9173.     /**
  9174.      * Serialize to output stream <var>out</var> the object <var>canaleConfigurazione</var> of type {@link org.openspcoop2.core.config.CanaleConfigurazione}
  9175.      *
  9176.      * @param out OutputStream to serialize the object <var>canaleConfigurazione</var>
  9177.      * @param canaleConfigurazione Object to be serialized in xml file <var>fileName</var>
  9178.      * @param prettyPrint if true output the XML with indenting
  9179.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9180.      */
  9181.     public void write(OutputStream out,CanaleConfigurazione canaleConfigurazione,boolean prettyPrint) throws SerializerException {
  9182.         this.objToXml(out, CanaleConfigurazione.class, canaleConfigurazione, prettyPrint);
  9183.     }
  9184.            
  9185.     /**
  9186.      * Serialize to byte array the object <var>canaleConfigurazione</var> of type {@link org.openspcoop2.core.config.CanaleConfigurazione}
  9187.      *
  9188.      * @param canaleConfigurazione Object to be serialized
  9189.      * @return Object to be serialized in byte array
  9190.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9191.      */
  9192.     public byte[] toByteArray(CanaleConfigurazione canaleConfigurazione) throws SerializerException {
  9193.         return this.objToXml(CanaleConfigurazione.class, canaleConfigurazione, false).toByteArray();
  9194.     }
  9195.     /**
  9196.      * Serialize to byte array the object <var>canaleConfigurazione</var> of type {@link org.openspcoop2.core.config.CanaleConfigurazione}
  9197.      *
  9198.      * @param canaleConfigurazione Object to be serialized
  9199.      * @param prettyPrint if true output the XML with indenting
  9200.      * @return Object to be serialized in byte array
  9201.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9202.      */
  9203.     public byte[] toByteArray(CanaleConfigurazione canaleConfigurazione,boolean prettyPrint) throws SerializerException {
  9204.         return this.objToXml(CanaleConfigurazione.class, canaleConfigurazione, prettyPrint).toByteArray();
  9205.     }
  9206.    
  9207.     /**
  9208.      * Serialize to String the object <var>canaleConfigurazione</var> of type {@link org.openspcoop2.core.config.CanaleConfigurazione}
  9209.      *
  9210.      * @param canaleConfigurazione Object to be serialized
  9211.      * @return Object to be serialized as String
  9212.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9213.      */
  9214.     public String toString(CanaleConfigurazione canaleConfigurazione) throws SerializerException {
  9215.         return this.objToXml(CanaleConfigurazione.class, canaleConfigurazione, false).toString();
  9216.     }
  9217.     /**
  9218.      * Serialize to String the object <var>canaleConfigurazione</var> of type {@link org.openspcoop2.core.config.CanaleConfigurazione}
  9219.      *
  9220.      * @param canaleConfigurazione Object to be serialized
  9221.      * @param prettyPrint if true output the XML with indenting
  9222.      * @return Object to be serialized as String
  9223.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9224.      */
  9225.     public String toString(CanaleConfigurazione canaleConfigurazione,boolean prettyPrint) throws SerializerException {
  9226.         return this.objToXml(CanaleConfigurazione.class, canaleConfigurazione, prettyPrint).toString();
  9227.     }
  9228.    
  9229.    
  9230.    
  9231.     /*
  9232.      =================================================================================
  9233.      Object: tracciamento-configurazione
  9234.      =================================================================================
  9235.     */
  9236.    
  9237.     /**
  9238.      * Serialize to file system in <var>fileName</var> the object <var>tracciamentoConfigurazione</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazione}
  9239.      *
  9240.      * @param fileName Xml file to serialize the object <var>tracciamentoConfigurazione</var>
  9241.      * @param tracciamentoConfigurazione Object to be serialized in xml file <var>fileName</var>
  9242.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9243.      */
  9244.     public void write(String fileName,TracciamentoConfigurazione tracciamentoConfigurazione) throws SerializerException {
  9245.         this.objToXml(fileName, TracciamentoConfigurazione.class, tracciamentoConfigurazione, false);
  9246.     }
  9247.     /**
  9248.      * Serialize to file system in <var>fileName</var> the object <var>tracciamentoConfigurazione</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazione}
  9249.      *
  9250.      * @param fileName Xml file to serialize the object <var>tracciamentoConfigurazione</var>
  9251.      * @param tracciamentoConfigurazione Object to be serialized in xml file <var>fileName</var>
  9252.      * @param prettyPrint if true output the XML with indenting
  9253.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9254.      */
  9255.     public void write(String fileName,TracciamentoConfigurazione tracciamentoConfigurazione,boolean prettyPrint) throws SerializerException {
  9256.         this.objToXml(fileName, TracciamentoConfigurazione.class, tracciamentoConfigurazione, prettyPrint);
  9257.     }
  9258.    
  9259.     /**
  9260.      * Serialize to file system in <var>file</var> the object <var>tracciamentoConfigurazione</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazione}
  9261.      *
  9262.      * @param file Xml file to serialize the object <var>tracciamentoConfigurazione</var>
  9263.      * @param tracciamentoConfigurazione Object to be serialized in xml file <var>fileName</var>
  9264.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9265.      */
  9266.     public void write(File file,TracciamentoConfigurazione tracciamentoConfigurazione) throws SerializerException {
  9267.         this.objToXml(file, TracciamentoConfigurazione.class, tracciamentoConfigurazione, false);
  9268.     }
  9269.     /**
  9270.      * Serialize to file system in <var>file</var> the object <var>tracciamentoConfigurazione</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazione}
  9271.      *
  9272.      * @param file Xml file to serialize the object <var>tracciamentoConfigurazione</var>
  9273.      * @param tracciamentoConfigurazione Object to be serialized in xml file <var>fileName</var>
  9274.      * @param prettyPrint if true output the XML with indenting
  9275.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9276.      */
  9277.     public void write(File file,TracciamentoConfigurazione tracciamentoConfigurazione,boolean prettyPrint) throws SerializerException {
  9278.         this.objToXml(file, TracciamentoConfigurazione.class, tracciamentoConfigurazione, prettyPrint);
  9279.     }
  9280.    
  9281.     /**
  9282.      * Serialize to output stream <var>out</var> the object <var>tracciamentoConfigurazione</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazione}
  9283.      *
  9284.      * @param out OutputStream to serialize the object <var>tracciamentoConfigurazione</var>
  9285.      * @param tracciamentoConfigurazione Object to be serialized in xml file <var>fileName</var>
  9286.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9287.      */
  9288.     public void write(OutputStream out,TracciamentoConfigurazione tracciamentoConfigurazione) throws SerializerException {
  9289.         this.objToXml(out, TracciamentoConfigurazione.class, tracciamentoConfigurazione, false);
  9290.     }
  9291.     /**
  9292.      * Serialize to output stream <var>out</var> the object <var>tracciamentoConfigurazione</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazione}
  9293.      *
  9294.      * @param out OutputStream to serialize the object <var>tracciamentoConfigurazione</var>
  9295.      * @param tracciamentoConfigurazione Object to be serialized in xml file <var>fileName</var>
  9296.      * @param prettyPrint if true output the XML with indenting
  9297.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9298.      */
  9299.     public void write(OutputStream out,TracciamentoConfigurazione tracciamentoConfigurazione,boolean prettyPrint) throws SerializerException {
  9300.         this.objToXml(out, TracciamentoConfigurazione.class, tracciamentoConfigurazione, prettyPrint);
  9301.     }
  9302.            
  9303.     /**
  9304.      * Serialize to byte array the object <var>tracciamentoConfigurazione</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazione}
  9305.      *
  9306.      * @param tracciamentoConfigurazione Object to be serialized
  9307.      * @return Object to be serialized in byte array
  9308.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9309.      */
  9310.     public byte[] toByteArray(TracciamentoConfigurazione tracciamentoConfigurazione) throws SerializerException {
  9311.         return this.objToXml(TracciamentoConfigurazione.class, tracciamentoConfigurazione, false).toByteArray();
  9312.     }
  9313.     /**
  9314.      * Serialize to byte array the object <var>tracciamentoConfigurazione</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazione}
  9315.      *
  9316.      * @param tracciamentoConfigurazione Object to be serialized
  9317.      * @param prettyPrint if true output the XML with indenting
  9318.      * @return Object to be serialized in byte array
  9319.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9320.      */
  9321.     public byte[] toByteArray(TracciamentoConfigurazione tracciamentoConfigurazione,boolean prettyPrint) throws SerializerException {
  9322.         return this.objToXml(TracciamentoConfigurazione.class, tracciamentoConfigurazione, prettyPrint).toByteArray();
  9323.     }
  9324.    
  9325.     /**
  9326.      * Serialize to String the object <var>tracciamentoConfigurazione</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazione}
  9327.      *
  9328.      * @param tracciamentoConfigurazione Object to be serialized
  9329.      * @return Object to be serialized as String
  9330.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9331.      */
  9332.     public String toString(TracciamentoConfigurazione tracciamentoConfigurazione) throws SerializerException {
  9333.         return this.objToXml(TracciamentoConfigurazione.class, tracciamentoConfigurazione, false).toString();
  9334.     }
  9335.     /**
  9336.      * Serialize to String the object <var>tracciamentoConfigurazione</var> of type {@link org.openspcoop2.core.config.TracciamentoConfigurazione}
  9337.      *
  9338.      * @param tracciamentoConfigurazione Object to be serialized
  9339.      * @param prettyPrint if true output the XML with indenting
  9340.      * @return Object to be serialized as String
  9341.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9342.      */
  9343.     public String toString(TracciamentoConfigurazione tracciamentoConfigurazione,boolean prettyPrint) throws SerializerException {
  9344.         return this.objToXml(TracciamentoConfigurazione.class, tracciamentoConfigurazione, prettyPrint).toString();
  9345.     }
  9346.    
  9347.    
  9348.    
  9349.     /*
  9350.      =================================================================================
  9351.      Object: configurazione-tracciamento-porta
  9352.      =================================================================================
  9353.     */
  9354.    
  9355.     /**
  9356.      * Serialize to file system in <var>fileName</var> the object <var>configurazioneTracciamentoPorta</var> of type {@link org.openspcoop2.core.config.ConfigurazioneTracciamentoPorta}
  9357.      *
  9358.      * @param fileName Xml file to serialize the object <var>configurazioneTracciamentoPorta</var>
  9359.      * @param configurazioneTracciamentoPorta Object to be serialized in xml file <var>fileName</var>
  9360.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9361.      */
  9362.     public void write(String fileName,ConfigurazioneTracciamentoPorta configurazioneTracciamentoPorta) throws SerializerException {
  9363.         this.objToXml(fileName, ConfigurazioneTracciamentoPorta.class, configurazioneTracciamentoPorta, false);
  9364.     }
  9365.     /**
  9366.      * Serialize to file system in <var>fileName</var> the object <var>configurazioneTracciamentoPorta</var> of type {@link org.openspcoop2.core.config.ConfigurazioneTracciamentoPorta}
  9367.      *
  9368.      * @param fileName Xml file to serialize the object <var>configurazioneTracciamentoPorta</var>
  9369.      * @param configurazioneTracciamentoPorta Object to be serialized in xml file <var>fileName</var>
  9370.      * @param prettyPrint if true output the XML with indenting
  9371.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9372.      */
  9373.     public void write(String fileName,ConfigurazioneTracciamentoPorta configurazioneTracciamentoPorta,boolean prettyPrint) throws SerializerException {
  9374.         this.objToXml(fileName, ConfigurazioneTracciamentoPorta.class, configurazioneTracciamentoPorta, prettyPrint);
  9375.     }
  9376.    
  9377.     /**
  9378.      * Serialize to file system in <var>file</var> the object <var>configurazioneTracciamentoPorta</var> of type {@link org.openspcoop2.core.config.ConfigurazioneTracciamentoPorta}
  9379.      *
  9380.      * @param file Xml file to serialize the object <var>configurazioneTracciamentoPorta</var>
  9381.      * @param configurazioneTracciamentoPorta Object to be serialized in xml file <var>fileName</var>
  9382.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9383.      */
  9384.     public void write(File file,ConfigurazioneTracciamentoPorta configurazioneTracciamentoPorta) throws SerializerException {
  9385.         this.objToXml(file, ConfigurazioneTracciamentoPorta.class, configurazioneTracciamentoPorta, false);
  9386.     }
  9387.     /**
  9388.      * Serialize to file system in <var>file</var> the object <var>configurazioneTracciamentoPorta</var> of type {@link org.openspcoop2.core.config.ConfigurazioneTracciamentoPorta}
  9389.      *
  9390.      * @param file Xml file to serialize the object <var>configurazioneTracciamentoPorta</var>
  9391.      * @param configurazioneTracciamentoPorta Object to be serialized in xml file <var>fileName</var>
  9392.      * @param prettyPrint if true output the XML with indenting
  9393.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9394.      */
  9395.     public void write(File file,ConfigurazioneTracciamentoPorta configurazioneTracciamentoPorta,boolean prettyPrint) throws SerializerException {
  9396.         this.objToXml(file, ConfigurazioneTracciamentoPorta.class, configurazioneTracciamentoPorta, prettyPrint);
  9397.     }
  9398.    
  9399.     /**
  9400.      * Serialize to output stream <var>out</var> the object <var>configurazioneTracciamentoPorta</var> of type {@link org.openspcoop2.core.config.ConfigurazioneTracciamentoPorta}
  9401.      *
  9402.      * @param out OutputStream to serialize the object <var>configurazioneTracciamentoPorta</var>
  9403.      * @param configurazioneTracciamentoPorta Object to be serialized in xml file <var>fileName</var>
  9404.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9405.      */
  9406.     public void write(OutputStream out,ConfigurazioneTracciamentoPorta configurazioneTracciamentoPorta) throws SerializerException {
  9407.         this.objToXml(out, ConfigurazioneTracciamentoPorta.class, configurazioneTracciamentoPorta, false);
  9408.     }
  9409.     /**
  9410.      * Serialize to output stream <var>out</var> the object <var>configurazioneTracciamentoPorta</var> of type {@link org.openspcoop2.core.config.ConfigurazioneTracciamentoPorta}
  9411.      *
  9412.      * @param out OutputStream to serialize the object <var>configurazioneTracciamentoPorta</var>
  9413.      * @param configurazioneTracciamentoPorta Object to be serialized in xml file <var>fileName</var>
  9414.      * @param prettyPrint if true output the XML with indenting
  9415.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9416.      */
  9417.     public void write(OutputStream out,ConfigurazioneTracciamentoPorta configurazioneTracciamentoPorta,boolean prettyPrint) throws SerializerException {
  9418.         this.objToXml(out, ConfigurazioneTracciamentoPorta.class, configurazioneTracciamentoPorta, prettyPrint);
  9419.     }
  9420.            
  9421.     /**
  9422.      * Serialize to byte array the object <var>configurazioneTracciamentoPorta</var> of type {@link org.openspcoop2.core.config.ConfigurazioneTracciamentoPorta}
  9423.      *
  9424.      * @param configurazioneTracciamentoPorta Object to be serialized
  9425.      * @return Object to be serialized in byte array
  9426.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9427.      */
  9428.     public byte[] toByteArray(ConfigurazioneTracciamentoPorta configurazioneTracciamentoPorta) throws SerializerException {
  9429.         return this.objToXml(ConfigurazioneTracciamentoPorta.class, configurazioneTracciamentoPorta, false).toByteArray();
  9430.     }
  9431.     /**
  9432.      * Serialize to byte array the object <var>configurazioneTracciamentoPorta</var> of type {@link org.openspcoop2.core.config.ConfigurazioneTracciamentoPorta}
  9433.      *
  9434.      * @param configurazioneTracciamentoPorta Object to be serialized
  9435.      * @param prettyPrint if true output the XML with indenting
  9436.      * @return Object to be serialized in byte array
  9437.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9438.      */
  9439.     public byte[] toByteArray(ConfigurazioneTracciamentoPorta configurazioneTracciamentoPorta,boolean prettyPrint) throws SerializerException {
  9440.         return this.objToXml(ConfigurazioneTracciamentoPorta.class, configurazioneTracciamentoPorta, prettyPrint).toByteArray();
  9441.     }
  9442.    
  9443.     /**
  9444.      * Serialize to String the object <var>configurazioneTracciamentoPorta</var> of type {@link org.openspcoop2.core.config.ConfigurazioneTracciamentoPorta}
  9445.      *
  9446.      * @param configurazioneTracciamentoPorta Object to be serialized
  9447.      * @return Object to be serialized as String
  9448.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9449.      */
  9450.     public String toString(ConfigurazioneTracciamentoPorta configurazioneTracciamentoPorta) throws SerializerException {
  9451.         return this.objToXml(ConfigurazioneTracciamentoPorta.class, configurazioneTracciamentoPorta, false).toString();
  9452.     }
  9453.     /**
  9454.      * Serialize to String the object <var>configurazioneTracciamentoPorta</var> of type {@link org.openspcoop2.core.config.ConfigurazioneTracciamentoPorta}
  9455.      *
  9456.      * @param configurazioneTracciamentoPorta Object to be serialized
  9457.      * @param prettyPrint if true output the XML with indenting
  9458.      * @return Object to be serialized as String
  9459.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9460.      */
  9461.     public String toString(ConfigurazioneTracciamentoPorta configurazioneTracciamentoPorta,boolean prettyPrint) throws SerializerException {
  9462.         return this.objToXml(ConfigurazioneTracciamentoPorta.class, configurazioneTracciamentoPorta, prettyPrint).toString();
  9463.     }
  9464.    
  9465.    
  9466.    
  9467.     /*
  9468.      =================================================================================
  9469.      Object: transazioni
  9470.      =================================================================================
  9471.     */
  9472.    
  9473.     /**
  9474.      * Serialize to file system in <var>fileName</var> the object <var>transazioni</var> of type {@link org.openspcoop2.core.config.Transazioni}
  9475.      *
  9476.      * @param fileName Xml file to serialize the object <var>transazioni</var>
  9477.      * @param transazioni Object to be serialized in xml file <var>fileName</var>
  9478.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9479.      */
  9480.     public void write(String fileName,Transazioni transazioni) throws SerializerException {
  9481.         this.objToXml(fileName, Transazioni.class, transazioni, false);
  9482.     }
  9483.     /**
  9484.      * Serialize to file system in <var>fileName</var> the object <var>transazioni</var> of type {@link org.openspcoop2.core.config.Transazioni}
  9485.      *
  9486.      * @param fileName Xml file to serialize the object <var>transazioni</var>
  9487.      * @param transazioni Object to be serialized in xml file <var>fileName</var>
  9488.      * @param prettyPrint if true output the XML with indenting
  9489.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9490.      */
  9491.     public void write(String fileName,Transazioni transazioni,boolean prettyPrint) throws SerializerException {
  9492.         this.objToXml(fileName, Transazioni.class, transazioni, prettyPrint);
  9493.     }
  9494.    
  9495.     /**
  9496.      * Serialize to file system in <var>file</var> the object <var>transazioni</var> of type {@link org.openspcoop2.core.config.Transazioni}
  9497.      *
  9498.      * @param file Xml file to serialize the object <var>transazioni</var>
  9499.      * @param transazioni Object to be serialized in xml file <var>fileName</var>
  9500.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9501.      */
  9502.     public void write(File file,Transazioni transazioni) throws SerializerException {
  9503.         this.objToXml(file, Transazioni.class, transazioni, false);
  9504.     }
  9505.     /**
  9506.      * Serialize to file system in <var>file</var> the object <var>transazioni</var> of type {@link org.openspcoop2.core.config.Transazioni}
  9507.      *
  9508.      * @param file Xml file to serialize the object <var>transazioni</var>
  9509.      * @param transazioni Object to be serialized in xml file <var>fileName</var>
  9510.      * @param prettyPrint if true output the XML with indenting
  9511.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9512.      */
  9513.     public void write(File file,Transazioni transazioni,boolean prettyPrint) throws SerializerException {
  9514.         this.objToXml(file, Transazioni.class, transazioni, prettyPrint);
  9515.     }
  9516.    
  9517.     /**
  9518.      * Serialize to output stream <var>out</var> the object <var>transazioni</var> of type {@link org.openspcoop2.core.config.Transazioni}
  9519.      *
  9520.      * @param out OutputStream to serialize the object <var>transazioni</var>
  9521.      * @param transazioni Object to be serialized in xml file <var>fileName</var>
  9522.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9523.      */
  9524.     public void write(OutputStream out,Transazioni transazioni) throws SerializerException {
  9525.         this.objToXml(out, Transazioni.class, transazioni, false);
  9526.     }
  9527.     /**
  9528.      * Serialize to output stream <var>out</var> the object <var>transazioni</var> of type {@link org.openspcoop2.core.config.Transazioni}
  9529.      *
  9530.      * @param out OutputStream to serialize the object <var>transazioni</var>
  9531.      * @param transazioni Object to be serialized in xml file <var>fileName</var>
  9532.      * @param prettyPrint if true output the XML with indenting
  9533.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9534.      */
  9535.     public void write(OutputStream out,Transazioni transazioni,boolean prettyPrint) throws SerializerException {
  9536.         this.objToXml(out, Transazioni.class, transazioni, prettyPrint);
  9537.     }
  9538.            
  9539.     /**
  9540.      * Serialize to byte array the object <var>transazioni</var> of type {@link org.openspcoop2.core.config.Transazioni}
  9541.      *
  9542.      * @param transazioni Object to be serialized
  9543.      * @return Object to be serialized in byte array
  9544.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9545.      */
  9546.     public byte[] toByteArray(Transazioni transazioni) throws SerializerException {
  9547.         return this.objToXml(Transazioni.class, transazioni, false).toByteArray();
  9548.     }
  9549.     /**
  9550.      * Serialize to byte array the object <var>transazioni</var> of type {@link org.openspcoop2.core.config.Transazioni}
  9551.      *
  9552.      * @param transazioni Object to be serialized
  9553.      * @param prettyPrint if true output the XML with indenting
  9554.      * @return Object to be serialized in byte array
  9555.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9556.      */
  9557.     public byte[] toByteArray(Transazioni transazioni,boolean prettyPrint) throws SerializerException {
  9558.         return this.objToXml(Transazioni.class, transazioni, prettyPrint).toByteArray();
  9559.     }
  9560.    
  9561.     /**
  9562.      * Serialize to String the object <var>transazioni</var> of type {@link org.openspcoop2.core.config.Transazioni}
  9563.      *
  9564.      * @param transazioni Object to be serialized
  9565.      * @return Object to be serialized as String
  9566.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9567.      */
  9568.     public String toString(Transazioni transazioni) throws SerializerException {
  9569.         return this.objToXml(Transazioni.class, transazioni, false).toString();
  9570.     }
  9571.     /**
  9572.      * Serialize to String the object <var>transazioni</var> of type {@link org.openspcoop2.core.config.Transazioni}
  9573.      *
  9574.      * @param transazioni Object to be serialized
  9575.      * @param prettyPrint if true output the XML with indenting
  9576.      * @return Object to be serialized as String
  9577.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9578.      */
  9579.     public String toString(Transazioni transazioni,boolean prettyPrint) throws SerializerException {
  9580.         return this.objToXml(Transazioni.class, transazioni, prettyPrint).toString();
  9581.     }
  9582.    
  9583.    
  9584.    
  9585.     /*
  9586.      =================================================================================
  9587.      Object: cors-configurazione-headers
  9588.      =================================================================================
  9589.     */
  9590.    
  9591.     /**
  9592.      * Serialize to file system in <var>fileName</var> the object <var>corsConfigurazioneHeaders</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneHeaders}
  9593.      *
  9594.      * @param fileName Xml file to serialize the object <var>corsConfigurazioneHeaders</var>
  9595.      * @param corsConfigurazioneHeaders Object to be serialized in xml file <var>fileName</var>
  9596.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9597.      */
  9598.     public void write(String fileName,CorsConfigurazioneHeaders corsConfigurazioneHeaders) throws SerializerException {
  9599.         this.objToXml(fileName, CorsConfigurazioneHeaders.class, corsConfigurazioneHeaders, false);
  9600.     }
  9601.     /**
  9602.      * Serialize to file system in <var>fileName</var> the object <var>corsConfigurazioneHeaders</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneHeaders}
  9603.      *
  9604.      * @param fileName Xml file to serialize the object <var>corsConfigurazioneHeaders</var>
  9605.      * @param corsConfigurazioneHeaders Object to be serialized in xml file <var>fileName</var>
  9606.      * @param prettyPrint if true output the XML with indenting
  9607.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9608.      */
  9609.     public void write(String fileName,CorsConfigurazioneHeaders corsConfigurazioneHeaders,boolean prettyPrint) throws SerializerException {
  9610.         this.objToXml(fileName, CorsConfigurazioneHeaders.class, corsConfigurazioneHeaders, prettyPrint);
  9611.     }
  9612.    
  9613.     /**
  9614.      * Serialize to file system in <var>file</var> the object <var>corsConfigurazioneHeaders</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneHeaders}
  9615.      *
  9616.      * @param file Xml file to serialize the object <var>corsConfigurazioneHeaders</var>
  9617.      * @param corsConfigurazioneHeaders Object to be serialized in xml file <var>fileName</var>
  9618.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9619.      */
  9620.     public void write(File file,CorsConfigurazioneHeaders corsConfigurazioneHeaders) throws SerializerException {
  9621.         this.objToXml(file, CorsConfigurazioneHeaders.class, corsConfigurazioneHeaders, false);
  9622.     }
  9623.     /**
  9624.      * Serialize to file system in <var>file</var> the object <var>corsConfigurazioneHeaders</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneHeaders}
  9625.      *
  9626.      * @param file Xml file to serialize the object <var>corsConfigurazioneHeaders</var>
  9627.      * @param corsConfigurazioneHeaders Object to be serialized in xml file <var>fileName</var>
  9628.      * @param prettyPrint if true output the XML with indenting
  9629.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9630.      */
  9631.     public void write(File file,CorsConfigurazioneHeaders corsConfigurazioneHeaders,boolean prettyPrint) throws SerializerException {
  9632.         this.objToXml(file, CorsConfigurazioneHeaders.class, corsConfigurazioneHeaders, prettyPrint);
  9633.     }
  9634.    
  9635.     /**
  9636.      * Serialize to output stream <var>out</var> the object <var>corsConfigurazioneHeaders</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneHeaders}
  9637.      *
  9638.      * @param out OutputStream to serialize the object <var>corsConfigurazioneHeaders</var>
  9639.      * @param corsConfigurazioneHeaders Object to be serialized in xml file <var>fileName</var>
  9640.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9641.      */
  9642.     public void write(OutputStream out,CorsConfigurazioneHeaders corsConfigurazioneHeaders) throws SerializerException {
  9643.         this.objToXml(out, CorsConfigurazioneHeaders.class, corsConfigurazioneHeaders, false);
  9644.     }
  9645.     /**
  9646.      * Serialize to output stream <var>out</var> the object <var>corsConfigurazioneHeaders</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneHeaders}
  9647.      *
  9648.      * @param out OutputStream to serialize the object <var>corsConfigurazioneHeaders</var>
  9649.      * @param corsConfigurazioneHeaders Object to be serialized in xml file <var>fileName</var>
  9650.      * @param prettyPrint if true output the XML with indenting
  9651.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9652.      */
  9653.     public void write(OutputStream out,CorsConfigurazioneHeaders corsConfigurazioneHeaders,boolean prettyPrint) throws SerializerException {
  9654.         this.objToXml(out, CorsConfigurazioneHeaders.class, corsConfigurazioneHeaders, prettyPrint);
  9655.     }
  9656.            
  9657.     /**
  9658.      * Serialize to byte array the object <var>corsConfigurazioneHeaders</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneHeaders}
  9659.      *
  9660.      * @param corsConfigurazioneHeaders Object to be serialized
  9661.      * @return Object to be serialized in byte array
  9662.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9663.      */
  9664.     public byte[] toByteArray(CorsConfigurazioneHeaders corsConfigurazioneHeaders) throws SerializerException {
  9665.         return this.objToXml(CorsConfigurazioneHeaders.class, corsConfigurazioneHeaders, false).toByteArray();
  9666.     }
  9667.     /**
  9668.      * Serialize to byte array the object <var>corsConfigurazioneHeaders</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneHeaders}
  9669.      *
  9670.      * @param corsConfigurazioneHeaders Object to be serialized
  9671.      * @param prettyPrint if true output the XML with indenting
  9672.      * @return Object to be serialized in byte array
  9673.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9674.      */
  9675.     public byte[] toByteArray(CorsConfigurazioneHeaders corsConfigurazioneHeaders,boolean prettyPrint) throws SerializerException {
  9676.         return this.objToXml(CorsConfigurazioneHeaders.class, corsConfigurazioneHeaders, prettyPrint).toByteArray();
  9677.     }
  9678.    
  9679.     /**
  9680.      * Serialize to String the object <var>corsConfigurazioneHeaders</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneHeaders}
  9681.      *
  9682.      * @param corsConfigurazioneHeaders Object to be serialized
  9683.      * @return Object to be serialized as String
  9684.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9685.      */
  9686.     public String toString(CorsConfigurazioneHeaders corsConfigurazioneHeaders) throws SerializerException {
  9687.         return this.objToXml(CorsConfigurazioneHeaders.class, corsConfigurazioneHeaders, false).toString();
  9688.     }
  9689.     /**
  9690.      * Serialize to String the object <var>corsConfigurazioneHeaders</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneHeaders}
  9691.      *
  9692.      * @param corsConfigurazioneHeaders Object to be serialized
  9693.      * @param prettyPrint if true output the XML with indenting
  9694.      * @return Object to be serialized as String
  9695.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9696.      */
  9697.     public String toString(CorsConfigurazioneHeaders corsConfigurazioneHeaders,boolean prettyPrint) throws SerializerException {
  9698.         return this.objToXml(CorsConfigurazioneHeaders.class, corsConfigurazioneHeaders, prettyPrint).toString();
  9699.     }
  9700.    
  9701.    
  9702.    
  9703.     /*
  9704.      =================================================================================
  9705.      Object: canali-configurazione
  9706.      =================================================================================
  9707.     */
  9708.    
  9709.     /**
  9710.      * Serialize to file system in <var>fileName</var> the object <var>canaliConfigurazione</var> of type {@link org.openspcoop2.core.config.CanaliConfigurazione}
  9711.      *
  9712.      * @param fileName Xml file to serialize the object <var>canaliConfigurazione</var>
  9713.      * @param canaliConfigurazione Object to be serialized in xml file <var>fileName</var>
  9714.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9715.      */
  9716.     public void write(String fileName,CanaliConfigurazione canaliConfigurazione) throws SerializerException {
  9717.         this.objToXml(fileName, CanaliConfigurazione.class, canaliConfigurazione, false);
  9718.     }
  9719.     /**
  9720.      * Serialize to file system in <var>fileName</var> the object <var>canaliConfigurazione</var> of type {@link org.openspcoop2.core.config.CanaliConfigurazione}
  9721.      *
  9722.      * @param fileName Xml file to serialize the object <var>canaliConfigurazione</var>
  9723.      * @param canaliConfigurazione Object to be serialized in xml file <var>fileName</var>
  9724.      * @param prettyPrint if true output the XML with indenting
  9725.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9726.      */
  9727.     public void write(String fileName,CanaliConfigurazione canaliConfigurazione,boolean prettyPrint) throws SerializerException {
  9728.         this.objToXml(fileName, CanaliConfigurazione.class, canaliConfigurazione, prettyPrint);
  9729.     }
  9730.    
  9731.     /**
  9732.      * Serialize to file system in <var>file</var> the object <var>canaliConfigurazione</var> of type {@link org.openspcoop2.core.config.CanaliConfigurazione}
  9733.      *
  9734.      * @param file Xml file to serialize the object <var>canaliConfigurazione</var>
  9735.      * @param canaliConfigurazione Object to be serialized in xml file <var>fileName</var>
  9736.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9737.      */
  9738.     public void write(File file,CanaliConfigurazione canaliConfigurazione) throws SerializerException {
  9739.         this.objToXml(file, CanaliConfigurazione.class, canaliConfigurazione, false);
  9740.     }
  9741.     /**
  9742.      * Serialize to file system in <var>file</var> the object <var>canaliConfigurazione</var> of type {@link org.openspcoop2.core.config.CanaliConfigurazione}
  9743.      *
  9744.      * @param file Xml file to serialize the object <var>canaliConfigurazione</var>
  9745.      * @param canaliConfigurazione Object to be serialized in xml file <var>fileName</var>
  9746.      * @param prettyPrint if true output the XML with indenting
  9747.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9748.      */
  9749.     public void write(File file,CanaliConfigurazione canaliConfigurazione,boolean prettyPrint) throws SerializerException {
  9750.         this.objToXml(file, CanaliConfigurazione.class, canaliConfigurazione, prettyPrint);
  9751.     }
  9752.    
  9753.     /**
  9754.      * Serialize to output stream <var>out</var> the object <var>canaliConfigurazione</var> of type {@link org.openspcoop2.core.config.CanaliConfigurazione}
  9755.      *
  9756.      * @param out OutputStream to serialize the object <var>canaliConfigurazione</var>
  9757.      * @param canaliConfigurazione Object to be serialized in xml file <var>fileName</var>
  9758.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9759.      */
  9760.     public void write(OutputStream out,CanaliConfigurazione canaliConfigurazione) throws SerializerException {
  9761.         this.objToXml(out, CanaliConfigurazione.class, canaliConfigurazione, false);
  9762.     }
  9763.     /**
  9764.      * Serialize to output stream <var>out</var> the object <var>canaliConfigurazione</var> of type {@link org.openspcoop2.core.config.CanaliConfigurazione}
  9765.      *
  9766.      * @param out OutputStream to serialize the object <var>canaliConfigurazione</var>
  9767.      * @param canaliConfigurazione Object to be serialized in xml file <var>fileName</var>
  9768.      * @param prettyPrint if true output the XML with indenting
  9769.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9770.      */
  9771.     public void write(OutputStream out,CanaliConfigurazione canaliConfigurazione,boolean prettyPrint) throws SerializerException {
  9772.         this.objToXml(out, CanaliConfigurazione.class, canaliConfigurazione, prettyPrint);
  9773.     }
  9774.            
  9775.     /**
  9776.      * Serialize to byte array the object <var>canaliConfigurazione</var> of type {@link org.openspcoop2.core.config.CanaliConfigurazione}
  9777.      *
  9778.      * @param canaliConfigurazione Object to be serialized
  9779.      * @return Object to be serialized in byte array
  9780.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9781.      */
  9782.     public byte[] toByteArray(CanaliConfigurazione canaliConfigurazione) throws SerializerException {
  9783.         return this.objToXml(CanaliConfigurazione.class, canaliConfigurazione, false).toByteArray();
  9784.     }
  9785.     /**
  9786.      * Serialize to byte array the object <var>canaliConfigurazione</var> of type {@link org.openspcoop2.core.config.CanaliConfigurazione}
  9787.      *
  9788.      * @param canaliConfigurazione Object to be serialized
  9789.      * @param prettyPrint if true output the XML with indenting
  9790.      * @return Object to be serialized in byte array
  9791.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9792.      */
  9793.     public byte[] toByteArray(CanaliConfigurazione canaliConfigurazione,boolean prettyPrint) throws SerializerException {
  9794.         return this.objToXml(CanaliConfigurazione.class, canaliConfigurazione, prettyPrint).toByteArray();
  9795.     }
  9796.    
  9797.     /**
  9798.      * Serialize to String the object <var>canaliConfigurazione</var> of type {@link org.openspcoop2.core.config.CanaliConfigurazione}
  9799.      *
  9800.      * @param canaliConfigurazione Object to be serialized
  9801.      * @return Object to be serialized as String
  9802.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9803.      */
  9804.     public String toString(CanaliConfigurazione canaliConfigurazione) throws SerializerException {
  9805.         return this.objToXml(CanaliConfigurazione.class, canaliConfigurazione, false).toString();
  9806.     }
  9807.     /**
  9808.      * Serialize to String the object <var>canaliConfigurazione</var> of type {@link org.openspcoop2.core.config.CanaliConfigurazione}
  9809.      *
  9810.      * @param canaliConfigurazione Object to be serialized
  9811.      * @param prettyPrint if true output the XML with indenting
  9812.      * @return Object to be serialized as String
  9813.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9814.      */
  9815.     public String toString(CanaliConfigurazione canaliConfigurazione,boolean prettyPrint) throws SerializerException {
  9816.         return this.objToXml(CanaliConfigurazione.class, canaliConfigurazione, prettyPrint).toString();
  9817.     }
  9818.    
  9819.    
  9820.    
  9821.     /*
  9822.      =================================================================================
  9823.      Object: canale-configurazione-nodo
  9824.      =================================================================================
  9825.     */
  9826.    
  9827.     /**
  9828.      * Serialize to file system in <var>fileName</var> the object <var>canaleConfigurazioneNodo</var> of type {@link org.openspcoop2.core.config.CanaleConfigurazioneNodo}
  9829.      *
  9830.      * @param fileName Xml file to serialize the object <var>canaleConfigurazioneNodo</var>
  9831.      * @param canaleConfigurazioneNodo Object to be serialized in xml file <var>fileName</var>
  9832.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9833.      */
  9834.     public void write(String fileName,CanaleConfigurazioneNodo canaleConfigurazioneNodo) throws SerializerException {
  9835.         this.objToXml(fileName, CanaleConfigurazioneNodo.class, canaleConfigurazioneNodo, false);
  9836.     }
  9837.     /**
  9838.      * Serialize to file system in <var>fileName</var> the object <var>canaleConfigurazioneNodo</var> of type {@link org.openspcoop2.core.config.CanaleConfigurazioneNodo}
  9839.      *
  9840.      * @param fileName Xml file to serialize the object <var>canaleConfigurazioneNodo</var>
  9841.      * @param canaleConfigurazioneNodo Object to be serialized in xml file <var>fileName</var>
  9842.      * @param prettyPrint if true output the XML with indenting
  9843.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9844.      */
  9845.     public void write(String fileName,CanaleConfigurazioneNodo canaleConfigurazioneNodo,boolean prettyPrint) throws SerializerException {
  9846.         this.objToXml(fileName, CanaleConfigurazioneNodo.class, canaleConfigurazioneNodo, prettyPrint);
  9847.     }
  9848.    
  9849.     /**
  9850.      * Serialize to file system in <var>file</var> the object <var>canaleConfigurazioneNodo</var> of type {@link org.openspcoop2.core.config.CanaleConfigurazioneNodo}
  9851.      *
  9852.      * @param file Xml file to serialize the object <var>canaleConfigurazioneNodo</var>
  9853.      * @param canaleConfigurazioneNodo Object to be serialized in xml file <var>fileName</var>
  9854.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9855.      */
  9856.     public void write(File file,CanaleConfigurazioneNodo canaleConfigurazioneNodo) throws SerializerException {
  9857.         this.objToXml(file, CanaleConfigurazioneNodo.class, canaleConfigurazioneNodo, false);
  9858.     }
  9859.     /**
  9860.      * Serialize to file system in <var>file</var> the object <var>canaleConfigurazioneNodo</var> of type {@link org.openspcoop2.core.config.CanaleConfigurazioneNodo}
  9861.      *
  9862.      * @param file Xml file to serialize the object <var>canaleConfigurazioneNodo</var>
  9863.      * @param canaleConfigurazioneNodo Object to be serialized in xml file <var>fileName</var>
  9864.      * @param prettyPrint if true output the XML with indenting
  9865.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9866.      */
  9867.     public void write(File file,CanaleConfigurazioneNodo canaleConfigurazioneNodo,boolean prettyPrint) throws SerializerException {
  9868.         this.objToXml(file, CanaleConfigurazioneNodo.class, canaleConfigurazioneNodo, prettyPrint);
  9869.     }
  9870.    
  9871.     /**
  9872.      * Serialize to output stream <var>out</var> the object <var>canaleConfigurazioneNodo</var> of type {@link org.openspcoop2.core.config.CanaleConfigurazioneNodo}
  9873.      *
  9874.      * @param out OutputStream to serialize the object <var>canaleConfigurazioneNodo</var>
  9875.      * @param canaleConfigurazioneNodo Object to be serialized in xml file <var>fileName</var>
  9876.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9877.      */
  9878.     public void write(OutputStream out,CanaleConfigurazioneNodo canaleConfigurazioneNodo) throws SerializerException {
  9879.         this.objToXml(out, CanaleConfigurazioneNodo.class, canaleConfigurazioneNodo, false);
  9880.     }
  9881.     /**
  9882.      * Serialize to output stream <var>out</var> the object <var>canaleConfigurazioneNodo</var> of type {@link org.openspcoop2.core.config.CanaleConfigurazioneNodo}
  9883.      *
  9884.      * @param out OutputStream to serialize the object <var>canaleConfigurazioneNodo</var>
  9885.      * @param canaleConfigurazioneNodo Object to be serialized in xml file <var>fileName</var>
  9886.      * @param prettyPrint if true output the XML with indenting
  9887.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9888.      */
  9889.     public void write(OutputStream out,CanaleConfigurazioneNodo canaleConfigurazioneNodo,boolean prettyPrint) throws SerializerException {
  9890.         this.objToXml(out, CanaleConfigurazioneNodo.class, canaleConfigurazioneNodo, prettyPrint);
  9891.     }
  9892.            
  9893.     /**
  9894.      * Serialize to byte array the object <var>canaleConfigurazioneNodo</var> of type {@link org.openspcoop2.core.config.CanaleConfigurazioneNodo}
  9895.      *
  9896.      * @param canaleConfigurazioneNodo Object to be serialized
  9897.      * @return Object to be serialized in byte array
  9898.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9899.      */
  9900.     public byte[] toByteArray(CanaleConfigurazioneNodo canaleConfigurazioneNodo) throws SerializerException {
  9901.         return this.objToXml(CanaleConfigurazioneNodo.class, canaleConfigurazioneNodo, false).toByteArray();
  9902.     }
  9903.     /**
  9904.      * Serialize to byte array the object <var>canaleConfigurazioneNodo</var> of type {@link org.openspcoop2.core.config.CanaleConfigurazioneNodo}
  9905.      *
  9906.      * @param canaleConfigurazioneNodo Object to be serialized
  9907.      * @param prettyPrint if true output the XML with indenting
  9908.      * @return Object to be serialized in byte array
  9909.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9910.      */
  9911.     public byte[] toByteArray(CanaleConfigurazioneNodo canaleConfigurazioneNodo,boolean prettyPrint) throws SerializerException {
  9912.         return this.objToXml(CanaleConfigurazioneNodo.class, canaleConfigurazioneNodo, prettyPrint).toByteArray();
  9913.     }
  9914.    
  9915.     /**
  9916.      * Serialize to String the object <var>canaleConfigurazioneNodo</var> of type {@link org.openspcoop2.core.config.CanaleConfigurazioneNodo}
  9917.      *
  9918.      * @param canaleConfigurazioneNodo Object to be serialized
  9919.      * @return Object to be serialized as String
  9920.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9921.      */
  9922.     public String toString(CanaleConfigurazioneNodo canaleConfigurazioneNodo) throws SerializerException {
  9923.         return this.objToXml(CanaleConfigurazioneNodo.class, canaleConfigurazioneNodo, false).toString();
  9924.     }
  9925.     /**
  9926.      * Serialize to String the object <var>canaleConfigurazioneNodo</var> of type {@link org.openspcoop2.core.config.CanaleConfigurazioneNodo}
  9927.      *
  9928.      * @param canaleConfigurazioneNodo Object to be serialized
  9929.      * @param prettyPrint if true output the XML with indenting
  9930.      * @return Object to be serialized as String
  9931.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9932.      */
  9933.     public String toString(CanaleConfigurazioneNodo canaleConfigurazioneNodo,boolean prettyPrint) throws SerializerException {
  9934.         return this.objToXml(CanaleConfigurazioneNodo.class, canaleConfigurazioneNodo, prettyPrint).toString();
  9935.     }
  9936.    
  9937.    
  9938.    
  9939.     /*
  9940.      =================================================================================
  9941.      Object: trasformazione-regola-applicabilita-richiesta
  9942.      =================================================================================
  9943.     */
  9944.    
  9945.     /**
  9946.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioneRegolaApplicabilitaRichiesta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaRichiesta}
  9947.      *
  9948.      * @param fileName Xml file to serialize the object <var>trasformazioneRegolaApplicabilitaRichiesta</var>
  9949.      * @param trasformazioneRegolaApplicabilitaRichiesta Object to be serialized in xml file <var>fileName</var>
  9950.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9951.      */
  9952.     public void write(String fileName,TrasformazioneRegolaApplicabilitaRichiesta trasformazioneRegolaApplicabilitaRichiesta) throws SerializerException {
  9953.         this.objToXml(fileName, TrasformazioneRegolaApplicabilitaRichiesta.class, trasformazioneRegolaApplicabilitaRichiesta, false);
  9954.     }
  9955.     /**
  9956.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioneRegolaApplicabilitaRichiesta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaRichiesta}
  9957.      *
  9958.      * @param fileName Xml file to serialize the object <var>trasformazioneRegolaApplicabilitaRichiesta</var>
  9959.      * @param trasformazioneRegolaApplicabilitaRichiesta Object to be serialized in xml file <var>fileName</var>
  9960.      * @param prettyPrint if true output the XML with indenting
  9961.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9962.      */
  9963.     public void write(String fileName,TrasformazioneRegolaApplicabilitaRichiesta trasformazioneRegolaApplicabilitaRichiesta,boolean prettyPrint) throws SerializerException {
  9964.         this.objToXml(fileName, TrasformazioneRegolaApplicabilitaRichiesta.class, trasformazioneRegolaApplicabilitaRichiesta, prettyPrint);
  9965.     }
  9966.    
  9967.     /**
  9968.      * Serialize to file system in <var>file</var> the object <var>trasformazioneRegolaApplicabilitaRichiesta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaRichiesta}
  9969.      *
  9970.      * @param file Xml file to serialize the object <var>trasformazioneRegolaApplicabilitaRichiesta</var>
  9971.      * @param trasformazioneRegolaApplicabilitaRichiesta Object to be serialized in xml file <var>fileName</var>
  9972.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9973.      */
  9974.     public void write(File file,TrasformazioneRegolaApplicabilitaRichiesta trasformazioneRegolaApplicabilitaRichiesta) throws SerializerException {
  9975.         this.objToXml(file, TrasformazioneRegolaApplicabilitaRichiesta.class, trasformazioneRegolaApplicabilitaRichiesta, false);
  9976.     }
  9977.     /**
  9978.      * Serialize to file system in <var>file</var> the object <var>trasformazioneRegolaApplicabilitaRichiesta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaRichiesta}
  9979.      *
  9980.      * @param file Xml file to serialize the object <var>trasformazioneRegolaApplicabilitaRichiesta</var>
  9981.      * @param trasformazioneRegolaApplicabilitaRichiesta Object to be serialized in xml file <var>fileName</var>
  9982.      * @param prettyPrint if true output the XML with indenting
  9983.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9984.      */
  9985.     public void write(File file,TrasformazioneRegolaApplicabilitaRichiesta trasformazioneRegolaApplicabilitaRichiesta,boolean prettyPrint) throws SerializerException {
  9986.         this.objToXml(file, TrasformazioneRegolaApplicabilitaRichiesta.class, trasformazioneRegolaApplicabilitaRichiesta, prettyPrint);
  9987.     }
  9988.    
  9989.     /**
  9990.      * Serialize to output stream <var>out</var> the object <var>trasformazioneRegolaApplicabilitaRichiesta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaRichiesta}
  9991.      *
  9992.      * @param out OutputStream to serialize the object <var>trasformazioneRegolaApplicabilitaRichiesta</var>
  9993.      * @param trasformazioneRegolaApplicabilitaRichiesta Object to be serialized in xml file <var>fileName</var>
  9994.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  9995.      */
  9996.     public void write(OutputStream out,TrasformazioneRegolaApplicabilitaRichiesta trasformazioneRegolaApplicabilitaRichiesta) throws SerializerException {
  9997.         this.objToXml(out, TrasformazioneRegolaApplicabilitaRichiesta.class, trasformazioneRegolaApplicabilitaRichiesta, false);
  9998.     }
  9999.     /**
  10000.      * Serialize to output stream <var>out</var> the object <var>trasformazioneRegolaApplicabilitaRichiesta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaRichiesta}
  10001.      *
  10002.      * @param out OutputStream to serialize the object <var>trasformazioneRegolaApplicabilitaRichiesta</var>
  10003.      * @param trasformazioneRegolaApplicabilitaRichiesta Object to be serialized in xml file <var>fileName</var>
  10004.      * @param prettyPrint if true output the XML with indenting
  10005.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10006.      */
  10007.     public void write(OutputStream out,TrasformazioneRegolaApplicabilitaRichiesta trasformazioneRegolaApplicabilitaRichiesta,boolean prettyPrint) throws SerializerException {
  10008.         this.objToXml(out, TrasformazioneRegolaApplicabilitaRichiesta.class, trasformazioneRegolaApplicabilitaRichiesta, prettyPrint);
  10009.     }
  10010.            
  10011.     /**
  10012.      * Serialize to byte array the object <var>trasformazioneRegolaApplicabilitaRichiesta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaRichiesta}
  10013.      *
  10014.      * @param trasformazioneRegolaApplicabilitaRichiesta Object to be serialized
  10015.      * @return Object to be serialized in byte array
  10016.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10017.      */
  10018.     public byte[] toByteArray(TrasformazioneRegolaApplicabilitaRichiesta trasformazioneRegolaApplicabilitaRichiesta) throws SerializerException {
  10019.         return this.objToXml(TrasformazioneRegolaApplicabilitaRichiesta.class, trasformazioneRegolaApplicabilitaRichiesta, false).toByteArray();
  10020.     }
  10021.     /**
  10022.      * Serialize to byte array the object <var>trasformazioneRegolaApplicabilitaRichiesta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaRichiesta}
  10023.      *
  10024.      * @param trasformazioneRegolaApplicabilitaRichiesta Object to be serialized
  10025.      * @param prettyPrint if true output the XML with indenting
  10026.      * @return Object to be serialized in byte array
  10027.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10028.      */
  10029.     public byte[] toByteArray(TrasformazioneRegolaApplicabilitaRichiesta trasformazioneRegolaApplicabilitaRichiesta,boolean prettyPrint) throws SerializerException {
  10030.         return this.objToXml(TrasformazioneRegolaApplicabilitaRichiesta.class, trasformazioneRegolaApplicabilitaRichiesta, prettyPrint).toByteArray();
  10031.     }
  10032.    
  10033.     /**
  10034.      * Serialize to String the object <var>trasformazioneRegolaApplicabilitaRichiesta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaRichiesta}
  10035.      *
  10036.      * @param trasformazioneRegolaApplicabilitaRichiesta Object to be serialized
  10037.      * @return Object to be serialized as String
  10038.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10039.      */
  10040.     public String toString(TrasformazioneRegolaApplicabilitaRichiesta trasformazioneRegolaApplicabilitaRichiesta) throws SerializerException {
  10041.         return this.objToXml(TrasformazioneRegolaApplicabilitaRichiesta.class, trasformazioneRegolaApplicabilitaRichiesta, false).toString();
  10042.     }
  10043.     /**
  10044.      * Serialize to String the object <var>trasformazioneRegolaApplicabilitaRichiesta</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaRichiesta}
  10045.      *
  10046.      * @param trasformazioneRegolaApplicabilitaRichiesta Object to be serialized
  10047.      * @param prettyPrint if true output the XML with indenting
  10048.      * @return Object to be serialized as String
  10049.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10050.      */
  10051.     public String toString(TrasformazioneRegolaApplicabilitaRichiesta trasformazioneRegolaApplicabilitaRichiesta,boolean prettyPrint) throws SerializerException {
  10052.         return this.objToXml(TrasformazioneRegolaApplicabilitaRichiesta.class, trasformazioneRegolaApplicabilitaRichiesta, prettyPrint).toString();
  10053.     }
  10054.    
  10055.    
  10056.    
  10057.     /*
  10058.      =================================================================================
  10059.      Object: trasformazione-regola-applicabilita-soggetto
  10060.      =================================================================================
  10061.     */
  10062.    
  10063.     /**
  10064.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioneRegolaApplicabilitaSoggetto</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaSoggetto}
  10065.      *
  10066.      * @param fileName Xml file to serialize the object <var>trasformazioneRegolaApplicabilitaSoggetto</var>
  10067.      * @param trasformazioneRegolaApplicabilitaSoggetto Object to be serialized in xml file <var>fileName</var>
  10068.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10069.      */
  10070.     public void write(String fileName,TrasformazioneRegolaApplicabilitaSoggetto trasformazioneRegolaApplicabilitaSoggetto) throws SerializerException {
  10071.         this.objToXml(fileName, TrasformazioneRegolaApplicabilitaSoggetto.class, trasformazioneRegolaApplicabilitaSoggetto, false);
  10072.     }
  10073.     /**
  10074.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioneRegolaApplicabilitaSoggetto</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaSoggetto}
  10075.      *
  10076.      * @param fileName Xml file to serialize the object <var>trasformazioneRegolaApplicabilitaSoggetto</var>
  10077.      * @param trasformazioneRegolaApplicabilitaSoggetto Object to be serialized in xml file <var>fileName</var>
  10078.      * @param prettyPrint if true output the XML with indenting
  10079.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10080.      */
  10081.     public void write(String fileName,TrasformazioneRegolaApplicabilitaSoggetto trasformazioneRegolaApplicabilitaSoggetto,boolean prettyPrint) throws SerializerException {
  10082.         this.objToXml(fileName, TrasformazioneRegolaApplicabilitaSoggetto.class, trasformazioneRegolaApplicabilitaSoggetto, prettyPrint);
  10083.     }
  10084.    
  10085.     /**
  10086.      * Serialize to file system in <var>file</var> the object <var>trasformazioneRegolaApplicabilitaSoggetto</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaSoggetto}
  10087.      *
  10088.      * @param file Xml file to serialize the object <var>trasformazioneRegolaApplicabilitaSoggetto</var>
  10089.      * @param trasformazioneRegolaApplicabilitaSoggetto Object to be serialized in xml file <var>fileName</var>
  10090.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10091.      */
  10092.     public void write(File file,TrasformazioneRegolaApplicabilitaSoggetto trasformazioneRegolaApplicabilitaSoggetto) throws SerializerException {
  10093.         this.objToXml(file, TrasformazioneRegolaApplicabilitaSoggetto.class, trasformazioneRegolaApplicabilitaSoggetto, false);
  10094.     }
  10095.     /**
  10096.      * Serialize to file system in <var>file</var> the object <var>trasformazioneRegolaApplicabilitaSoggetto</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaSoggetto}
  10097.      *
  10098.      * @param file Xml file to serialize the object <var>trasformazioneRegolaApplicabilitaSoggetto</var>
  10099.      * @param trasformazioneRegolaApplicabilitaSoggetto Object to be serialized in xml file <var>fileName</var>
  10100.      * @param prettyPrint if true output the XML with indenting
  10101.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10102.      */
  10103.     public void write(File file,TrasformazioneRegolaApplicabilitaSoggetto trasformazioneRegolaApplicabilitaSoggetto,boolean prettyPrint) throws SerializerException {
  10104.         this.objToXml(file, TrasformazioneRegolaApplicabilitaSoggetto.class, trasformazioneRegolaApplicabilitaSoggetto, prettyPrint);
  10105.     }
  10106.    
  10107.     /**
  10108.      * Serialize to output stream <var>out</var> the object <var>trasformazioneRegolaApplicabilitaSoggetto</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaSoggetto}
  10109.      *
  10110.      * @param out OutputStream to serialize the object <var>trasformazioneRegolaApplicabilitaSoggetto</var>
  10111.      * @param trasformazioneRegolaApplicabilitaSoggetto Object to be serialized in xml file <var>fileName</var>
  10112.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10113.      */
  10114.     public void write(OutputStream out,TrasformazioneRegolaApplicabilitaSoggetto trasformazioneRegolaApplicabilitaSoggetto) throws SerializerException {
  10115.         this.objToXml(out, TrasformazioneRegolaApplicabilitaSoggetto.class, trasformazioneRegolaApplicabilitaSoggetto, false);
  10116.     }
  10117.     /**
  10118.      * Serialize to output stream <var>out</var> the object <var>trasformazioneRegolaApplicabilitaSoggetto</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaSoggetto}
  10119.      *
  10120.      * @param out OutputStream to serialize the object <var>trasformazioneRegolaApplicabilitaSoggetto</var>
  10121.      * @param trasformazioneRegolaApplicabilitaSoggetto Object to be serialized in xml file <var>fileName</var>
  10122.      * @param prettyPrint if true output the XML with indenting
  10123.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10124.      */
  10125.     public void write(OutputStream out,TrasformazioneRegolaApplicabilitaSoggetto trasformazioneRegolaApplicabilitaSoggetto,boolean prettyPrint) throws SerializerException {
  10126.         this.objToXml(out, TrasformazioneRegolaApplicabilitaSoggetto.class, trasformazioneRegolaApplicabilitaSoggetto, prettyPrint);
  10127.     }
  10128.            
  10129.     /**
  10130.      * Serialize to byte array the object <var>trasformazioneRegolaApplicabilitaSoggetto</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaSoggetto}
  10131.      *
  10132.      * @param trasformazioneRegolaApplicabilitaSoggetto Object to be serialized
  10133.      * @return Object to be serialized in byte array
  10134.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10135.      */
  10136.     public byte[] toByteArray(TrasformazioneRegolaApplicabilitaSoggetto trasformazioneRegolaApplicabilitaSoggetto) throws SerializerException {
  10137.         return this.objToXml(TrasformazioneRegolaApplicabilitaSoggetto.class, trasformazioneRegolaApplicabilitaSoggetto, false).toByteArray();
  10138.     }
  10139.     /**
  10140.      * Serialize to byte array the object <var>trasformazioneRegolaApplicabilitaSoggetto</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaSoggetto}
  10141.      *
  10142.      * @param trasformazioneRegolaApplicabilitaSoggetto Object to be serialized
  10143.      * @param prettyPrint if true output the XML with indenting
  10144.      * @return Object to be serialized in byte array
  10145.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10146.      */
  10147.     public byte[] toByteArray(TrasformazioneRegolaApplicabilitaSoggetto trasformazioneRegolaApplicabilitaSoggetto,boolean prettyPrint) throws SerializerException {
  10148.         return this.objToXml(TrasformazioneRegolaApplicabilitaSoggetto.class, trasformazioneRegolaApplicabilitaSoggetto, prettyPrint).toByteArray();
  10149.     }
  10150.    
  10151.     /**
  10152.      * Serialize to String the object <var>trasformazioneRegolaApplicabilitaSoggetto</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaSoggetto}
  10153.      *
  10154.      * @param trasformazioneRegolaApplicabilitaSoggetto Object to be serialized
  10155.      * @return Object to be serialized as String
  10156.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10157.      */
  10158.     public String toString(TrasformazioneRegolaApplicabilitaSoggetto trasformazioneRegolaApplicabilitaSoggetto) throws SerializerException {
  10159.         return this.objToXml(TrasformazioneRegolaApplicabilitaSoggetto.class, trasformazioneRegolaApplicabilitaSoggetto, false).toString();
  10160.     }
  10161.     /**
  10162.      * Serialize to String the object <var>trasformazioneRegolaApplicabilitaSoggetto</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaSoggetto}
  10163.      *
  10164.      * @param trasformazioneRegolaApplicabilitaSoggetto Object to be serialized
  10165.      * @param prettyPrint if true output the XML with indenting
  10166.      * @return Object to be serialized as String
  10167.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10168.      */
  10169.     public String toString(TrasformazioneRegolaApplicabilitaSoggetto trasformazioneRegolaApplicabilitaSoggetto,boolean prettyPrint) throws SerializerException {
  10170.         return this.objToXml(TrasformazioneRegolaApplicabilitaSoggetto.class, trasformazioneRegolaApplicabilitaSoggetto, prettyPrint).toString();
  10171.     }
  10172.    
  10173.    
  10174.    
  10175.     /*
  10176.      =================================================================================
  10177.      Object: trasformazione-regola-applicabilita-servizio-applicativo
  10178.      =================================================================================
  10179.     */
  10180.    
  10181.     /**
  10182.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioneRegolaApplicabilitaServizioApplicativo</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaServizioApplicativo}
  10183.      *
  10184.      * @param fileName Xml file to serialize the object <var>trasformazioneRegolaApplicabilitaServizioApplicativo</var>
  10185.      * @param trasformazioneRegolaApplicabilitaServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  10186.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10187.      */
  10188.     public void write(String fileName,TrasformazioneRegolaApplicabilitaServizioApplicativo trasformazioneRegolaApplicabilitaServizioApplicativo) throws SerializerException {
  10189.         this.objToXml(fileName, TrasformazioneRegolaApplicabilitaServizioApplicativo.class, trasformazioneRegolaApplicabilitaServizioApplicativo, false);
  10190.     }
  10191.     /**
  10192.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioneRegolaApplicabilitaServizioApplicativo</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaServizioApplicativo}
  10193.      *
  10194.      * @param fileName Xml file to serialize the object <var>trasformazioneRegolaApplicabilitaServizioApplicativo</var>
  10195.      * @param trasformazioneRegolaApplicabilitaServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  10196.      * @param prettyPrint if true output the XML with indenting
  10197.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10198.      */
  10199.     public void write(String fileName,TrasformazioneRegolaApplicabilitaServizioApplicativo trasformazioneRegolaApplicabilitaServizioApplicativo,boolean prettyPrint) throws SerializerException {
  10200.         this.objToXml(fileName, TrasformazioneRegolaApplicabilitaServizioApplicativo.class, trasformazioneRegolaApplicabilitaServizioApplicativo, prettyPrint);
  10201.     }
  10202.    
  10203.     /**
  10204.      * Serialize to file system in <var>file</var> the object <var>trasformazioneRegolaApplicabilitaServizioApplicativo</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaServizioApplicativo}
  10205.      *
  10206.      * @param file Xml file to serialize the object <var>trasformazioneRegolaApplicabilitaServizioApplicativo</var>
  10207.      * @param trasformazioneRegolaApplicabilitaServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  10208.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10209.      */
  10210.     public void write(File file,TrasformazioneRegolaApplicabilitaServizioApplicativo trasformazioneRegolaApplicabilitaServizioApplicativo) throws SerializerException {
  10211.         this.objToXml(file, TrasformazioneRegolaApplicabilitaServizioApplicativo.class, trasformazioneRegolaApplicabilitaServizioApplicativo, false);
  10212.     }
  10213.     /**
  10214.      * Serialize to file system in <var>file</var> the object <var>trasformazioneRegolaApplicabilitaServizioApplicativo</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaServizioApplicativo}
  10215.      *
  10216.      * @param file Xml file to serialize the object <var>trasformazioneRegolaApplicabilitaServizioApplicativo</var>
  10217.      * @param trasformazioneRegolaApplicabilitaServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  10218.      * @param prettyPrint if true output the XML with indenting
  10219.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10220.      */
  10221.     public void write(File file,TrasformazioneRegolaApplicabilitaServizioApplicativo trasformazioneRegolaApplicabilitaServizioApplicativo,boolean prettyPrint) throws SerializerException {
  10222.         this.objToXml(file, TrasformazioneRegolaApplicabilitaServizioApplicativo.class, trasformazioneRegolaApplicabilitaServizioApplicativo, prettyPrint);
  10223.     }
  10224.    
  10225.     /**
  10226.      * Serialize to output stream <var>out</var> the object <var>trasformazioneRegolaApplicabilitaServizioApplicativo</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaServizioApplicativo}
  10227.      *
  10228.      * @param out OutputStream to serialize the object <var>trasformazioneRegolaApplicabilitaServizioApplicativo</var>
  10229.      * @param trasformazioneRegolaApplicabilitaServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  10230.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10231.      */
  10232.     public void write(OutputStream out,TrasformazioneRegolaApplicabilitaServizioApplicativo trasformazioneRegolaApplicabilitaServizioApplicativo) throws SerializerException {
  10233.         this.objToXml(out, TrasformazioneRegolaApplicabilitaServizioApplicativo.class, trasformazioneRegolaApplicabilitaServizioApplicativo, false);
  10234.     }
  10235.     /**
  10236.      * Serialize to output stream <var>out</var> the object <var>trasformazioneRegolaApplicabilitaServizioApplicativo</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaServizioApplicativo}
  10237.      *
  10238.      * @param out OutputStream to serialize the object <var>trasformazioneRegolaApplicabilitaServizioApplicativo</var>
  10239.      * @param trasformazioneRegolaApplicabilitaServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  10240.      * @param prettyPrint if true output the XML with indenting
  10241.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10242.      */
  10243.     public void write(OutputStream out,TrasformazioneRegolaApplicabilitaServizioApplicativo trasformazioneRegolaApplicabilitaServizioApplicativo,boolean prettyPrint) throws SerializerException {
  10244.         this.objToXml(out, TrasformazioneRegolaApplicabilitaServizioApplicativo.class, trasformazioneRegolaApplicabilitaServizioApplicativo, prettyPrint);
  10245.     }
  10246.            
  10247.     /**
  10248.      * Serialize to byte array the object <var>trasformazioneRegolaApplicabilitaServizioApplicativo</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaServizioApplicativo}
  10249.      *
  10250.      * @param trasformazioneRegolaApplicabilitaServizioApplicativo Object to be serialized
  10251.      * @return Object to be serialized in byte array
  10252.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10253.      */
  10254.     public byte[] toByteArray(TrasformazioneRegolaApplicabilitaServizioApplicativo trasformazioneRegolaApplicabilitaServizioApplicativo) throws SerializerException {
  10255.         return this.objToXml(TrasformazioneRegolaApplicabilitaServizioApplicativo.class, trasformazioneRegolaApplicabilitaServizioApplicativo, false).toByteArray();
  10256.     }
  10257.     /**
  10258.      * Serialize to byte array the object <var>trasformazioneRegolaApplicabilitaServizioApplicativo</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaServizioApplicativo}
  10259.      *
  10260.      * @param trasformazioneRegolaApplicabilitaServizioApplicativo Object to be serialized
  10261.      * @param prettyPrint if true output the XML with indenting
  10262.      * @return Object to be serialized in byte array
  10263.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10264.      */
  10265.     public byte[] toByteArray(TrasformazioneRegolaApplicabilitaServizioApplicativo trasformazioneRegolaApplicabilitaServizioApplicativo,boolean prettyPrint) throws SerializerException {
  10266.         return this.objToXml(TrasformazioneRegolaApplicabilitaServizioApplicativo.class, trasformazioneRegolaApplicabilitaServizioApplicativo, prettyPrint).toByteArray();
  10267.     }
  10268.    
  10269.     /**
  10270.      * Serialize to String the object <var>trasformazioneRegolaApplicabilitaServizioApplicativo</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaServizioApplicativo}
  10271.      *
  10272.      * @param trasformazioneRegolaApplicabilitaServizioApplicativo Object to be serialized
  10273.      * @return Object to be serialized as String
  10274.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10275.      */
  10276.     public String toString(TrasformazioneRegolaApplicabilitaServizioApplicativo trasformazioneRegolaApplicabilitaServizioApplicativo) throws SerializerException {
  10277.         return this.objToXml(TrasformazioneRegolaApplicabilitaServizioApplicativo.class, trasformazioneRegolaApplicabilitaServizioApplicativo, false).toString();
  10278.     }
  10279.     /**
  10280.      * Serialize to String the object <var>trasformazioneRegolaApplicabilitaServizioApplicativo</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegolaApplicabilitaServizioApplicativo}
  10281.      *
  10282.      * @param trasformazioneRegolaApplicabilitaServizioApplicativo Object to be serialized
  10283.      * @param prettyPrint if true output the XML with indenting
  10284.      * @return Object to be serialized as String
  10285.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10286.      */
  10287.     public String toString(TrasformazioneRegolaApplicabilitaServizioApplicativo trasformazioneRegolaApplicabilitaServizioApplicativo,boolean prettyPrint) throws SerializerException {
  10288.         return this.objToXml(TrasformazioneRegolaApplicabilitaServizioApplicativo.class, trasformazioneRegolaApplicabilitaServizioApplicativo, prettyPrint).toString();
  10289.     }
  10290.    
  10291.    
  10292.    
  10293.     /*
  10294.      =================================================================================
  10295.      Object: porta-applicativa-servizio-applicativo
  10296.      =================================================================================
  10297.     */
  10298.    
  10299.     /**
  10300.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativaServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizioApplicativo}
  10301.      *
  10302.      * @param fileName Xml file to serialize the object <var>portaApplicativaServizioApplicativo</var>
  10303.      * @param portaApplicativaServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  10304.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10305.      */
  10306.     public void write(String fileName,PortaApplicativaServizioApplicativo portaApplicativaServizioApplicativo) throws SerializerException {
  10307.         this.objToXml(fileName, PortaApplicativaServizioApplicativo.class, portaApplicativaServizioApplicativo, false);
  10308.     }
  10309.     /**
  10310.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativaServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizioApplicativo}
  10311.      *
  10312.      * @param fileName Xml file to serialize the object <var>portaApplicativaServizioApplicativo</var>
  10313.      * @param portaApplicativaServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  10314.      * @param prettyPrint if true output the XML with indenting
  10315.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10316.      */
  10317.     public void write(String fileName,PortaApplicativaServizioApplicativo portaApplicativaServizioApplicativo,boolean prettyPrint) throws SerializerException {
  10318.         this.objToXml(fileName, PortaApplicativaServizioApplicativo.class, portaApplicativaServizioApplicativo, prettyPrint);
  10319.     }
  10320.    
  10321.     /**
  10322.      * Serialize to file system in <var>file</var> the object <var>portaApplicativaServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizioApplicativo}
  10323.      *
  10324.      * @param file Xml file to serialize the object <var>portaApplicativaServizioApplicativo</var>
  10325.      * @param portaApplicativaServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  10326.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10327.      */
  10328.     public void write(File file,PortaApplicativaServizioApplicativo portaApplicativaServizioApplicativo) throws SerializerException {
  10329.         this.objToXml(file, PortaApplicativaServizioApplicativo.class, portaApplicativaServizioApplicativo, false);
  10330.     }
  10331.     /**
  10332.      * Serialize to file system in <var>file</var> the object <var>portaApplicativaServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizioApplicativo}
  10333.      *
  10334.      * @param file Xml file to serialize the object <var>portaApplicativaServizioApplicativo</var>
  10335.      * @param portaApplicativaServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  10336.      * @param prettyPrint if true output the XML with indenting
  10337.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10338.      */
  10339.     public void write(File file,PortaApplicativaServizioApplicativo portaApplicativaServizioApplicativo,boolean prettyPrint) throws SerializerException {
  10340.         this.objToXml(file, PortaApplicativaServizioApplicativo.class, portaApplicativaServizioApplicativo, prettyPrint);
  10341.     }
  10342.    
  10343.     /**
  10344.      * Serialize to output stream <var>out</var> the object <var>portaApplicativaServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizioApplicativo}
  10345.      *
  10346.      * @param out OutputStream to serialize the object <var>portaApplicativaServizioApplicativo</var>
  10347.      * @param portaApplicativaServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  10348.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10349.      */
  10350.     public void write(OutputStream out,PortaApplicativaServizioApplicativo portaApplicativaServizioApplicativo) throws SerializerException {
  10351.         this.objToXml(out, PortaApplicativaServizioApplicativo.class, portaApplicativaServizioApplicativo, false);
  10352.     }
  10353.     /**
  10354.      * Serialize to output stream <var>out</var> the object <var>portaApplicativaServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizioApplicativo}
  10355.      *
  10356.      * @param out OutputStream to serialize the object <var>portaApplicativaServizioApplicativo</var>
  10357.      * @param portaApplicativaServizioApplicativo Object to be serialized in xml file <var>fileName</var>
  10358.      * @param prettyPrint if true output the XML with indenting
  10359.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10360.      */
  10361.     public void write(OutputStream out,PortaApplicativaServizioApplicativo portaApplicativaServizioApplicativo,boolean prettyPrint) throws SerializerException {
  10362.         this.objToXml(out, PortaApplicativaServizioApplicativo.class, portaApplicativaServizioApplicativo, prettyPrint);
  10363.     }
  10364.            
  10365.     /**
  10366.      * Serialize to byte array the object <var>portaApplicativaServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizioApplicativo}
  10367.      *
  10368.      * @param portaApplicativaServizioApplicativo Object to be serialized
  10369.      * @return Object to be serialized in byte array
  10370.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10371.      */
  10372.     public byte[] toByteArray(PortaApplicativaServizioApplicativo portaApplicativaServizioApplicativo) throws SerializerException {
  10373.         return this.objToXml(PortaApplicativaServizioApplicativo.class, portaApplicativaServizioApplicativo, false).toByteArray();
  10374.     }
  10375.     /**
  10376.      * Serialize to byte array the object <var>portaApplicativaServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizioApplicativo}
  10377.      *
  10378.      * @param portaApplicativaServizioApplicativo Object to be serialized
  10379.      * @param prettyPrint if true output the XML with indenting
  10380.      * @return Object to be serialized in byte array
  10381.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10382.      */
  10383.     public byte[] toByteArray(PortaApplicativaServizioApplicativo portaApplicativaServizioApplicativo,boolean prettyPrint) throws SerializerException {
  10384.         return this.objToXml(PortaApplicativaServizioApplicativo.class, portaApplicativaServizioApplicativo, prettyPrint).toByteArray();
  10385.     }
  10386.    
  10387.     /**
  10388.      * Serialize to String the object <var>portaApplicativaServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizioApplicativo}
  10389.      *
  10390.      * @param portaApplicativaServizioApplicativo Object to be serialized
  10391.      * @return Object to be serialized as String
  10392.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10393.      */
  10394.     public String toString(PortaApplicativaServizioApplicativo portaApplicativaServizioApplicativo) throws SerializerException {
  10395.         return this.objToXml(PortaApplicativaServizioApplicativo.class, portaApplicativaServizioApplicativo, false).toString();
  10396.     }
  10397.     /**
  10398.      * Serialize to String the object <var>portaApplicativaServizioApplicativo</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizioApplicativo}
  10399.      *
  10400.      * @param portaApplicativaServizioApplicativo Object to be serialized
  10401.      * @param prettyPrint if true output the XML with indenting
  10402.      * @return Object to be serialized as String
  10403.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10404.      */
  10405.     public String toString(PortaApplicativaServizioApplicativo portaApplicativaServizioApplicativo,boolean prettyPrint) throws SerializerException {
  10406.         return this.objToXml(PortaApplicativaServizioApplicativo.class, portaApplicativaServizioApplicativo, prettyPrint).toString();
  10407.     }
  10408.    
  10409.    
  10410.    
  10411.     /*
  10412.      =================================================================================
  10413.      Object: correlazione-applicativa-risposta-elemento
  10414.      =================================================================================
  10415.     */
  10416.    
  10417.     /**
  10418.      * Serialize to file system in <var>fileName</var> the object <var>correlazioneApplicativaRispostaElemento</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaRispostaElemento}
  10419.      *
  10420.      * @param fileName Xml file to serialize the object <var>correlazioneApplicativaRispostaElemento</var>
  10421.      * @param correlazioneApplicativaRispostaElemento Object to be serialized in xml file <var>fileName</var>
  10422.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10423.      */
  10424.     public void write(String fileName,CorrelazioneApplicativaRispostaElemento correlazioneApplicativaRispostaElemento) throws SerializerException {
  10425.         this.objToXml(fileName, CorrelazioneApplicativaRispostaElemento.class, correlazioneApplicativaRispostaElemento, false);
  10426.     }
  10427.     /**
  10428.      * Serialize to file system in <var>fileName</var> the object <var>correlazioneApplicativaRispostaElemento</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaRispostaElemento}
  10429.      *
  10430.      * @param fileName Xml file to serialize the object <var>correlazioneApplicativaRispostaElemento</var>
  10431.      * @param correlazioneApplicativaRispostaElemento Object to be serialized in xml file <var>fileName</var>
  10432.      * @param prettyPrint if true output the XML with indenting
  10433.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10434.      */
  10435.     public void write(String fileName,CorrelazioneApplicativaRispostaElemento correlazioneApplicativaRispostaElemento,boolean prettyPrint) throws SerializerException {
  10436.         this.objToXml(fileName, CorrelazioneApplicativaRispostaElemento.class, correlazioneApplicativaRispostaElemento, prettyPrint);
  10437.     }
  10438.    
  10439.     /**
  10440.      * Serialize to file system in <var>file</var> the object <var>correlazioneApplicativaRispostaElemento</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaRispostaElemento}
  10441.      *
  10442.      * @param file Xml file to serialize the object <var>correlazioneApplicativaRispostaElemento</var>
  10443.      * @param correlazioneApplicativaRispostaElemento Object to be serialized in xml file <var>fileName</var>
  10444.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10445.      */
  10446.     public void write(File file,CorrelazioneApplicativaRispostaElemento correlazioneApplicativaRispostaElemento) throws SerializerException {
  10447.         this.objToXml(file, CorrelazioneApplicativaRispostaElemento.class, correlazioneApplicativaRispostaElemento, false);
  10448.     }
  10449.     /**
  10450.      * Serialize to file system in <var>file</var> the object <var>correlazioneApplicativaRispostaElemento</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaRispostaElemento}
  10451.      *
  10452.      * @param file Xml file to serialize the object <var>correlazioneApplicativaRispostaElemento</var>
  10453.      * @param correlazioneApplicativaRispostaElemento Object to be serialized in xml file <var>fileName</var>
  10454.      * @param prettyPrint if true output the XML with indenting
  10455.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10456.      */
  10457.     public void write(File file,CorrelazioneApplicativaRispostaElemento correlazioneApplicativaRispostaElemento,boolean prettyPrint) throws SerializerException {
  10458.         this.objToXml(file, CorrelazioneApplicativaRispostaElemento.class, correlazioneApplicativaRispostaElemento, prettyPrint);
  10459.     }
  10460.    
  10461.     /**
  10462.      * Serialize to output stream <var>out</var> the object <var>correlazioneApplicativaRispostaElemento</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaRispostaElemento}
  10463.      *
  10464.      * @param out OutputStream to serialize the object <var>correlazioneApplicativaRispostaElemento</var>
  10465.      * @param correlazioneApplicativaRispostaElemento Object to be serialized in xml file <var>fileName</var>
  10466.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10467.      */
  10468.     public void write(OutputStream out,CorrelazioneApplicativaRispostaElemento correlazioneApplicativaRispostaElemento) throws SerializerException {
  10469.         this.objToXml(out, CorrelazioneApplicativaRispostaElemento.class, correlazioneApplicativaRispostaElemento, false);
  10470.     }
  10471.     /**
  10472.      * Serialize to output stream <var>out</var> the object <var>correlazioneApplicativaRispostaElemento</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaRispostaElemento}
  10473.      *
  10474.      * @param out OutputStream to serialize the object <var>correlazioneApplicativaRispostaElemento</var>
  10475.      * @param correlazioneApplicativaRispostaElemento Object to be serialized in xml file <var>fileName</var>
  10476.      * @param prettyPrint if true output the XML with indenting
  10477.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10478.      */
  10479.     public void write(OutputStream out,CorrelazioneApplicativaRispostaElemento correlazioneApplicativaRispostaElemento,boolean prettyPrint) throws SerializerException {
  10480.         this.objToXml(out, CorrelazioneApplicativaRispostaElemento.class, correlazioneApplicativaRispostaElemento, prettyPrint);
  10481.     }
  10482.            
  10483.     /**
  10484.      * Serialize to byte array the object <var>correlazioneApplicativaRispostaElemento</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaRispostaElemento}
  10485.      *
  10486.      * @param correlazioneApplicativaRispostaElemento Object to be serialized
  10487.      * @return Object to be serialized in byte array
  10488.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10489.      */
  10490.     public byte[] toByteArray(CorrelazioneApplicativaRispostaElemento correlazioneApplicativaRispostaElemento) throws SerializerException {
  10491.         return this.objToXml(CorrelazioneApplicativaRispostaElemento.class, correlazioneApplicativaRispostaElemento, false).toByteArray();
  10492.     }
  10493.     /**
  10494.      * Serialize to byte array the object <var>correlazioneApplicativaRispostaElemento</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaRispostaElemento}
  10495.      *
  10496.      * @param correlazioneApplicativaRispostaElemento Object to be serialized
  10497.      * @param prettyPrint if true output the XML with indenting
  10498.      * @return Object to be serialized in byte array
  10499.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10500.      */
  10501.     public byte[] toByteArray(CorrelazioneApplicativaRispostaElemento correlazioneApplicativaRispostaElemento,boolean prettyPrint) throws SerializerException {
  10502.         return this.objToXml(CorrelazioneApplicativaRispostaElemento.class, correlazioneApplicativaRispostaElemento, prettyPrint).toByteArray();
  10503.     }
  10504.    
  10505.     /**
  10506.      * Serialize to String the object <var>correlazioneApplicativaRispostaElemento</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaRispostaElemento}
  10507.      *
  10508.      * @param correlazioneApplicativaRispostaElemento Object to be serialized
  10509.      * @return Object to be serialized as String
  10510.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10511.      */
  10512.     public String toString(CorrelazioneApplicativaRispostaElemento correlazioneApplicativaRispostaElemento) throws SerializerException {
  10513.         return this.objToXml(CorrelazioneApplicativaRispostaElemento.class, correlazioneApplicativaRispostaElemento, false).toString();
  10514.     }
  10515.     /**
  10516.      * Serialize to String the object <var>correlazioneApplicativaRispostaElemento</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaRispostaElemento}
  10517.      *
  10518.      * @param correlazioneApplicativaRispostaElemento Object to be serialized
  10519.      * @param prettyPrint if true output the XML with indenting
  10520.      * @return Object to be serialized as String
  10521.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10522.      */
  10523.     public String toString(CorrelazioneApplicativaRispostaElemento correlazioneApplicativaRispostaElemento,boolean prettyPrint) throws SerializerException {
  10524.         return this.objToXml(CorrelazioneApplicativaRispostaElemento.class, correlazioneApplicativaRispostaElemento, prettyPrint).toString();
  10525.     }
  10526.    
  10527.    
  10528.    
  10529.     /*
  10530.      =================================================================================
  10531.      Object: configurazione-handler
  10532.      =================================================================================
  10533.     */
  10534.    
  10535.     /**
  10536.      * Serialize to file system in <var>fileName</var> the object <var>configurazioneHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazioneHandler}
  10537.      *
  10538.      * @param fileName Xml file to serialize the object <var>configurazioneHandler</var>
  10539.      * @param configurazioneHandler Object to be serialized in xml file <var>fileName</var>
  10540.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10541.      */
  10542.     public void write(String fileName,ConfigurazioneHandler configurazioneHandler) throws SerializerException {
  10543.         this.objToXml(fileName, ConfigurazioneHandler.class, configurazioneHandler, false);
  10544.     }
  10545.     /**
  10546.      * Serialize to file system in <var>fileName</var> the object <var>configurazioneHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazioneHandler}
  10547.      *
  10548.      * @param fileName Xml file to serialize the object <var>configurazioneHandler</var>
  10549.      * @param configurazioneHandler Object to be serialized in xml file <var>fileName</var>
  10550.      * @param prettyPrint if true output the XML with indenting
  10551.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10552.      */
  10553.     public void write(String fileName,ConfigurazioneHandler configurazioneHandler,boolean prettyPrint) throws SerializerException {
  10554.         this.objToXml(fileName, ConfigurazioneHandler.class, configurazioneHandler, prettyPrint);
  10555.     }
  10556.    
  10557.     /**
  10558.      * Serialize to file system in <var>file</var> the object <var>configurazioneHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazioneHandler}
  10559.      *
  10560.      * @param file Xml file to serialize the object <var>configurazioneHandler</var>
  10561.      * @param configurazioneHandler Object to be serialized in xml file <var>fileName</var>
  10562.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10563.      */
  10564.     public void write(File file,ConfigurazioneHandler configurazioneHandler) throws SerializerException {
  10565.         this.objToXml(file, ConfigurazioneHandler.class, configurazioneHandler, false);
  10566.     }
  10567.     /**
  10568.      * Serialize to file system in <var>file</var> the object <var>configurazioneHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazioneHandler}
  10569.      *
  10570.      * @param file Xml file to serialize the object <var>configurazioneHandler</var>
  10571.      * @param configurazioneHandler Object to be serialized in xml file <var>fileName</var>
  10572.      * @param prettyPrint if true output the XML with indenting
  10573.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10574.      */
  10575.     public void write(File file,ConfigurazioneHandler configurazioneHandler,boolean prettyPrint) throws SerializerException {
  10576.         this.objToXml(file, ConfigurazioneHandler.class, configurazioneHandler, prettyPrint);
  10577.     }
  10578.    
  10579.     /**
  10580.      * Serialize to output stream <var>out</var> the object <var>configurazioneHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazioneHandler}
  10581.      *
  10582.      * @param out OutputStream to serialize the object <var>configurazioneHandler</var>
  10583.      * @param configurazioneHandler Object to be serialized in xml file <var>fileName</var>
  10584.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10585.      */
  10586.     public void write(OutputStream out,ConfigurazioneHandler configurazioneHandler) throws SerializerException {
  10587.         this.objToXml(out, ConfigurazioneHandler.class, configurazioneHandler, false);
  10588.     }
  10589.     /**
  10590.      * Serialize to output stream <var>out</var> the object <var>configurazioneHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazioneHandler}
  10591.      *
  10592.      * @param out OutputStream to serialize the object <var>configurazioneHandler</var>
  10593.      * @param configurazioneHandler Object to be serialized in xml file <var>fileName</var>
  10594.      * @param prettyPrint if true output the XML with indenting
  10595.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10596.      */
  10597.     public void write(OutputStream out,ConfigurazioneHandler configurazioneHandler,boolean prettyPrint) throws SerializerException {
  10598.         this.objToXml(out, ConfigurazioneHandler.class, configurazioneHandler, prettyPrint);
  10599.     }
  10600.            
  10601.     /**
  10602.      * Serialize to byte array the object <var>configurazioneHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazioneHandler}
  10603.      *
  10604.      * @param configurazioneHandler Object to be serialized
  10605.      * @return Object to be serialized in byte array
  10606.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10607.      */
  10608.     public byte[] toByteArray(ConfigurazioneHandler configurazioneHandler) throws SerializerException {
  10609.         return this.objToXml(ConfigurazioneHandler.class, configurazioneHandler, false).toByteArray();
  10610.     }
  10611.     /**
  10612.      * Serialize to byte array the object <var>configurazioneHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazioneHandler}
  10613.      *
  10614.      * @param configurazioneHandler Object to be serialized
  10615.      * @param prettyPrint if true output the XML with indenting
  10616.      * @return Object to be serialized in byte array
  10617.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10618.      */
  10619.     public byte[] toByteArray(ConfigurazioneHandler configurazioneHandler,boolean prettyPrint) throws SerializerException {
  10620.         return this.objToXml(ConfigurazioneHandler.class, configurazioneHandler, prettyPrint).toByteArray();
  10621.     }
  10622.    
  10623.     /**
  10624.      * Serialize to String the object <var>configurazioneHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazioneHandler}
  10625.      *
  10626.      * @param configurazioneHandler Object to be serialized
  10627.      * @return Object to be serialized as String
  10628.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10629.      */
  10630.     public String toString(ConfigurazioneHandler configurazioneHandler) throws SerializerException {
  10631.         return this.objToXml(ConfigurazioneHandler.class, configurazioneHandler, false).toString();
  10632.     }
  10633.     /**
  10634.      * Serialize to String the object <var>configurazioneHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazioneHandler}
  10635.      *
  10636.      * @param configurazioneHandler Object to be serialized
  10637.      * @param prettyPrint if true output the XML with indenting
  10638.      * @return Object to be serialized as String
  10639.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10640.      */
  10641.     public String toString(ConfigurazioneHandler configurazioneHandler,boolean prettyPrint) throws SerializerException {
  10642.         return this.objToXml(ConfigurazioneHandler.class, configurazioneHandler, prettyPrint).toString();
  10643.     }
  10644.    
  10645.    
  10646.    
  10647.     /*
  10648.      =================================================================================
  10649.      Object: configurazione-message-handlers
  10650.      =================================================================================
  10651.     */
  10652.    
  10653.     /**
  10654.      * Serialize to file system in <var>fileName</var> the object <var>configurazioneMessageHandlers</var> of type {@link org.openspcoop2.core.config.ConfigurazioneMessageHandlers}
  10655.      *
  10656.      * @param fileName Xml file to serialize the object <var>configurazioneMessageHandlers</var>
  10657.      * @param configurazioneMessageHandlers Object to be serialized in xml file <var>fileName</var>
  10658.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10659.      */
  10660.     public void write(String fileName,ConfigurazioneMessageHandlers configurazioneMessageHandlers) throws SerializerException {
  10661.         this.objToXml(fileName, ConfigurazioneMessageHandlers.class, configurazioneMessageHandlers, false);
  10662.     }
  10663.     /**
  10664.      * Serialize to file system in <var>fileName</var> the object <var>configurazioneMessageHandlers</var> of type {@link org.openspcoop2.core.config.ConfigurazioneMessageHandlers}
  10665.      *
  10666.      * @param fileName Xml file to serialize the object <var>configurazioneMessageHandlers</var>
  10667.      * @param configurazioneMessageHandlers Object to be serialized in xml file <var>fileName</var>
  10668.      * @param prettyPrint if true output the XML with indenting
  10669.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10670.      */
  10671.     public void write(String fileName,ConfigurazioneMessageHandlers configurazioneMessageHandlers,boolean prettyPrint) throws SerializerException {
  10672.         this.objToXml(fileName, ConfigurazioneMessageHandlers.class, configurazioneMessageHandlers, prettyPrint);
  10673.     }
  10674.    
  10675.     /**
  10676.      * Serialize to file system in <var>file</var> the object <var>configurazioneMessageHandlers</var> of type {@link org.openspcoop2.core.config.ConfigurazioneMessageHandlers}
  10677.      *
  10678.      * @param file Xml file to serialize the object <var>configurazioneMessageHandlers</var>
  10679.      * @param configurazioneMessageHandlers Object to be serialized in xml file <var>fileName</var>
  10680.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10681.      */
  10682.     public void write(File file,ConfigurazioneMessageHandlers configurazioneMessageHandlers) throws SerializerException {
  10683.         this.objToXml(file, ConfigurazioneMessageHandlers.class, configurazioneMessageHandlers, false);
  10684.     }
  10685.     /**
  10686.      * Serialize to file system in <var>file</var> the object <var>configurazioneMessageHandlers</var> of type {@link org.openspcoop2.core.config.ConfigurazioneMessageHandlers}
  10687.      *
  10688.      * @param file Xml file to serialize the object <var>configurazioneMessageHandlers</var>
  10689.      * @param configurazioneMessageHandlers Object to be serialized in xml file <var>fileName</var>
  10690.      * @param prettyPrint if true output the XML with indenting
  10691.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10692.      */
  10693.     public void write(File file,ConfigurazioneMessageHandlers configurazioneMessageHandlers,boolean prettyPrint) throws SerializerException {
  10694.         this.objToXml(file, ConfigurazioneMessageHandlers.class, configurazioneMessageHandlers, prettyPrint);
  10695.     }
  10696.    
  10697.     /**
  10698.      * Serialize to output stream <var>out</var> the object <var>configurazioneMessageHandlers</var> of type {@link org.openspcoop2.core.config.ConfigurazioneMessageHandlers}
  10699.      *
  10700.      * @param out OutputStream to serialize the object <var>configurazioneMessageHandlers</var>
  10701.      * @param configurazioneMessageHandlers Object to be serialized in xml file <var>fileName</var>
  10702.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10703.      */
  10704.     public void write(OutputStream out,ConfigurazioneMessageHandlers configurazioneMessageHandlers) throws SerializerException {
  10705.         this.objToXml(out, ConfigurazioneMessageHandlers.class, configurazioneMessageHandlers, false);
  10706.     }
  10707.     /**
  10708.      * Serialize to output stream <var>out</var> the object <var>configurazioneMessageHandlers</var> of type {@link org.openspcoop2.core.config.ConfigurazioneMessageHandlers}
  10709.      *
  10710.      * @param out OutputStream to serialize the object <var>configurazioneMessageHandlers</var>
  10711.      * @param configurazioneMessageHandlers Object to be serialized in xml file <var>fileName</var>
  10712.      * @param prettyPrint if true output the XML with indenting
  10713.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10714.      */
  10715.     public void write(OutputStream out,ConfigurazioneMessageHandlers configurazioneMessageHandlers,boolean prettyPrint) throws SerializerException {
  10716.         this.objToXml(out, ConfigurazioneMessageHandlers.class, configurazioneMessageHandlers, prettyPrint);
  10717.     }
  10718.            
  10719.     /**
  10720.      * Serialize to byte array the object <var>configurazioneMessageHandlers</var> of type {@link org.openspcoop2.core.config.ConfigurazioneMessageHandlers}
  10721.      *
  10722.      * @param configurazioneMessageHandlers Object to be serialized
  10723.      * @return Object to be serialized in byte array
  10724.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10725.      */
  10726.     public byte[] toByteArray(ConfigurazioneMessageHandlers configurazioneMessageHandlers) throws SerializerException {
  10727.         return this.objToXml(ConfigurazioneMessageHandlers.class, configurazioneMessageHandlers, false).toByteArray();
  10728.     }
  10729.     /**
  10730.      * Serialize to byte array the object <var>configurazioneMessageHandlers</var> of type {@link org.openspcoop2.core.config.ConfigurazioneMessageHandlers}
  10731.      *
  10732.      * @param configurazioneMessageHandlers Object to be serialized
  10733.      * @param prettyPrint if true output the XML with indenting
  10734.      * @return Object to be serialized in byte array
  10735.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10736.      */
  10737.     public byte[] toByteArray(ConfigurazioneMessageHandlers configurazioneMessageHandlers,boolean prettyPrint) throws SerializerException {
  10738.         return this.objToXml(ConfigurazioneMessageHandlers.class, configurazioneMessageHandlers, prettyPrint).toByteArray();
  10739.     }
  10740.    
  10741.     /**
  10742.      * Serialize to String the object <var>configurazioneMessageHandlers</var> of type {@link org.openspcoop2.core.config.ConfigurazioneMessageHandlers}
  10743.      *
  10744.      * @param configurazioneMessageHandlers Object to be serialized
  10745.      * @return Object to be serialized as String
  10746.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10747.      */
  10748.     public String toString(ConfigurazioneMessageHandlers configurazioneMessageHandlers) throws SerializerException {
  10749.         return this.objToXml(ConfigurazioneMessageHandlers.class, configurazioneMessageHandlers, false).toString();
  10750.     }
  10751.     /**
  10752.      * Serialize to String the object <var>configurazioneMessageHandlers</var> of type {@link org.openspcoop2.core.config.ConfigurazioneMessageHandlers}
  10753.      *
  10754.      * @param configurazioneMessageHandlers Object to be serialized
  10755.      * @param prettyPrint if true output the XML with indenting
  10756.      * @return Object to be serialized as String
  10757.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10758.      */
  10759.     public String toString(ConfigurazioneMessageHandlers configurazioneMessageHandlers,boolean prettyPrint) throws SerializerException {
  10760.         return this.objToXml(ConfigurazioneMessageHandlers.class, configurazioneMessageHandlers, prettyPrint).toString();
  10761.     }
  10762.    
  10763.    
  10764.    
  10765.     /*
  10766.      =================================================================================
  10767.      Object: system-properties
  10768.      =================================================================================
  10769.     */
  10770.    
  10771.     /**
  10772.      * Serialize to file system in <var>fileName</var> the object <var>systemProperties</var> of type {@link org.openspcoop2.core.config.SystemProperties}
  10773.      *
  10774.      * @param fileName Xml file to serialize the object <var>systemProperties</var>
  10775.      * @param systemProperties Object to be serialized in xml file <var>fileName</var>
  10776.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10777.      */
  10778.     public void write(String fileName,SystemProperties systemProperties) throws SerializerException {
  10779.         this.objToXml(fileName, SystemProperties.class, systemProperties, false);
  10780.     }
  10781.     /**
  10782.      * Serialize to file system in <var>fileName</var> the object <var>systemProperties</var> of type {@link org.openspcoop2.core.config.SystemProperties}
  10783.      *
  10784.      * @param fileName Xml file to serialize the object <var>systemProperties</var>
  10785.      * @param systemProperties Object to be serialized in xml file <var>fileName</var>
  10786.      * @param prettyPrint if true output the XML with indenting
  10787.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10788.      */
  10789.     public void write(String fileName,SystemProperties systemProperties,boolean prettyPrint) throws SerializerException {
  10790.         this.objToXml(fileName, SystemProperties.class, systemProperties, prettyPrint);
  10791.     }
  10792.    
  10793.     /**
  10794.      * Serialize to file system in <var>file</var> the object <var>systemProperties</var> of type {@link org.openspcoop2.core.config.SystemProperties}
  10795.      *
  10796.      * @param file Xml file to serialize the object <var>systemProperties</var>
  10797.      * @param systemProperties Object to be serialized in xml file <var>fileName</var>
  10798.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10799.      */
  10800.     public void write(File file,SystemProperties systemProperties) throws SerializerException {
  10801.         this.objToXml(file, SystemProperties.class, systemProperties, false);
  10802.     }
  10803.     /**
  10804.      * Serialize to file system in <var>file</var> the object <var>systemProperties</var> of type {@link org.openspcoop2.core.config.SystemProperties}
  10805.      *
  10806.      * @param file Xml file to serialize the object <var>systemProperties</var>
  10807.      * @param systemProperties Object to be serialized in xml file <var>fileName</var>
  10808.      * @param prettyPrint if true output the XML with indenting
  10809.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10810.      */
  10811.     public void write(File file,SystemProperties systemProperties,boolean prettyPrint) throws SerializerException {
  10812.         this.objToXml(file, SystemProperties.class, systemProperties, prettyPrint);
  10813.     }
  10814.    
  10815.     /**
  10816.      * Serialize to output stream <var>out</var> the object <var>systemProperties</var> of type {@link org.openspcoop2.core.config.SystemProperties}
  10817.      *
  10818.      * @param out OutputStream to serialize the object <var>systemProperties</var>
  10819.      * @param systemProperties Object to be serialized in xml file <var>fileName</var>
  10820.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10821.      */
  10822.     public void write(OutputStream out,SystemProperties systemProperties) throws SerializerException {
  10823.         this.objToXml(out, SystemProperties.class, systemProperties, false);
  10824.     }
  10825.     /**
  10826.      * Serialize to output stream <var>out</var> the object <var>systemProperties</var> of type {@link org.openspcoop2.core.config.SystemProperties}
  10827.      *
  10828.      * @param out OutputStream to serialize the object <var>systemProperties</var>
  10829.      * @param systemProperties Object to be serialized in xml file <var>fileName</var>
  10830.      * @param prettyPrint if true output the XML with indenting
  10831.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10832.      */
  10833.     public void write(OutputStream out,SystemProperties systemProperties,boolean prettyPrint) throws SerializerException {
  10834.         this.objToXml(out, SystemProperties.class, systemProperties, prettyPrint);
  10835.     }
  10836.            
  10837.     /**
  10838.      * Serialize to byte array the object <var>systemProperties</var> of type {@link org.openspcoop2.core.config.SystemProperties}
  10839.      *
  10840.      * @param systemProperties Object to be serialized
  10841.      * @return Object to be serialized in byte array
  10842.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10843.      */
  10844.     public byte[] toByteArray(SystemProperties systemProperties) throws SerializerException {
  10845.         return this.objToXml(SystemProperties.class, systemProperties, false).toByteArray();
  10846.     }
  10847.     /**
  10848.      * Serialize to byte array the object <var>systemProperties</var> of type {@link org.openspcoop2.core.config.SystemProperties}
  10849.      *
  10850.      * @param systemProperties Object to be serialized
  10851.      * @param prettyPrint if true output the XML with indenting
  10852.      * @return Object to be serialized in byte array
  10853.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10854.      */
  10855.     public byte[] toByteArray(SystemProperties systemProperties,boolean prettyPrint) throws SerializerException {
  10856.         return this.objToXml(SystemProperties.class, systemProperties, prettyPrint).toByteArray();
  10857.     }
  10858.    
  10859.     /**
  10860.      * Serialize to String the object <var>systemProperties</var> of type {@link org.openspcoop2.core.config.SystemProperties}
  10861.      *
  10862.      * @param systemProperties Object to be serialized
  10863.      * @return Object to be serialized as String
  10864.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10865.      */
  10866.     public String toString(SystemProperties systemProperties) throws SerializerException {
  10867.         return this.objToXml(SystemProperties.class, systemProperties, false).toString();
  10868.     }
  10869.     /**
  10870.      * Serialize to String the object <var>systemProperties</var> of type {@link org.openspcoop2.core.config.SystemProperties}
  10871.      *
  10872.      * @param systemProperties Object to be serialized
  10873.      * @param prettyPrint if true output the XML with indenting
  10874.      * @return Object to be serialized as String
  10875.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10876.      */
  10877.     public String toString(SystemProperties systemProperties,boolean prettyPrint) throws SerializerException {
  10878.         return this.objToXml(SystemProperties.class, systemProperties, prettyPrint).toString();
  10879.     }
  10880.    
  10881.    
  10882.    
  10883.     /*
  10884.      =================================================================================
  10885.      Object: correlazione-applicativa-elemento
  10886.      =================================================================================
  10887.     */
  10888.    
  10889.     /**
  10890.      * Serialize to file system in <var>fileName</var> the object <var>correlazioneApplicativaElemento</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaElemento}
  10891.      *
  10892.      * @param fileName Xml file to serialize the object <var>correlazioneApplicativaElemento</var>
  10893.      * @param correlazioneApplicativaElemento Object to be serialized in xml file <var>fileName</var>
  10894.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10895.      */
  10896.     public void write(String fileName,CorrelazioneApplicativaElemento correlazioneApplicativaElemento) throws SerializerException {
  10897.         this.objToXml(fileName, CorrelazioneApplicativaElemento.class, correlazioneApplicativaElemento, false);
  10898.     }
  10899.     /**
  10900.      * Serialize to file system in <var>fileName</var> the object <var>correlazioneApplicativaElemento</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaElemento}
  10901.      *
  10902.      * @param fileName Xml file to serialize the object <var>correlazioneApplicativaElemento</var>
  10903.      * @param correlazioneApplicativaElemento Object to be serialized in xml file <var>fileName</var>
  10904.      * @param prettyPrint if true output the XML with indenting
  10905.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10906.      */
  10907.     public void write(String fileName,CorrelazioneApplicativaElemento correlazioneApplicativaElemento,boolean prettyPrint) throws SerializerException {
  10908.         this.objToXml(fileName, CorrelazioneApplicativaElemento.class, correlazioneApplicativaElemento, prettyPrint);
  10909.     }
  10910.    
  10911.     /**
  10912.      * Serialize to file system in <var>file</var> the object <var>correlazioneApplicativaElemento</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaElemento}
  10913.      *
  10914.      * @param file Xml file to serialize the object <var>correlazioneApplicativaElemento</var>
  10915.      * @param correlazioneApplicativaElemento Object to be serialized in xml file <var>fileName</var>
  10916.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10917.      */
  10918.     public void write(File file,CorrelazioneApplicativaElemento correlazioneApplicativaElemento) throws SerializerException {
  10919.         this.objToXml(file, CorrelazioneApplicativaElemento.class, correlazioneApplicativaElemento, false);
  10920.     }
  10921.     /**
  10922.      * Serialize to file system in <var>file</var> the object <var>correlazioneApplicativaElemento</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaElemento}
  10923.      *
  10924.      * @param file Xml file to serialize the object <var>correlazioneApplicativaElemento</var>
  10925.      * @param correlazioneApplicativaElemento Object to be serialized in xml file <var>fileName</var>
  10926.      * @param prettyPrint if true output the XML with indenting
  10927.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10928.      */
  10929.     public void write(File file,CorrelazioneApplicativaElemento correlazioneApplicativaElemento,boolean prettyPrint) throws SerializerException {
  10930.         this.objToXml(file, CorrelazioneApplicativaElemento.class, correlazioneApplicativaElemento, prettyPrint);
  10931.     }
  10932.    
  10933.     /**
  10934.      * Serialize to output stream <var>out</var> the object <var>correlazioneApplicativaElemento</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaElemento}
  10935.      *
  10936.      * @param out OutputStream to serialize the object <var>correlazioneApplicativaElemento</var>
  10937.      * @param correlazioneApplicativaElemento Object to be serialized in xml file <var>fileName</var>
  10938.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10939.      */
  10940.     public void write(OutputStream out,CorrelazioneApplicativaElemento correlazioneApplicativaElemento) throws SerializerException {
  10941.         this.objToXml(out, CorrelazioneApplicativaElemento.class, correlazioneApplicativaElemento, false);
  10942.     }
  10943.     /**
  10944.      * Serialize to output stream <var>out</var> the object <var>correlazioneApplicativaElemento</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaElemento}
  10945.      *
  10946.      * @param out OutputStream to serialize the object <var>correlazioneApplicativaElemento</var>
  10947.      * @param correlazioneApplicativaElemento Object to be serialized in xml file <var>fileName</var>
  10948.      * @param prettyPrint if true output the XML with indenting
  10949.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10950.      */
  10951.     public void write(OutputStream out,CorrelazioneApplicativaElemento correlazioneApplicativaElemento,boolean prettyPrint) throws SerializerException {
  10952.         this.objToXml(out, CorrelazioneApplicativaElemento.class, correlazioneApplicativaElemento, prettyPrint);
  10953.     }
  10954.            
  10955.     /**
  10956.      * Serialize to byte array the object <var>correlazioneApplicativaElemento</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaElemento}
  10957.      *
  10958.      * @param correlazioneApplicativaElemento Object to be serialized
  10959.      * @return Object to be serialized in byte array
  10960.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10961.      */
  10962.     public byte[] toByteArray(CorrelazioneApplicativaElemento correlazioneApplicativaElemento) throws SerializerException {
  10963.         return this.objToXml(CorrelazioneApplicativaElemento.class, correlazioneApplicativaElemento, false).toByteArray();
  10964.     }
  10965.     /**
  10966.      * Serialize to byte array the object <var>correlazioneApplicativaElemento</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaElemento}
  10967.      *
  10968.      * @param correlazioneApplicativaElemento Object to be serialized
  10969.      * @param prettyPrint if true output the XML with indenting
  10970.      * @return Object to be serialized in byte array
  10971.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10972.      */
  10973.     public byte[] toByteArray(CorrelazioneApplicativaElemento correlazioneApplicativaElemento,boolean prettyPrint) throws SerializerException {
  10974.         return this.objToXml(CorrelazioneApplicativaElemento.class, correlazioneApplicativaElemento, prettyPrint).toByteArray();
  10975.     }
  10976.    
  10977.     /**
  10978.      * Serialize to String the object <var>correlazioneApplicativaElemento</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaElemento}
  10979.      *
  10980.      * @param correlazioneApplicativaElemento Object to be serialized
  10981.      * @return Object to be serialized as String
  10982.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10983.      */
  10984.     public String toString(CorrelazioneApplicativaElemento correlazioneApplicativaElemento) throws SerializerException {
  10985.         return this.objToXml(CorrelazioneApplicativaElemento.class, correlazioneApplicativaElemento, false).toString();
  10986.     }
  10987.     /**
  10988.      * Serialize to String the object <var>correlazioneApplicativaElemento</var> of type {@link org.openspcoop2.core.config.CorrelazioneApplicativaElemento}
  10989.      *
  10990.      * @param correlazioneApplicativaElemento Object to be serialized
  10991.      * @param prettyPrint if true output the XML with indenting
  10992.      * @return Object to be serialized as String
  10993.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  10994.      */
  10995.     public String toString(CorrelazioneApplicativaElemento correlazioneApplicativaElemento,boolean prettyPrint) throws SerializerException {
  10996.         return this.objToXml(CorrelazioneApplicativaElemento.class, correlazioneApplicativaElemento, prettyPrint).toString();
  10997.     }
  10998.    
  10999.    
  11000.    
  11001.     /*
  11002.      =================================================================================
  11003.      Object: trasformazione-regola
  11004.      =================================================================================
  11005.     */
  11006.    
  11007.     /**
  11008.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioneRegola</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegola}
  11009.      *
  11010.      * @param fileName Xml file to serialize the object <var>trasformazioneRegola</var>
  11011.      * @param trasformazioneRegola Object to be serialized in xml file <var>fileName</var>
  11012.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11013.      */
  11014.     public void write(String fileName,TrasformazioneRegola trasformazioneRegola) throws SerializerException {
  11015.         this.objToXml(fileName, TrasformazioneRegola.class, trasformazioneRegola, false);
  11016.     }
  11017.     /**
  11018.      * Serialize to file system in <var>fileName</var> the object <var>trasformazioneRegola</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegola}
  11019.      *
  11020.      * @param fileName Xml file to serialize the object <var>trasformazioneRegola</var>
  11021.      * @param trasformazioneRegola Object to be serialized in xml file <var>fileName</var>
  11022.      * @param prettyPrint if true output the XML with indenting
  11023.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11024.      */
  11025.     public void write(String fileName,TrasformazioneRegola trasformazioneRegola,boolean prettyPrint) throws SerializerException {
  11026.         this.objToXml(fileName, TrasformazioneRegola.class, trasformazioneRegola, prettyPrint);
  11027.     }
  11028.    
  11029.     /**
  11030.      * Serialize to file system in <var>file</var> the object <var>trasformazioneRegola</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegola}
  11031.      *
  11032.      * @param file Xml file to serialize the object <var>trasformazioneRegola</var>
  11033.      * @param trasformazioneRegola Object to be serialized in xml file <var>fileName</var>
  11034.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11035.      */
  11036.     public void write(File file,TrasformazioneRegola trasformazioneRegola) throws SerializerException {
  11037.         this.objToXml(file, TrasformazioneRegola.class, trasformazioneRegola, false);
  11038.     }
  11039.     /**
  11040.      * Serialize to file system in <var>file</var> the object <var>trasformazioneRegola</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegola}
  11041.      *
  11042.      * @param file Xml file to serialize the object <var>trasformazioneRegola</var>
  11043.      * @param trasformazioneRegola Object to be serialized in xml file <var>fileName</var>
  11044.      * @param prettyPrint if true output the XML with indenting
  11045.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11046.      */
  11047.     public void write(File file,TrasformazioneRegola trasformazioneRegola,boolean prettyPrint) throws SerializerException {
  11048.         this.objToXml(file, TrasformazioneRegola.class, trasformazioneRegola, prettyPrint);
  11049.     }
  11050.    
  11051.     /**
  11052.      * Serialize to output stream <var>out</var> the object <var>trasformazioneRegola</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegola}
  11053.      *
  11054.      * @param out OutputStream to serialize the object <var>trasformazioneRegola</var>
  11055.      * @param trasformazioneRegola Object to be serialized in xml file <var>fileName</var>
  11056.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11057.      */
  11058.     public void write(OutputStream out,TrasformazioneRegola trasformazioneRegola) throws SerializerException {
  11059.         this.objToXml(out, TrasformazioneRegola.class, trasformazioneRegola, false);
  11060.     }
  11061.     /**
  11062.      * Serialize to output stream <var>out</var> the object <var>trasformazioneRegola</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegola}
  11063.      *
  11064.      * @param out OutputStream to serialize the object <var>trasformazioneRegola</var>
  11065.      * @param trasformazioneRegola Object to be serialized in xml file <var>fileName</var>
  11066.      * @param prettyPrint if true output the XML with indenting
  11067.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11068.      */
  11069.     public void write(OutputStream out,TrasformazioneRegola trasformazioneRegola,boolean prettyPrint) throws SerializerException {
  11070.         this.objToXml(out, TrasformazioneRegola.class, trasformazioneRegola, prettyPrint);
  11071.     }
  11072.            
  11073.     /**
  11074.      * Serialize to byte array the object <var>trasformazioneRegola</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegola}
  11075.      *
  11076.      * @param trasformazioneRegola Object to be serialized
  11077.      * @return Object to be serialized in byte array
  11078.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11079.      */
  11080.     public byte[] toByteArray(TrasformazioneRegola trasformazioneRegola) throws SerializerException {
  11081.         return this.objToXml(TrasformazioneRegola.class, trasformazioneRegola, false).toByteArray();
  11082.     }
  11083.     /**
  11084.      * Serialize to byte array the object <var>trasformazioneRegola</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegola}
  11085.      *
  11086.      * @param trasformazioneRegola Object to be serialized
  11087.      * @param prettyPrint if true output the XML with indenting
  11088.      * @return Object to be serialized in byte array
  11089.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11090.      */
  11091.     public byte[] toByteArray(TrasformazioneRegola trasformazioneRegola,boolean prettyPrint) throws SerializerException {
  11092.         return this.objToXml(TrasformazioneRegola.class, trasformazioneRegola, prettyPrint).toByteArray();
  11093.     }
  11094.    
  11095.     /**
  11096.      * Serialize to String the object <var>trasformazioneRegola</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegola}
  11097.      *
  11098.      * @param trasformazioneRegola Object to be serialized
  11099.      * @return Object to be serialized as String
  11100.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11101.      */
  11102.     public String toString(TrasformazioneRegola trasformazioneRegola) throws SerializerException {
  11103.         return this.objToXml(TrasformazioneRegola.class, trasformazioneRegola, false).toString();
  11104.     }
  11105.     /**
  11106.      * Serialize to String the object <var>trasformazioneRegola</var> of type {@link org.openspcoop2.core.config.TrasformazioneRegola}
  11107.      *
  11108.      * @param trasformazioneRegola Object to be serialized
  11109.      * @param prettyPrint if true output the XML with indenting
  11110.      * @return Object to be serialized as String
  11111.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11112.      */
  11113.     public String toString(TrasformazioneRegola trasformazioneRegola,boolean prettyPrint) throws SerializerException {
  11114.         return this.objToXml(TrasformazioneRegola.class, trasformazioneRegola, prettyPrint).toString();
  11115.     }
  11116.    
  11117.    
  11118.    
  11119.     /*
  11120.      =================================================================================
  11121.      Object: inoltro-buste-non-riscontrate
  11122.      =================================================================================
  11123.     */
  11124.    
  11125.     /**
  11126.      * Serialize to file system in <var>fileName</var> the object <var>inoltroBusteNonRiscontrate</var> of type {@link org.openspcoop2.core.config.InoltroBusteNonRiscontrate}
  11127.      *
  11128.      * @param fileName Xml file to serialize the object <var>inoltroBusteNonRiscontrate</var>
  11129.      * @param inoltroBusteNonRiscontrate Object to be serialized in xml file <var>fileName</var>
  11130.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11131.      */
  11132.     public void write(String fileName,InoltroBusteNonRiscontrate inoltroBusteNonRiscontrate) throws SerializerException {
  11133.         this.objToXml(fileName, InoltroBusteNonRiscontrate.class, inoltroBusteNonRiscontrate, false);
  11134.     }
  11135.     /**
  11136.      * Serialize to file system in <var>fileName</var> the object <var>inoltroBusteNonRiscontrate</var> of type {@link org.openspcoop2.core.config.InoltroBusteNonRiscontrate}
  11137.      *
  11138.      * @param fileName Xml file to serialize the object <var>inoltroBusteNonRiscontrate</var>
  11139.      * @param inoltroBusteNonRiscontrate Object to be serialized in xml file <var>fileName</var>
  11140.      * @param prettyPrint if true output the XML with indenting
  11141.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11142.      */
  11143.     public void write(String fileName,InoltroBusteNonRiscontrate inoltroBusteNonRiscontrate,boolean prettyPrint) throws SerializerException {
  11144.         this.objToXml(fileName, InoltroBusteNonRiscontrate.class, inoltroBusteNonRiscontrate, prettyPrint);
  11145.     }
  11146.    
  11147.     /**
  11148.      * Serialize to file system in <var>file</var> the object <var>inoltroBusteNonRiscontrate</var> of type {@link org.openspcoop2.core.config.InoltroBusteNonRiscontrate}
  11149.      *
  11150.      * @param file Xml file to serialize the object <var>inoltroBusteNonRiscontrate</var>
  11151.      * @param inoltroBusteNonRiscontrate Object to be serialized in xml file <var>fileName</var>
  11152.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11153.      */
  11154.     public void write(File file,InoltroBusteNonRiscontrate inoltroBusteNonRiscontrate) throws SerializerException {
  11155.         this.objToXml(file, InoltroBusteNonRiscontrate.class, inoltroBusteNonRiscontrate, false);
  11156.     }
  11157.     /**
  11158.      * Serialize to file system in <var>file</var> the object <var>inoltroBusteNonRiscontrate</var> of type {@link org.openspcoop2.core.config.InoltroBusteNonRiscontrate}
  11159.      *
  11160.      * @param file Xml file to serialize the object <var>inoltroBusteNonRiscontrate</var>
  11161.      * @param inoltroBusteNonRiscontrate Object to be serialized in xml file <var>fileName</var>
  11162.      * @param prettyPrint if true output the XML with indenting
  11163.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11164.      */
  11165.     public void write(File file,InoltroBusteNonRiscontrate inoltroBusteNonRiscontrate,boolean prettyPrint) throws SerializerException {
  11166.         this.objToXml(file, InoltroBusteNonRiscontrate.class, inoltroBusteNonRiscontrate, prettyPrint);
  11167.     }
  11168.    
  11169.     /**
  11170.      * Serialize to output stream <var>out</var> the object <var>inoltroBusteNonRiscontrate</var> of type {@link org.openspcoop2.core.config.InoltroBusteNonRiscontrate}
  11171.      *
  11172.      * @param out OutputStream to serialize the object <var>inoltroBusteNonRiscontrate</var>
  11173.      * @param inoltroBusteNonRiscontrate Object to be serialized in xml file <var>fileName</var>
  11174.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11175.      */
  11176.     public void write(OutputStream out,InoltroBusteNonRiscontrate inoltroBusteNonRiscontrate) throws SerializerException {
  11177.         this.objToXml(out, InoltroBusteNonRiscontrate.class, inoltroBusteNonRiscontrate, false);
  11178.     }
  11179.     /**
  11180.      * Serialize to output stream <var>out</var> the object <var>inoltroBusteNonRiscontrate</var> of type {@link org.openspcoop2.core.config.InoltroBusteNonRiscontrate}
  11181.      *
  11182.      * @param out OutputStream to serialize the object <var>inoltroBusteNonRiscontrate</var>
  11183.      * @param inoltroBusteNonRiscontrate Object to be serialized in xml file <var>fileName</var>
  11184.      * @param prettyPrint if true output the XML with indenting
  11185.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11186.      */
  11187.     public void write(OutputStream out,InoltroBusteNonRiscontrate inoltroBusteNonRiscontrate,boolean prettyPrint) throws SerializerException {
  11188.         this.objToXml(out, InoltroBusteNonRiscontrate.class, inoltroBusteNonRiscontrate, prettyPrint);
  11189.     }
  11190.            
  11191.     /**
  11192.      * Serialize to byte array the object <var>inoltroBusteNonRiscontrate</var> of type {@link org.openspcoop2.core.config.InoltroBusteNonRiscontrate}
  11193.      *
  11194.      * @param inoltroBusteNonRiscontrate Object to be serialized
  11195.      * @return Object to be serialized in byte array
  11196.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11197.      */
  11198.     public byte[] toByteArray(InoltroBusteNonRiscontrate inoltroBusteNonRiscontrate) throws SerializerException {
  11199.         return this.objToXml(InoltroBusteNonRiscontrate.class, inoltroBusteNonRiscontrate, false).toByteArray();
  11200.     }
  11201.     /**
  11202.      * Serialize to byte array the object <var>inoltroBusteNonRiscontrate</var> of type {@link org.openspcoop2.core.config.InoltroBusteNonRiscontrate}
  11203.      *
  11204.      * @param inoltroBusteNonRiscontrate Object to be serialized
  11205.      * @param prettyPrint if true output the XML with indenting
  11206.      * @return Object to be serialized in byte array
  11207.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11208.      */
  11209.     public byte[] toByteArray(InoltroBusteNonRiscontrate inoltroBusteNonRiscontrate,boolean prettyPrint) throws SerializerException {
  11210.         return this.objToXml(InoltroBusteNonRiscontrate.class, inoltroBusteNonRiscontrate, prettyPrint).toByteArray();
  11211.     }
  11212.    
  11213.     /**
  11214.      * Serialize to String the object <var>inoltroBusteNonRiscontrate</var> of type {@link org.openspcoop2.core.config.InoltroBusteNonRiscontrate}
  11215.      *
  11216.      * @param inoltroBusteNonRiscontrate Object to be serialized
  11217.      * @return Object to be serialized as String
  11218.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11219.      */
  11220.     public String toString(InoltroBusteNonRiscontrate inoltroBusteNonRiscontrate) throws SerializerException {
  11221.         return this.objToXml(InoltroBusteNonRiscontrate.class, inoltroBusteNonRiscontrate, false).toString();
  11222.     }
  11223.     /**
  11224.      * Serialize to String the object <var>inoltroBusteNonRiscontrate</var> of type {@link org.openspcoop2.core.config.InoltroBusteNonRiscontrate}
  11225.      *
  11226.      * @param inoltroBusteNonRiscontrate Object to be serialized
  11227.      * @param prettyPrint if true output the XML with indenting
  11228.      * @return Object to be serialized as String
  11229.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11230.      */
  11231.     public String toString(InoltroBusteNonRiscontrate inoltroBusteNonRiscontrate,boolean prettyPrint) throws SerializerException {
  11232.         return this.objToXml(InoltroBusteNonRiscontrate.class, inoltroBusteNonRiscontrate, prettyPrint).toString();
  11233.     }
  11234.    
  11235.    
  11236.    
  11237.     /*
  11238.      =================================================================================
  11239.      Object: route-gateway
  11240.      =================================================================================
  11241.     */
  11242.    
  11243.     /**
  11244.      * Serialize to file system in <var>fileName</var> the object <var>routeGateway</var> of type {@link org.openspcoop2.core.config.RouteGateway}
  11245.      *
  11246.      * @param fileName Xml file to serialize the object <var>routeGateway</var>
  11247.      * @param routeGateway Object to be serialized in xml file <var>fileName</var>
  11248.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11249.      */
  11250.     public void write(String fileName,RouteGateway routeGateway) throws SerializerException {
  11251.         this.objToXml(fileName, RouteGateway.class, routeGateway, false);
  11252.     }
  11253.     /**
  11254.      * Serialize to file system in <var>fileName</var> the object <var>routeGateway</var> of type {@link org.openspcoop2.core.config.RouteGateway}
  11255.      *
  11256.      * @param fileName Xml file to serialize the object <var>routeGateway</var>
  11257.      * @param routeGateway Object to be serialized in xml file <var>fileName</var>
  11258.      * @param prettyPrint if true output the XML with indenting
  11259.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11260.      */
  11261.     public void write(String fileName,RouteGateway routeGateway,boolean prettyPrint) throws SerializerException {
  11262.         this.objToXml(fileName, RouteGateway.class, routeGateway, prettyPrint);
  11263.     }
  11264.    
  11265.     /**
  11266.      * Serialize to file system in <var>file</var> the object <var>routeGateway</var> of type {@link org.openspcoop2.core.config.RouteGateway}
  11267.      *
  11268.      * @param file Xml file to serialize the object <var>routeGateway</var>
  11269.      * @param routeGateway Object to be serialized in xml file <var>fileName</var>
  11270.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11271.      */
  11272.     public void write(File file,RouteGateway routeGateway) throws SerializerException {
  11273.         this.objToXml(file, RouteGateway.class, routeGateway, false);
  11274.     }
  11275.     /**
  11276.      * Serialize to file system in <var>file</var> the object <var>routeGateway</var> of type {@link org.openspcoop2.core.config.RouteGateway}
  11277.      *
  11278.      * @param file Xml file to serialize the object <var>routeGateway</var>
  11279.      * @param routeGateway Object to be serialized in xml file <var>fileName</var>
  11280.      * @param prettyPrint if true output the XML with indenting
  11281.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11282.      */
  11283.     public void write(File file,RouteGateway routeGateway,boolean prettyPrint) throws SerializerException {
  11284.         this.objToXml(file, RouteGateway.class, routeGateway, prettyPrint);
  11285.     }
  11286.    
  11287.     /**
  11288.      * Serialize to output stream <var>out</var> the object <var>routeGateway</var> of type {@link org.openspcoop2.core.config.RouteGateway}
  11289.      *
  11290.      * @param out OutputStream to serialize the object <var>routeGateway</var>
  11291.      * @param routeGateway Object to be serialized in xml file <var>fileName</var>
  11292.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11293.      */
  11294.     public void write(OutputStream out,RouteGateway routeGateway) throws SerializerException {
  11295.         this.objToXml(out, RouteGateway.class, routeGateway, false);
  11296.     }
  11297.     /**
  11298.      * Serialize to output stream <var>out</var> the object <var>routeGateway</var> of type {@link org.openspcoop2.core.config.RouteGateway}
  11299.      *
  11300.      * @param out OutputStream to serialize the object <var>routeGateway</var>
  11301.      * @param routeGateway Object to be serialized in xml file <var>fileName</var>
  11302.      * @param prettyPrint if true output the XML with indenting
  11303.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11304.      */
  11305.     public void write(OutputStream out,RouteGateway routeGateway,boolean prettyPrint) throws SerializerException {
  11306.         this.objToXml(out, RouteGateway.class, routeGateway, prettyPrint);
  11307.     }
  11308.            
  11309.     /**
  11310.      * Serialize to byte array the object <var>routeGateway</var> of type {@link org.openspcoop2.core.config.RouteGateway}
  11311.      *
  11312.      * @param routeGateway Object to be serialized
  11313.      * @return Object to be serialized in byte array
  11314.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11315.      */
  11316.     public byte[] toByteArray(RouteGateway routeGateway) throws SerializerException {
  11317.         return this.objToXml(RouteGateway.class, routeGateway, false).toByteArray();
  11318.     }
  11319.     /**
  11320.      * Serialize to byte array the object <var>routeGateway</var> of type {@link org.openspcoop2.core.config.RouteGateway}
  11321.      *
  11322.      * @param routeGateway Object to be serialized
  11323.      * @param prettyPrint if true output the XML with indenting
  11324.      * @return Object to be serialized in byte array
  11325.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11326.      */
  11327.     public byte[] toByteArray(RouteGateway routeGateway,boolean prettyPrint) throws SerializerException {
  11328.         return this.objToXml(RouteGateway.class, routeGateway, prettyPrint).toByteArray();
  11329.     }
  11330.    
  11331.     /**
  11332.      * Serialize to String the object <var>routeGateway</var> of type {@link org.openspcoop2.core.config.RouteGateway}
  11333.      *
  11334.      * @param routeGateway Object to be serialized
  11335.      * @return Object to be serialized as String
  11336.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11337.      */
  11338.     public String toString(RouteGateway routeGateway) throws SerializerException {
  11339.         return this.objToXml(RouteGateway.class, routeGateway, false).toString();
  11340.     }
  11341.     /**
  11342.      * Serialize to String the object <var>routeGateway</var> of type {@link org.openspcoop2.core.config.RouteGateway}
  11343.      *
  11344.      * @param routeGateway Object to be serialized
  11345.      * @param prettyPrint if true output the XML with indenting
  11346.      * @return Object to be serialized as String
  11347.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11348.      */
  11349.     public String toString(RouteGateway routeGateway,boolean prettyPrint) throws SerializerException {
  11350.         return this.objToXml(RouteGateway.class, routeGateway, prettyPrint).toString();
  11351.     }
  11352.    
  11353.    
  11354.    
  11355.     /*
  11356.      =================================================================================
  11357.      Object: openspcoop2
  11358.      =================================================================================
  11359.     */
  11360.    
  11361.     /**
  11362.      * Serialize to file system in <var>fileName</var> the object <var>openspcoop2</var> of type {@link org.openspcoop2.core.config.Openspcoop2}
  11363.      *
  11364.      * @param fileName Xml file to serialize the object <var>openspcoop2</var>
  11365.      * @param openspcoop2 Object to be serialized in xml file <var>fileName</var>
  11366.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11367.      */
  11368.     public void write(String fileName,Openspcoop2 openspcoop2) throws SerializerException {
  11369.         this.objToXml(fileName, Openspcoop2.class, openspcoop2, false);
  11370.     }
  11371.     /**
  11372.      * Serialize to file system in <var>fileName</var> the object <var>openspcoop2</var> of type {@link org.openspcoop2.core.config.Openspcoop2}
  11373.      *
  11374.      * @param fileName Xml file to serialize the object <var>openspcoop2</var>
  11375.      * @param openspcoop2 Object to be serialized in xml file <var>fileName</var>
  11376.      * @param prettyPrint if true output the XML with indenting
  11377.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11378.      */
  11379.     public void write(String fileName,Openspcoop2 openspcoop2,boolean prettyPrint) throws SerializerException {
  11380.         this.objToXml(fileName, Openspcoop2.class, openspcoop2, prettyPrint);
  11381.     }
  11382.    
  11383.     /**
  11384.      * Serialize to file system in <var>file</var> the object <var>openspcoop2</var> of type {@link org.openspcoop2.core.config.Openspcoop2}
  11385.      *
  11386.      * @param file Xml file to serialize the object <var>openspcoop2</var>
  11387.      * @param openspcoop2 Object to be serialized in xml file <var>fileName</var>
  11388.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11389.      */
  11390.     public void write(File file,Openspcoop2 openspcoop2) throws SerializerException {
  11391.         this.objToXml(file, Openspcoop2.class, openspcoop2, false);
  11392.     }
  11393.     /**
  11394.      * Serialize to file system in <var>file</var> the object <var>openspcoop2</var> of type {@link org.openspcoop2.core.config.Openspcoop2}
  11395.      *
  11396.      * @param file Xml file to serialize the object <var>openspcoop2</var>
  11397.      * @param openspcoop2 Object to be serialized in xml file <var>fileName</var>
  11398.      * @param prettyPrint if true output the XML with indenting
  11399.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11400.      */
  11401.     public void write(File file,Openspcoop2 openspcoop2,boolean prettyPrint) throws SerializerException {
  11402.         this.objToXml(file, Openspcoop2.class, openspcoop2, prettyPrint);
  11403.     }
  11404.    
  11405.     /**
  11406.      * Serialize to output stream <var>out</var> the object <var>openspcoop2</var> of type {@link org.openspcoop2.core.config.Openspcoop2}
  11407.      *
  11408.      * @param out OutputStream to serialize the object <var>openspcoop2</var>
  11409.      * @param openspcoop2 Object to be serialized in xml file <var>fileName</var>
  11410.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11411.      */
  11412.     public void write(OutputStream out,Openspcoop2 openspcoop2) throws SerializerException {
  11413.         this.objToXml(out, Openspcoop2.class, openspcoop2, false);
  11414.     }
  11415.     /**
  11416.      * Serialize to output stream <var>out</var> the object <var>openspcoop2</var> of type {@link org.openspcoop2.core.config.Openspcoop2}
  11417.      *
  11418.      * @param out OutputStream to serialize the object <var>openspcoop2</var>
  11419.      * @param openspcoop2 Object to be serialized in xml file <var>fileName</var>
  11420.      * @param prettyPrint if true output the XML with indenting
  11421.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11422.      */
  11423.     public void write(OutputStream out,Openspcoop2 openspcoop2,boolean prettyPrint) throws SerializerException {
  11424.         this.objToXml(out, Openspcoop2.class, openspcoop2, prettyPrint);
  11425.     }
  11426.            
  11427.     /**
  11428.      * Serialize to byte array the object <var>openspcoop2</var> of type {@link org.openspcoop2.core.config.Openspcoop2}
  11429.      *
  11430.      * @param openspcoop2 Object to be serialized
  11431.      * @return Object to be serialized in byte array
  11432.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11433.      */
  11434.     public byte[] toByteArray(Openspcoop2 openspcoop2) throws SerializerException {
  11435.         return this.objToXml(Openspcoop2.class, openspcoop2, false).toByteArray();
  11436.     }
  11437.     /**
  11438.      * Serialize to byte array the object <var>openspcoop2</var> of type {@link org.openspcoop2.core.config.Openspcoop2}
  11439.      *
  11440.      * @param openspcoop2 Object to be serialized
  11441.      * @param prettyPrint if true output the XML with indenting
  11442.      * @return Object to be serialized in byte array
  11443.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11444.      */
  11445.     public byte[] toByteArray(Openspcoop2 openspcoop2,boolean prettyPrint) throws SerializerException {
  11446.         return this.objToXml(Openspcoop2.class, openspcoop2, prettyPrint).toByteArray();
  11447.     }
  11448.    
  11449.     /**
  11450.      * Serialize to String the object <var>openspcoop2</var> of type {@link org.openspcoop2.core.config.Openspcoop2}
  11451.      *
  11452.      * @param openspcoop2 Object to be serialized
  11453.      * @return Object to be serialized as String
  11454.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11455.      */
  11456.     public String toString(Openspcoop2 openspcoop2) throws SerializerException {
  11457.         return this.objToXml(Openspcoop2.class, openspcoop2, false).toString();
  11458.     }
  11459.     /**
  11460.      * Serialize to String the object <var>openspcoop2</var> of type {@link org.openspcoop2.core.config.Openspcoop2}
  11461.      *
  11462.      * @param openspcoop2 Object to be serialized
  11463.      * @param prettyPrint if true output the XML with indenting
  11464.      * @return Object to be serialized as String
  11465.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11466.      */
  11467.     public String toString(Openspcoop2 openspcoop2,boolean prettyPrint) throws SerializerException {
  11468.         return this.objToXml(Openspcoop2.class, openspcoop2, prettyPrint).toString();
  11469.     }
  11470.    
  11471.    
  11472.    
  11473.     /*
  11474.      =================================================================================
  11475.      Object: configurazione
  11476.      =================================================================================
  11477.     */
  11478.    
  11479.     /**
  11480.      * Serialize to file system in <var>fileName</var> the object <var>configurazione</var> of type {@link org.openspcoop2.core.config.Configurazione}
  11481.      *
  11482.      * @param fileName Xml file to serialize the object <var>configurazione</var>
  11483.      * @param configurazione Object to be serialized in xml file <var>fileName</var>
  11484.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11485.      */
  11486.     public void write(String fileName,Configurazione configurazione) throws SerializerException {
  11487.         this.objToXml(fileName, Configurazione.class, configurazione, false);
  11488.     }
  11489.     /**
  11490.      * Serialize to file system in <var>fileName</var> the object <var>configurazione</var> of type {@link org.openspcoop2.core.config.Configurazione}
  11491.      *
  11492.      * @param fileName Xml file to serialize the object <var>configurazione</var>
  11493.      * @param configurazione Object to be serialized in xml file <var>fileName</var>
  11494.      * @param prettyPrint if true output the XML with indenting
  11495.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11496.      */
  11497.     public void write(String fileName,Configurazione configurazione,boolean prettyPrint) throws SerializerException {
  11498.         this.objToXml(fileName, Configurazione.class, configurazione, prettyPrint);
  11499.     }
  11500.    
  11501.     /**
  11502.      * Serialize to file system in <var>file</var> the object <var>configurazione</var> of type {@link org.openspcoop2.core.config.Configurazione}
  11503.      *
  11504.      * @param file Xml file to serialize the object <var>configurazione</var>
  11505.      * @param configurazione Object to be serialized in xml file <var>fileName</var>
  11506.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11507.      */
  11508.     public void write(File file,Configurazione configurazione) throws SerializerException {
  11509.         this.objToXml(file, Configurazione.class, configurazione, false);
  11510.     }
  11511.     /**
  11512.      * Serialize to file system in <var>file</var> the object <var>configurazione</var> of type {@link org.openspcoop2.core.config.Configurazione}
  11513.      *
  11514.      * @param file Xml file to serialize the object <var>configurazione</var>
  11515.      * @param configurazione Object to be serialized in xml file <var>fileName</var>
  11516.      * @param prettyPrint if true output the XML with indenting
  11517.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11518.      */
  11519.     public void write(File file,Configurazione configurazione,boolean prettyPrint) throws SerializerException {
  11520.         this.objToXml(file, Configurazione.class, configurazione, prettyPrint);
  11521.     }
  11522.    
  11523.     /**
  11524.      * Serialize to output stream <var>out</var> the object <var>configurazione</var> of type {@link org.openspcoop2.core.config.Configurazione}
  11525.      *
  11526.      * @param out OutputStream to serialize the object <var>configurazione</var>
  11527.      * @param configurazione Object to be serialized in xml file <var>fileName</var>
  11528.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11529.      */
  11530.     public void write(OutputStream out,Configurazione configurazione) throws SerializerException {
  11531.         this.objToXml(out, Configurazione.class, configurazione, false);
  11532.     }
  11533.     /**
  11534.      * Serialize to output stream <var>out</var> the object <var>configurazione</var> of type {@link org.openspcoop2.core.config.Configurazione}
  11535.      *
  11536.      * @param out OutputStream to serialize the object <var>configurazione</var>
  11537.      * @param configurazione Object to be serialized in xml file <var>fileName</var>
  11538.      * @param prettyPrint if true output the XML with indenting
  11539.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11540.      */
  11541.     public void write(OutputStream out,Configurazione configurazione,boolean prettyPrint) throws SerializerException {
  11542.         this.objToXml(out, Configurazione.class, configurazione, prettyPrint);
  11543.     }
  11544.            
  11545.     /**
  11546.      * Serialize to byte array the object <var>configurazione</var> of type {@link org.openspcoop2.core.config.Configurazione}
  11547.      *
  11548.      * @param configurazione Object to be serialized
  11549.      * @return Object to be serialized in byte array
  11550.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11551.      */
  11552.     public byte[] toByteArray(Configurazione configurazione) throws SerializerException {
  11553.         return this.objToXml(Configurazione.class, configurazione, false).toByteArray();
  11554.     }
  11555.     /**
  11556.      * Serialize to byte array the object <var>configurazione</var> of type {@link org.openspcoop2.core.config.Configurazione}
  11557.      *
  11558.      * @param configurazione Object to be serialized
  11559.      * @param prettyPrint if true output the XML with indenting
  11560.      * @return Object to be serialized in byte array
  11561.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11562.      */
  11563.     public byte[] toByteArray(Configurazione configurazione,boolean prettyPrint) throws SerializerException {
  11564.         return this.objToXml(Configurazione.class, configurazione, prettyPrint).toByteArray();
  11565.     }
  11566.    
  11567.     /**
  11568.      * Serialize to String the object <var>configurazione</var> of type {@link org.openspcoop2.core.config.Configurazione}
  11569.      *
  11570.      * @param configurazione Object to be serialized
  11571.      * @return Object to be serialized as String
  11572.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11573.      */
  11574.     public String toString(Configurazione configurazione) throws SerializerException {
  11575.         return this.objToXml(Configurazione.class, configurazione, false).toString();
  11576.     }
  11577.     /**
  11578.      * Serialize to String the object <var>configurazione</var> of type {@link org.openspcoop2.core.config.Configurazione}
  11579.      *
  11580.      * @param configurazione Object to be serialized
  11581.      * @param prettyPrint if true output the XML with indenting
  11582.      * @return Object to be serialized as String
  11583.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11584.      */
  11585.     public String toString(Configurazione configurazione,boolean prettyPrint) throws SerializerException {
  11586.         return this.objToXml(Configurazione.class, configurazione, prettyPrint).toString();
  11587.     }
  11588.    
  11589.    
  11590.    
  11591.     /*
  11592.      =================================================================================
  11593.      Object: cors-configurazione-origin
  11594.      =================================================================================
  11595.     */
  11596.    
  11597.     /**
  11598.      * Serialize to file system in <var>fileName</var> the object <var>corsConfigurazioneOrigin</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneOrigin}
  11599.      *
  11600.      * @param fileName Xml file to serialize the object <var>corsConfigurazioneOrigin</var>
  11601.      * @param corsConfigurazioneOrigin Object to be serialized in xml file <var>fileName</var>
  11602.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11603.      */
  11604.     public void write(String fileName,CorsConfigurazioneOrigin corsConfigurazioneOrigin) throws SerializerException {
  11605.         this.objToXml(fileName, CorsConfigurazioneOrigin.class, corsConfigurazioneOrigin, false);
  11606.     }
  11607.     /**
  11608.      * Serialize to file system in <var>fileName</var> the object <var>corsConfigurazioneOrigin</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneOrigin}
  11609.      *
  11610.      * @param fileName Xml file to serialize the object <var>corsConfigurazioneOrigin</var>
  11611.      * @param corsConfigurazioneOrigin Object to be serialized in xml file <var>fileName</var>
  11612.      * @param prettyPrint if true output the XML with indenting
  11613.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11614.      */
  11615.     public void write(String fileName,CorsConfigurazioneOrigin corsConfigurazioneOrigin,boolean prettyPrint) throws SerializerException {
  11616.         this.objToXml(fileName, CorsConfigurazioneOrigin.class, corsConfigurazioneOrigin, prettyPrint);
  11617.     }
  11618.    
  11619.     /**
  11620.      * Serialize to file system in <var>file</var> the object <var>corsConfigurazioneOrigin</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneOrigin}
  11621.      *
  11622.      * @param file Xml file to serialize the object <var>corsConfigurazioneOrigin</var>
  11623.      * @param corsConfigurazioneOrigin Object to be serialized in xml file <var>fileName</var>
  11624.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11625.      */
  11626.     public void write(File file,CorsConfigurazioneOrigin corsConfigurazioneOrigin) throws SerializerException {
  11627.         this.objToXml(file, CorsConfigurazioneOrigin.class, corsConfigurazioneOrigin, false);
  11628.     }
  11629.     /**
  11630.      * Serialize to file system in <var>file</var> the object <var>corsConfigurazioneOrigin</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneOrigin}
  11631.      *
  11632.      * @param file Xml file to serialize the object <var>corsConfigurazioneOrigin</var>
  11633.      * @param corsConfigurazioneOrigin Object to be serialized in xml file <var>fileName</var>
  11634.      * @param prettyPrint if true output the XML with indenting
  11635.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11636.      */
  11637.     public void write(File file,CorsConfigurazioneOrigin corsConfigurazioneOrigin,boolean prettyPrint) throws SerializerException {
  11638.         this.objToXml(file, CorsConfigurazioneOrigin.class, corsConfigurazioneOrigin, prettyPrint);
  11639.     }
  11640.    
  11641.     /**
  11642.      * Serialize to output stream <var>out</var> the object <var>corsConfigurazioneOrigin</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneOrigin}
  11643.      *
  11644.      * @param out OutputStream to serialize the object <var>corsConfigurazioneOrigin</var>
  11645.      * @param corsConfigurazioneOrigin Object to be serialized in xml file <var>fileName</var>
  11646.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11647.      */
  11648.     public void write(OutputStream out,CorsConfigurazioneOrigin corsConfigurazioneOrigin) throws SerializerException {
  11649.         this.objToXml(out, CorsConfigurazioneOrigin.class, corsConfigurazioneOrigin, false);
  11650.     }
  11651.     /**
  11652.      * Serialize to output stream <var>out</var> the object <var>corsConfigurazioneOrigin</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneOrigin}
  11653.      *
  11654.      * @param out OutputStream to serialize the object <var>corsConfigurazioneOrigin</var>
  11655.      * @param corsConfigurazioneOrigin Object to be serialized in xml file <var>fileName</var>
  11656.      * @param prettyPrint if true output the XML with indenting
  11657.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11658.      */
  11659.     public void write(OutputStream out,CorsConfigurazioneOrigin corsConfigurazioneOrigin,boolean prettyPrint) throws SerializerException {
  11660.         this.objToXml(out, CorsConfigurazioneOrigin.class, corsConfigurazioneOrigin, prettyPrint);
  11661.     }
  11662.            
  11663.     /**
  11664.      * Serialize to byte array the object <var>corsConfigurazioneOrigin</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneOrigin}
  11665.      *
  11666.      * @param corsConfigurazioneOrigin Object to be serialized
  11667.      * @return Object to be serialized in byte array
  11668.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11669.      */
  11670.     public byte[] toByteArray(CorsConfigurazioneOrigin corsConfigurazioneOrigin) throws SerializerException {
  11671.         return this.objToXml(CorsConfigurazioneOrigin.class, corsConfigurazioneOrigin, false).toByteArray();
  11672.     }
  11673.     /**
  11674.      * Serialize to byte array the object <var>corsConfigurazioneOrigin</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneOrigin}
  11675.      *
  11676.      * @param corsConfigurazioneOrigin Object to be serialized
  11677.      * @param prettyPrint if true output the XML with indenting
  11678.      * @return Object to be serialized in byte array
  11679.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11680.      */
  11681.     public byte[] toByteArray(CorsConfigurazioneOrigin corsConfigurazioneOrigin,boolean prettyPrint) throws SerializerException {
  11682.         return this.objToXml(CorsConfigurazioneOrigin.class, corsConfigurazioneOrigin, prettyPrint).toByteArray();
  11683.     }
  11684.    
  11685.     /**
  11686.      * Serialize to String the object <var>corsConfigurazioneOrigin</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneOrigin}
  11687.      *
  11688.      * @param corsConfigurazioneOrigin Object to be serialized
  11689.      * @return Object to be serialized as String
  11690.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11691.      */
  11692.     public String toString(CorsConfigurazioneOrigin corsConfigurazioneOrigin) throws SerializerException {
  11693.         return this.objToXml(CorsConfigurazioneOrigin.class, corsConfigurazioneOrigin, false).toString();
  11694.     }
  11695.     /**
  11696.      * Serialize to String the object <var>corsConfigurazioneOrigin</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneOrigin}
  11697.      *
  11698.      * @param corsConfigurazioneOrigin Object to be serialized
  11699.      * @param prettyPrint if true output the XML with indenting
  11700.      * @return Object to be serialized as String
  11701.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11702.      */
  11703.     public String toString(CorsConfigurazioneOrigin corsConfigurazioneOrigin,boolean prettyPrint) throws SerializerException {
  11704.         return this.objToXml(CorsConfigurazioneOrigin.class, corsConfigurazioneOrigin, prettyPrint).toString();
  11705.     }
  11706.    
  11707.    
  11708.    
  11709.     /*
  11710.      =================================================================================
  11711.      Object: cors-configurazione-methods
  11712.      =================================================================================
  11713.     */
  11714.    
  11715.     /**
  11716.      * Serialize to file system in <var>fileName</var> the object <var>corsConfigurazioneMethods</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneMethods}
  11717.      *
  11718.      * @param fileName Xml file to serialize the object <var>corsConfigurazioneMethods</var>
  11719.      * @param corsConfigurazioneMethods Object to be serialized in xml file <var>fileName</var>
  11720.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11721.      */
  11722.     public void write(String fileName,CorsConfigurazioneMethods corsConfigurazioneMethods) throws SerializerException {
  11723.         this.objToXml(fileName, CorsConfigurazioneMethods.class, corsConfigurazioneMethods, false);
  11724.     }
  11725.     /**
  11726.      * Serialize to file system in <var>fileName</var> the object <var>corsConfigurazioneMethods</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneMethods}
  11727.      *
  11728.      * @param fileName Xml file to serialize the object <var>corsConfigurazioneMethods</var>
  11729.      * @param corsConfigurazioneMethods Object to be serialized in xml file <var>fileName</var>
  11730.      * @param prettyPrint if true output the XML with indenting
  11731.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11732.      */
  11733.     public void write(String fileName,CorsConfigurazioneMethods corsConfigurazioneMethods,boolean prettyPrint) throws SerializerException {
  11734.         this.objToXml(fileName, CorsConfigurazioneMethods.class, corsConfigurazioneMethods, prettyPrint);
  11735.     }
  11736.    
  11737.     /**
  11738.      * Serialize to file system in <var>file</var> the object <var>corsConfigurazioneMethods</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneMethods}
  11739.      *
  11740.      * @param file Xml file to serialize the object <var>corsConfigurazioneMethods</var>
  11741.      * @param corsConfigurazioneMethods Object to be serialized in xml file <var>fileName</var>
  11742.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11743.      */
  11744.     public void write(File file,CorsConfigurazioneMethods corsConfigurazioneMethods) throws SerializerException {
  11745.         this.objToXml(file, CorsConfigurazioneMethods.class, corsConfigurazioneMethods, false);
  11746.     }
  11747.     /**
  11748.      * Serialize to file system in <var>file</var> the object <var>corsConfigurazioneMethods</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneMethods}
  11749.      *
  11750.      * @param file Xml file to serialize the object <var>corsConfigurazioneMethods</var>
  11751.      * @param corsConfigurazioneMethods Object to be serialized in xml file <var>fileName</var>
  11752.      * @param prettyPrint if true output the XML with indenting
  11753.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11754.      */
  11755.     public void write(File file,CorsConfigurazioneMethods corsConfigurazioneMethods,boolean prettyPrint) throws SerializerException {
  11756.         this.objToXml(file, CorsConfigurazioneMethods.class, corsConfigurazioneMethods, prettyPrint);
  11757.     }
  11758.    
  11759.     /**
  11760.      * Serialize to output stream <var>out</var> the object <var>corsConfigurazioneMethods</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneMethods}
  11761.      *
  11762.      * @param out OutputStream to serialize the object <var>corsConfigurazioneMethods</var>
  11763.      * @param corsConfigurazioneMethods Object to be serialized in xml file <var>fileName</var>
  11764.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11765.      */
  11766.     public void write(OutputStream out,CorsConfigurazioneMethods corsConfigurazioneMethods) throws SerializerException {
  11767.         this.objToXml(out, CorsConfigurazioneMethods.class, corsConfigurazioneMethods, false);
  11768.     }
  11769.     /**
  11770.      * Serialize to output stream <var>out</var> the object <var>corsConfigurazioneMethods</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneMethods}
  11771.      *
  11772.      * @param out OutputStream to serialize the object <var>corsConfigurazioneMethods</var>
  11773.      * @param corsConfigurazioneMethods Object to be serialized in xml file <var>fileName</var>
  11774.      * @param prettyPrint if true output the XML with indenting
  11775.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11776.      */
  11777.     public void write(OutputStream out,CorsConfigurazioneMethods corsConfigurazioneMethods,boolean prettyPrint) throws SerializerException {
  11778.         this.objToXml(out, CorsConfigurazioneMethods.class, corsConfigurazioneMethods, prettyPrint);
  11779.     }
  11780.            
  11781.     /**
  11782.      * Serialize to byte array the object <var>corsConfigurazioneMethods</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneMethods}
  11783.      *
  11784.      * @param corsConfigurazioneMethods Object to be serialized
  11785.      * @return Object to be serialized in byte array
  11786.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11787.      */
  11788.     public byte[] toByteArray(CorsConfigurazioneMethods corsConfigurazioneMethods) throws SerializerException {
  11789.         return this.objToXml(CorsConfigurazioneMethods.class, corsConfigurazioneMethods, false).toByteArray();
  11790.     }
  11791.     /**
  11792.      * Serialize to byte array the object <var>corsConfigurazioneMethods</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneMethods}
  11793.      *
  11794.      * @param corsConfigurazioneMethods Object to be serialized
  11795.      * @param prettyPrint if true output the XML with indenting
  11796.      * @return Object to be serialized in byte array
  11797.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11798.      */
  11799.     public byte[] toByteArray(CorsConfigurazioneMethods corsConfigurazioneMethods,boolean prettyPrint) throws SerializerException {
  11800.         return this.objToXml(CorsConfigurazioneMethods.class, corsConfigurazioneMethods, prettyPrint).toByteArray();
  11801.     }
  11802.    
  11803.     /**
  11804.      * Serialize to String the object <var>corsConfigurazioneMethods</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneMethods}
  11805.      *
  11806.      * @param corsConfigurazioneMethods Object to be serialized
  11807.      * @return Object to be serialized as String
  11808.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11809.      */
  11810.     public String toString(CorsConfigurazioneMethods corsConfigurazioneMethods) throws SerializerException {
  11811.         return this.objToXml(CorsConfigurazioneMethods.class, corsConfigurazioneMethods, false).toString();
  11812.     }
  11813.     /**
  11814.      * Serialize to String the object <var>corsConfigurazioneMethods</var> of type {@link org.openspcoop2.core.config.CorsConfigurazioneMethods}
  11815.      *
  11816.      * @param corsConfigurazioneMethods Object to be serialized
  11817.      * @param prettyPrint if true output the XML with indenting
  11818.      * @return Object to be serialized as String
  11819.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11820.      */
  11821.     public String toString(CorsConfigurazioneMethods corsConfigurazioneMethods,boolean prettyPrint) throws SerializerException {
  11822.         return this.objToXml(CorsConfigurazioneMethods.class, corsConfigurazioneMethods, prettyPrint).toString();
  11823.     }
  11824.    
  11825.    
  11826.    
  11827.     /*
  11828.      =================================================================================
  11829.      Object: scope
  11830.      =================================================================================
  11831.     */
  11832.    
  11833.     /**
  11834.      * Serialize to file system in <var>fileName</var> the object <var>scope</var> of type {@link org.openspcoop2.core.config.Scope}
  11835.      *
  11836.      * @param fileName Xml file to serialize the object <var>scope</var>
  11837.      * @param scope Object to be serialized in xml file <var>fileName</var>
  11838.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11839.      */
  11840.     public void write(String fileName,Scope scope) throws SerializerException {
  11841.         this.objToXml(fileName, Scope.class, scope, false);
  11842.     }
  11843.     /**
  11844.      * Serialize to file system in <var>fileName</var> the object <var>scope</var> of type {@link org.openspcoop2.core.config.Scope}
  11845.      *
  11846.      * @param fileName Xml file to serialize the object <var>scope</var>
  11847.      * @param scope Object to be serialized in xml file <var>fileName</var>
  11848.      * @param prettyPrint if true output the XML with indenting
  11849.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11850.      */
  11851.     public void write(String fileName,Scope scope,boolean prettyPrint) throws SerializerException {
  11852.         this.objToXml(fileName, Scope.class, scope, prettyPrint);
  11853.     }
  11854.    
  11855.     /**
  11856.      * Serialize to file system in <var>file</var> the object <var>scope</var> of type {@link org.openspcoop2.core.config.Scope}
  11857.      *
  11858.      * @param file Xml file to serialize the object <var>scope</var>
  11859.      * @param scope Object to be serialized in xml file <var>fileName</var>
  11860.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11861.      */
  11862.     public void write(File file,Scope scope) throws SerializerException {
  11863.         this.objToXml(file, Scope.class, scope, false);
  11864.     }
  11865.     /**
  11866.      * Serialize to file system in <var>file</var> the object <var>scope</var> of type {@link org.openspcoop2.core.config.Scope}
  11867.      *
  11868.      * @param file Xml file to serialize the object <var>scope</var>
  11869.      * @param scope Object to be serialized in xml file <var>fileName</var>
  11870.      * @param prettyPrint if true output the XML with indenting
  11871.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11872.      */
  11873.     public void write(File file,Scope scope,boolean prettyPrint) throws SerializerException {
  11874.         this.objToXml(file, Scope.class, scope, prettyPrint);
  11875.     }
  11876.    
  11877.     /**
  11878.      * Serialize to output stream <var>out</var> the object <var>scope</var> of type {@link org.openspcoop2.core.config.Scope}
  11879.      *
  11880.      * @param out OutputStream to serialize the object <var>scope</var>
  11881.      * @param scope Object to be serialized in xml file <var>fileName</var>
  11882.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11883.      */
  11884.     public void write(OutputStream out,Scope scope) throws SerializerException {
  11885.         this.objToXml(out, Scope.class, scope, false);
  11886.     }
  11887.     /**
  11888.      * Serialize to output stream <var>out</var> the object <var>scope</var> of type {@link org.openspcoop2.core.config.Scope}
  11889.      *
  11890.      * @param out OutputStream to serialize the object <var>scope</var>
  11891.      * @param scope Object to be serialized in xml file <var>fileName</var>
  11892.      * @param prettyPrint if true output the XML with indenting
  11893.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11894.      */
  11895.     public void write(OutputStream out,Scope scope,boolean prettyPrint) throws SerializerException {
  11896.         this.objToXml(out, Scope.class, scope, prettyPrint);
  11897.     }
  11898.            
  11899.     /**
  11900.      * Serialize to byte array the object <var>scope</var> of type {@link org.openspcoop2.core.config.Scope}
  11901.      *
  11902.      * @param scope Object to be serialized
  11903.      * @return Object to be serialized in byte array
  11904.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11905.      */
  11906.     public byte[] toByteArray(Scope scope) throws SerializerException {
  11907.         return this.objToXml(Scope.class, scope, false).toByteArray();
  11908.     }
  11909.     /**
  11910.      * Serialize to byte array the object <var>scope</var> of type {@link org.openspcoop2.core.config.Scope}
  11911.      *
  11912.      * @param scope Object to be serialized
  11913.      * @param prettyPrint if true output the XML with indenting
  11914.      * @return Object to be serialized in byte array
  11915.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11916.      */
  11917.     public byte[] toByteArray(Scope scope,boolean prettyPrint) throws SerializerException {
  11918.         return this.objToXml(Scope.class, scope, prettyPrint).toByteArray();
  11919.     }
  11920.    
  11921.     /**
  11922.      * Serialize to String the object <var>scope</var> of type {@link org.openspcoop2.core.config.Scope}
  11923.      *
  11924.      * @param scope Object to be serialized
  11925.      * @return Object to be serialized as String
  11926.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11927.      */
  11928.     public String toString(Scope scope) throws SerializerException {
  11929.         return this.objToXml(Scope.class, scope, false).toString();
  11930.     }
  11931.     /**
  11932.      * Serialize to String the object <var>scope</var> of type {@link org.openspcoop2.core.config.Scope}
  11933.      *
  11934.      * @param scope Object to be serialized
  11935.      * @param prettyPrint if true output the XML with indenting
  11936.      * @return Object to be serialized as String
  11937.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11938.      */
  11939.     public String toString(Scope scope,boolean prettyPrint) throws SerializerException {
  11940.         return this.objToXml(Scope.class, scope, prettyPrint).toString();
  11941.     }
  11942.    
  11943.    
  11944.    
  11945.     /*
  11946.      =================================================================================
  11947.      Object: accesso-dati-consegna-applicativi
  11948.      =================================================================================
  11949.     */
  11950.    
  11951.     /**
  11952.      * Serialize to file system in <var>fileName</var> the object <var>accessoDatiConsegnaApplicativi</var> of type {@link org.openspcoop2.core.config.AccessoDatiConsegnaApplicativi}
  11953.      *
  11954.      * @param fileName Xml file to serialize the object <var>accessoDatiConsegnaApplicativi</var>
  11955.      * @param accessoDatiConsegnaApplicativi Object to be serialized in xml file <var>fileName</var>
  11956.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11957.      */
  11958.     public void write(String fileName,AccessoDatiConsegnaApplicativi accessoDatiConsegnaApplicativi) throws SerializerException {
  11959.         this.objToXml(fileName, AccessoDatiConsegnaApplicativi.class, accessoDatiConsegnaApplicativi, false);
  11960.     }
  11961.     /**
  11962.      * Serialize to file system in <var>fileName</var> the object <var>accessoDatiConsegnaApplicativi</var> of type {@link org.openspcoop2.core.config.AccessoDatiConsegnaApplicativi}
  11963.      *
  11964.      * @param fileName Xml file to serialize the object <var>accessoDatiConsegnaApplicativi</var>
  11965.      * @param accessoDatiConsegnaApplicativi Object to be serialized in xml file <var>fileName</var>
  11966.      * @param prettyPrint if true output the XML with indenting
  11967.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11968.      */
  11969.     public void write(String fileName,AccessoDatiConsegnaApplicativi accessoDatiConsegnaApplicativi,boolean prettyPrint) throws SerializerException {
  11970.         this.objToXml(fileName, AccessoDatiConsegnaApplicativi.class, accessoDatiConsegnaApplicativi, prettyPrint);
  11971.     }
  11972.    
  11973.     /**
  11974.      * Serialize to file system in <var>file</var> the object <var>accessoDatiConsegnaApplicativi</var> of type {@link org.openspcoop2.core.config.AccessoDatiConsegnaApplicativi}
  11975.      *
  11976.      * @param file Xml file to serialize the object <var>accessoDatiConsegnaApplicativi</var>
  11977.      * @param accessoDatiConsegnaApplicativi Object to be serialized in xml file <var>fileName</var>
  11978.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11979.      */
  11980.     public void write(File file,AccessoDatiConsegnaApplicativi accessoDatiConsegnaApplicativi) throws SerializerException {
  11981.         this.objToXml(file, AccessoDatiConsegnaApplicativi.class, accessoDatiConsegnaApplicativi, false);
  11982.     }
  11983.     /**
  11984.      * Serialize to file system in <var>file</var> the object <var>accessoDatiConsegnaApplicativi</var> of type {@link org.openspcoop2.core.config.AccessoDatiConsegnaApplicativi}
  11985.      *
  11986.      * @param file Xml file to serialize the object <var>accessoDatiConsegnaApplicativi</var>
  11987.      * @param accessoDatiConsegnaApplicativi Object to be serialized in xml file <var>fileName</var>
  11988.      * @param prettyPrint if true output the XML with indenting
  11989.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  11990.      */
  11991.     public void write(File file,AccessoDatiConsegnaApplicativi accessoDatiConsegnaApplicativi,boolean prettyPrint) throws SerializerException {
  11992.         this.objToXml(file, AccessoDatiConsegnaApplicativi.class, accessoDatiConsegnaApplicativi, prettyPrint);
  11993.     }
  11994.    
  11995.     /**
  11996.      * Serialize to output stream <var>out</var> the object <var>accessoDatiConsegnaApplicativi</var> of type {@link org.openspcoop2.core.config.AccessoDatiConsegnaApplicativi}
  11997.      *
  11998.      * @param out OutputStream to serialize the object <var>accessoDatiConsegnaApplicativi</var>
  11999.      * @param accessoDatiConsegnaApplicativi Object to be serialized in xml file <var>fileName</var>
  12000.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12001.      */
  12002.     public void write(OutputStream out,AccessoDatiConsegnaApplicativi accessoDatiConsegnaApplicativi) throws SerializerException {
  12003.         this.objToXml(out, AccessoDatiConsegnaApplicativi.class, accessoDatiConsegnaApplicativi, false);
  12004.     }
  12005.     /**
  12006.      * Serialize to output stream <var>out</var> the object <var>accessoDatiConsegnaApplicativi</var> of type {@link org.openspcoop2.core.config.AccessoDatiConsegnaApplicativi}
  12007.      *
  12008.      * @param out OutputStream to serialize the object <var>accessoDatiConsegnaApplicativi</var>
  12009.      * @param accessoDatiConsegnaApplicativi Object to be serialized in xml file <var>fileName</var>
  12010.      * @param prettyPrint if true output the XML with indenting
  12011.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12012.      */
  12013.     public void write(OutputStream out,AccessoDatiConsegnaApplicativi accessoDatiConsegnaApplicativi,boolean prettyPrint) throws SerializerException {
  12014.         this.objToXml(out, AccessoDatiConsegnaApplicativi.class, accessoDatiConsegnaApplicativi, prettyPrint);
  12015.     }
  12016.            
  12017.     /**
  12018.      * Serialize to byte array the object <var>accessoDatiConsegnaApplicativi</var> of type {@link org.openspcoop2.core.config.AccessoDatiConsegnaApplicativi}
  12019.      *
  12020.      * @param accessoDatiConsegnaApplicativi Object to be serialized
  12021.      * @return Object to be serialized in byte array
  12022.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12023.      */
  12024.     public byte[] toByteArray(AccessoDatiConsegnaApplicativi accessoDatiConsegnaApplicativi) throws SerializerException {
  12025.         return this.objToXml(AccessoDatiConsegnaApplicativi.class, accessoDatiConsegnaApplicativi, false).toByteArray();
  12026.     }
  12027.     /**
  12028.      * Serialize to byte array the object <var>accessoDatiConsegnaApplicativi</var> of type {@link org.openspcoop2.core.config.AccessoDatiConsegnaApplicativi}
  12029.      *
  12030.      * @param accessoDatiConsegnaApplicativi Object to be serialized
  12031.      * @param prettyPrint if true output the XML with indenting
  12032.      * @return Object to be serialized in byte array
  12033.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12034.      */
  12035.     public byte[] toByteArray(AccessoDatiConsegnaApplicativi accessoDatiConsegnaApplicativi,boolean prettyPrint) throws SerializerException {
  12036.         return this.objToXml(AccessoDatiConsegnaApplicativi.class, accessoDatiConsegnaApplicativi, prettyPrint).toByteArray();
  12037.     }
  12038.    
  12039.     /**
  12040.      * Serialize to String the object <var>accessoDatiConsegnaApplicativi</var> of type {@link org.openspcoop2.core.config.AccessoDatiConsegnaApplicativi}
  12041.      *
  12042.      * @param accessoDatiConsegnaApplicativi Object to be serialized
  12043.      * @return Object to be serialized as String
  12044.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12045.      */
  12046.     public String toString(AccessoDatiConsegnaApplicativi accessoDatiConsegnaApplicativi) throws SerializerException {
  12047.         return this.objToXml(AccessoDatiConsegnaApplicativi.class, accessoDatiConsegnaApplicativi, false).toString();
  12048.     }
  12049.     /**
  12050.      * Serialize to String the object <var>accessoDatiConsegnaApplicativi</var> of type {@link org.openspcoop2.core.config.AccessoDatiConsegnaApplicativi}
  12051.      *
  12052.      * @param accessoDatiConsegnaApplicativi Object to be serialized
  12053.      * @param prettyPrint if true output the XML with indenting
  12054.      * @return Object to be serialized as String
  12055.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12056.      */
  12057.     public String toString(AccessoDatiConsegnaApplicativi accessoDatiConsegnaApplicativi,boolean prettyPrint) throws SerializerException {
  12058.         return this.objToXml(AccessoDatiConsegnaApplicativi.class, accessoDatiConsegnaApplicativi, prettyPrint).toString();
  12059.     }
  12060.    
  12061.    
  12062.    
  12063.     /*
  12064.      =================================================================================
  12065.      Object: tipo-filtro-abilitazione-servizi
  12066.      =================================================================================
  12067.     */
  12068.    
  12069.     /**
  12070.      * Serialize to file system in <var>fileName</var> the object <var>tipoFiltroAbilitazioneServizi</var> of type {@link org.openspcoop2.core.config.TipoFiltroAbilitazioneServizi}
  12071.      *
  12072.      * @param fileName Xml file to serialize the object <var>tipoFiltroAbilitazioneServizi</var>
  12073.      * @param tipoFiltroAbilitazioneServizi Object to be serialized in xml file <var>fileName</var>
  12074.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12075.      */
  12076.     public void write(String fileName,TipoFiltroAbilitazioneServizi tipoFiltroAbilitazioneServizi) throws SerializerException {
  12077.         this.objToXml(fileName, TipoFiltroAbilitazioneServizi.class, tipoFiltroAbilitazioneServizi, false);
  12078.     }
  12079.     /**
  12080.      * Serialize to file system in <var>fileName</var> the object <var>tipoFiltroAbilitazioneServizi</var> of type {@link org.openspcoop2.core.config.TipoFiltroAbilitazioneServizi}
  12081.      *
  12082.      * @param fileName Xml file to serialize the object <var>tipoFiltroAbilitazioneServizi</var>
  12083.      * @param tipoFiltroAbilitazioneServizi Object to be serialized in xml file <var>fileName</var>
  12084.      * @param prettyPrint if true output the XML with indenting
  12085.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12086.      */
  12087.     public void write(String fileName,TipoFiltroAbilitazioneServizi tipoFiltroAbilitazioneServizi,boolean prettyPrint) throws SerializerException {
  12088.         this.objToXml(fileName, TipoFiltroAbilitazioneServizi.class, tipoFiltroAbilitazioneServizi, prettyPrint);
  12089.     }
  12090.    
  12091.     /**
  12092.      * Serialize to file system in <var>file</var> the object <var>tipoFiltroAbilitazioneServizi</var> of type {@link org.openspcoop2.core.config.TipoFiltroAbilitazioneServizi}
  12093.      *
  12094.      * @param file Xml file to serialize the object <var>tipoFiltroAbilitazioneServizi</var>
  12095.      * @param tipoFiltroAbilitazioneServizi Object to be serialized in xml file <var>fileName</var>
  12096.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12097.      */
  12098.     public void write(File file,TipoFiltroAbilitazioneServizi tipoFiltroAbilitazioneServizi) throws SerializerException {
  12099.         this.objToXml(file, TipoFiltroAbilitazioneServizi.class, tipoFiltroAbilitazioneServizi, false);
  12100.     }
  12101.     /**
  12102.      * Serialize to file system in <var>file</var> the object <var>tipoFiltroAbilitazioneServizi</var> of type {@link org.openspcoop2.core.config.TipoFiltroAbilitazioneServizi}
  12103.      *
  12104.      * @param file Xml file to serialize the object <var>tipoFiltroAbilitazioneServizi</var>
  12105.      * @param tipoFiltroAbilitazioneServizi Object to be serialized in xml file <var>fileName</var>
  12106.      * @param prettyPrint if true output the XML with indenting
  12107.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12108.      */
  12109.     public void write(File file,TipoFiltroAbilitazioneServizi tipoFiltroAbilitazioneServizi,boolean prettyPrint) throws SerializerException {
  12110.         this.objToXml(file, TipoFiltroAbilitazioneServizi.class, tipoFiltroAbilitazioneServizi, prettyPrint);
  12111.     }
  12112.    
  12113.     /**
  12114.      * Serialize to output stream <var>out</var> the object <var>tipoFiltroAbilitazioneServizi</var> of type {@link org.openspcoop2.core.config.TipoFiltroAbilitazioneServizi}
  12115.      *
  12116.      * @param out OutputStream to serialize the object <var>tipoFiltroAbilitazioneServizi</var>
  12117.      * @param tipoFiltroAbilitazioneServizi Object to be serialized in xml file <var>fileName</var>
  12118.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12119.      */
  12120.     public void write(OutputStream out,TipoFiltroAbilitazioneServizi tipoFiltroAbilitazioneServizi) throws SerializerException {
  12121.         this.objToXml(out, TipoFiltroAbilitazioneServizi.class, tipoFiltroAbilitazioneServizi, false);
  12122.     }
  12123.     /**
  12124.      * Serialize to output stream <var>out</var> the object <var>tipoFiltroAbilitazioneServizi</var> of type {@link org.openspcoop2.core.config.TipoFiltroAbilitazioneServizi}
  12125.      *
  12126.      * @param out OutputStream to serialize the object <var>tipoFiltroAbilitazioneServizi</var>
  12127.      * @param tipoFiltroAbilitazioneServizi Object to be serialized in xml file <var>fileName</var>
  12128.      * @param prettyPrint if true output the XML with indenting
  12129.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12130.      */
  12131.     public void write(OutputStream out,TipoFiltroAbilitazioneServizi tipoFiltroAbilitazioneServizi,boolean prettyPrint) throws SerializerException {
  12132.         this.objToXml(out, TipoFiltroAbilitazioneServizi.class, tipoFiltroAbilitazioneServizi, prettyPrint);
  12133.     }
  12134.            
  12135.     /**
  12136.      * Serialize to byte array the object <var>tipoFiltroAbilitazioneServizi</var> of type {@link org.openspcoop2.core.config.TipoFiltroAbilitazioneServizi}
  12137.      *
  12138.      * @param tipoFiltroAbilitazioneServizi Object to be serialized
  12139.      * @return Object to be serialized in byte array
  12140.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12141.      */
  12142.     public byte[] toByteArray(TipoFiltroAbilitazioneServizi tipoFiltroAbilitazioneServizi) throws SerializerException {
  12143.         return this.objToXml(TipoFiltroAbilitazioneServizi.class, tipoFiltroAbilitazioneServizi, false).toByteArray();
  12144.     }
  12145.     /**
  12146.      * Serialize to byte array the object <var>tipoFiltroAbilitazioneServizi</var> of type {@link org.openspcoop2.core.config.TipoFiltroAbilitazioneServizi}
  12147.      *
  12148.      * @param tipoFiltroAbilitazioneServizi Object to be serialized
  12149.      * @param prettyPrint if true output the XML with indenting
  12150.      * @return Object to be serialized in byte array
  12151.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12152.      */
  12153.     public byte[] toByteArray(TipoFiltroAbilitazioneServizi tipoFiltroAbilitazioneServizi,boolean prettyPrint) throws SerializerException {
  12154.         return this.objToXml(TipoFiltroAbilitazioneServizi.class, tipoFiltroAbilitazioneServizi, prettyPrint).toByteArray();
  12155.     }
  12156.    
  12157.     /**
  12158.      * Serialize to String the object <var>tipoFiltroAbilitazioneServizi</var> of type {@link org.openspcoop2.core.config.TipoFiltroAbilitazioneServizi}
  12159.      *
  12160.      * @param tipoFiltroAbilitazioneServizi Object to be serialized
  12161.      * @return Object to be serialized as String
  12162.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12163.      */
  12164.     public String toString(TipoFiltroAbilitazioneServizi tipoFiltroAbilitazioneServizi) throws SerializerException {
  12165.         return this.objToXml(TipoFiltroAbilitazioneServizi.class, tipoFiltroAbilitazioneServizi, false).toString();
  12166.     }
  12167.     /**
  12168.      * Serialize to String the object <var>tipoFiltroAbilitazioneServizi</var> of type {@link org.openspcoop2.core.config.TipoFiltroAbilitazioneServizi}
  12169.      *
  12170.      * @param tipoFiltroAbilitazioneServizi Object to be serialized
  12171.      * @param prettyPrint if true output the XML with indenting
  12172.      * @return Object to be serialized as String
  12173.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12174.      */
  12175.     public String toString(TipoFiltroAbilitazioneServizi tipoFiltroAbilitazioneServizi,boolean prettyPrint) throws SerializerException {
  12176.         return this.objToXml(TipoFiltroAbilitazioneServizi.class, tipoFiltroAbilitazioneServizi, prettyPrint).toString();
  12177.     }
  12178.    
  12179.    
  12180.    
  12181.     /*
  12182.      =================================================================================
  12183.      Object: stato-servizi-pdd-porta-applicativa
  12184.      =================================================================================
  12185.     */
  12186.    
  12187.     /**
  12188.      * Serialize to file system in <var>fileName</var> the object <var>statoServiziPddPortaApplicativa</var> of type {@link org.openspcoop2.core.config.StatoServiziPddPortaApplicativa}
  12189.      *
  12190.      * @param fileName Xml file to serialize the object <var>statoServiziPddPortaApplicativa</var>
  12191.      * @param statoServiziPddPortaApplicativa Object to be serialized in xml file <var>fileName</var>
  12192.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12193.      */
  12194.     public void write(String fileName,StatoServiziPddPortaApplicativa statoServiziPddPortaApplicativa) throws SerializerException {
  12195.         this.objToXml(fileName, StatoServiziPddPortaApplicativa.class, statoServiziPddPortaApplicativa, false);
  12196.     }
  12197.     /**
  12198.      * Serialize to file system in <var>fileName</var> the object <var>statoServiziPddPortaApplicativa</var> of type {@link org.openspcoop2.core.config.StatoServiziPddPortaApplicativa}
  12199.      *
  12200.      * @param fileName Xml file to serialize the object <var>statoServiziPddPortaApplicativa</var>
  12201.      * @param statoServiziPddPortaApplicativa Object to be serialized in xml file <var>fileName</var>
  12202.      * @param prettyPrint if true output the XML with indenting
  12203.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12204.      */
  12205.     public void write(String fileName,StatoServiziPddPortaApplicativa statoServiziPddPortaApplicativa,boolean prettyPrint) throws SerializerException {
  12206.         this.objToXml(fileName, StatoServiziPddPortaApplicativa.class, statoServiziPddPortaApplicativa, prettyPrint);
  12207.     }
  12208.    
  12209.     /**
  12210.      * Serialize to file system in <var>file</var> the object <var>statoServiziPddPortaApplicativa</var> of type {@link org.openspcoop2.core.config.StatoServiziPddPortaApplicativa}
  12211.      *
  12212.      * @param file Xml file to serialize the object <var>statoServiziPddPortaApplicativa</var>
  12213.      * @param statoServiziPddPortaApplicativa Object to be serialized in xml file <var>fileName</var>
  12214.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12215.      */
  12216.     public void write(File file,StatoServiziPddPortaApplicativa statoServiziPddPortaApplicativa) throws SerializerException {
  12217.         this.objToXml(file, StatoServiziPddPortaApplicativa.class, statoServiziPddPortaApplicativa, false);
  12218.     }
  12219.     /**
  12220.      * Serialize to file system in <var>file</var> the object <var>statoServiziPddPortaApplicativa</var> of type {@link org.openspcoop2.core.config.StatoServiziPddPortaApplicativa}
  12221.      *
  12222.      * @param file Xml file to serialize the object <var>statoServiziPddPortaApplicativa</var>
  12223.      * @param statoServiziPddPortaApplicativa Object to be serialized in xml file <var>fileName</var>
  12224.      * @param prettyPrint if true output the XML with indenting
  12225.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12226.      */
  12227.     public void write(File file,StatoServiziPddPortaApplicativa statoServiziPddPortaApplicativa,boolean prettyPrint) throws SerializerException {
  12228.         this.objToXml(file, StatoServiziPddPortaApplicativa.class, statoServiziPddPortaApplicativa, prettyPrint);
  12229.     }
  12230.    
  12231.     /**
  12232.      * Serialize to output stream <var>out</var> the object <var>statoServiziPddPortaApplicativa</var> of type {@link org.openspcoop2.core.config.StatoServiziPddPortaApplicativa}
  12233.      *
  12234.      * @param out OutputStream to serialize the object <var>statoServiziPddPortaApplicativa</var>
  12235.      * @param statoServiziPddPortaApplicativa Object to be serialized in xml file <var>fileName</var>
  12236.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12237.      */
  12238.     public void write(OutputStream out,StatoServiziPddPortaApplicativa statoServiziPddPortaApplicativa) throws SerializerException {
  12239.         this.objToXml(out, StatoServiziPddPortaApplicativa.class, statoServiziPddPortaApplicativa, false);
  12240.     }
  12241.     /**
  12242.      * Serialize to output stream <var>out</var> the object <var>statoServiziPddPortaApplicativa</var> of type {@link org.openspcoop2.core.config.StatoServiziPddPortaApplicativa}
  12243.      *
  12244.      * @param out OutputStream to serialize the object <var>statoServiziPddPortaApplicativa</var>
  12245.      * @param statoServiziPddPortaApplicativa Object to be serialized in xml file <var>fileName</var>
  12246.      * @param prettyPrint if true output the XML with indenting
  12247.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12248.      */
  12249.     public void write(OutputStream out,StatoServiziPddPortaApplicativa statoServiziPddPortaApplicativa,boolean prettyPrint) throws SerializerException {
  12250.         this.objToXml(out, StatoServiziPddPortaApplicativa.class, statoServiziPddPortaApplicativa, prettyPrint);
  12251.     }
  12252.            
  12253.     /**
  12254.      * Serialize to byte array the object <var>statoServiziPddPortaApplicativa</var> of type {@link org.openspcoop2.core.config.StatoServiziPddPortaApplicativa}
  12255.      *
  12256.      * @param statoServiziPddPortaApplicativa Object to be serialized
  12257.      * @return Object to be serialized in byte array
  12258.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12259.      */
  12260.     public byte[] toByteArray(StatoServiziPddPortaApplicativa statoServiziPddPortaApplicativa) throws SerializerException {
  12261.         return this.objToXml(StatoServiziPddPortaApplicativa.class, statoServiziPddPortaApplicativa, false).toByteArray();
  12262.     }
  12263.     /**
  12264.      * Serialize to byte array the object <var>statoServiziPddPortaApplicativa</var> of type {@link org.openspcoop2.core.config.StatoServiziPddPortaApplicativa}
  12265.      *
  12266.      * @param statoServiziPddPortaApplicativa Object to be serialized
  12267.      * @param prettyPrint if true output the XML with indenting
  12268.      * @return Object to be serialized in byte array
  12269.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12270.      */
  12271.     public byte[] toByteArray(StatoServiziPddPortaApplicativa statoServiziPddPortaApplicativa,boolean prettyPrint) throws SerializerException {
  12272.         return this.objToXml(StatoServiziPddPortaApplicativa.class, statoServiziPddPortaApplicativa, prettyPrint).toByteArray();
  12273.     }
  12274.    
  12275.     /**
  12276.      * Serialize to String the object <var>statoServiziPddPortaApplicativa</var> of type {@link org.openspcoop2.core.config.StatoServiziPddPortaApplicativa}
  12277.      *
  12278.      * @param statoServiziPddPortaApplicativa Object to be serialized
  12279.      * @return Object to be serialized as String
  12280.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12281.      */
  12282.     public String toString(StatoServiziPddPortaApplicativa statoServiziPddPortaApplicativa) throws SerializerException {
  12283.         return this.objToXml(StatoServiziPddPortaApplicativa.class, statoServiziPddPortaApplicativa, false).toString();
  12284.     }
  12285.     /**
  12286.      * Serialize to String the object <var>statoServiziPddPortaApplicativa</var> of type {@link org.openspcoop2.core.config.StatoServiziPddPortaApplicativa}
  12287.      *
  12288.      * @param statoServiziPddPortaApplicativa Object to be serialized
  12289.      * @param prettyPrint if true output the XML with indenting
  12290.      * @return Object to be serialized as String
  12291.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12292.      */
  12293.     public String toString(StatoServiziPddPortaApplicativa statoServiziPddPortaApplicativa,boolean prettyPrint) throws SerializerException {
  12294.         return this.objToXml(StatoServiziPddPortaApplicativa.class, statoServiziPddPortaApplicativa, prettyPrint).toString();
  12295.     }
  12296.    
  12297.    
  12298.    
  12299.     /*
  12300.      =================================================================================
  12301.      Object: messaggi-diagnostici
  12302.      =================================================================================
  12303.     */
  12304.    
  12305.     /**
  12306.      * Serialize to file system in <var>fileName</var> the object <var>messaggiDiagnostici</var> of type {@link org.openspcoop2.core.config.MessaggiDiagnostici}
  12307.      *
  12308.      * @param fileName Xml file to serialize the object <var>messaggiDiagnostici</var>
  12309.      * @param messaggiDiagnostici Object to be serialized in xml file <var>fileName</var>
  12310.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12311.      */
  12312.     public void write(String fileName,MessaggiDiagnostici messaggiDiagnostici) throws SerializerException {
  12313.         this.objToXml(fileName, MessaggiDiagnostici.class, messaggiDiagnostici, false);
  12314.     }
  12315.     /**
  12316.      * Serialize to file system in <var>fileName</var> the object <var>messaggiDiagnostici</var> of type {@link org.openspcoop2.core.config.MessaggiDiagnostici}
  12317.      *
  12318.      * @param fileName Xml file to serialize the object <var>messaggiDiagnostici</var>
  12319.      * @param messaggiDiagnostici Object to be serialized in xml file <var>fileName</var>
  12320.      * @param prettyPrint if true output the XML with indenting
  12321.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12322.      */
  12323.     public void write(String fileName,MessaggiDiagnostici messaggiDiagnostici,boolean prettyPrint) throws SerializerException {
  12324.         this.objToXml(fileName, MessaggiDiagnostici.class, messaggiDiagnostici, prettyPrint);
  12325.     }
  12326.    
  12327.     /**
  12328.      * Serialize to file system in <var>file</var> the object <var>messaggiDiagnostici</var> of type {@link org.openspcoop2.core.config.MessaggiDiagnostici}
  12329.      *
  12330.      * @param file Xml file to serialize the object <var>messaggiDiagnostici</var>
  12331.      * @param messaggiDiagnostici Object to be serialized in xml file <var>fileName</var>
  12332.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12333.      */
  12334.     public void write(File file,MessaggiDiagnostici messaggiDiagnostici) throws SerializerException {
  12335.         this.objToXml(file, MessaggiDiagnostici.class, messaggiDiagnostici, false);
  12336.     }
  12337.     /**
  12338.      * Serialize to file system in <var>file</var> the object <var>messaggiDiagnostici</var> of type {@link org.openspcoop2.core.config.MessaggiDiagnostici}
  12339.      *
  12340.      * @param file Xml file to serialize the object <var>messaggiDiagnostici</var>
  12341.      * @param messaggiDiagnostici Object to be serialized in xml file <var>fileName</var>
  12342.      * @param prettyPrint if true output the XML with indenting
  12343.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12344.      */
  12345.     public void write(File file,MessaggiDiagnostici messaggiDiagnostici,boolean prettyPrint) throws SerializerException {
  12346.         this.objToXml(file, MessaggiDiagnostici.class, messaggiDiagnostici, prettyPrint);
  12347.     }
  12348.    
  12349.     /**
  12350.      * Serialize to output stream <var>out</var> the object <var>messaggiDiagnostici</var> of type {@link org.openspcoop2.core.config.MessaggiDiagnostici}
  12351.      *
  12352.      * @param out OutputStream to serialize the object <var>messaggiDiagnostici</var>
  12353.      * @param messaggiDiagnostici Object to be serialized in xml file <var>fileName</var>
  12354.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12355.      */
  12356.     public void write(OutputStream out,MessaggiDiagnostici messaggiDiagnostici) throws SerializerException {
  12357.         this.objToXml(out, MessaggiDiagnostici.class, messaggiDiagnostici, false);
  12358.     }
  12359.     /**
  12360.      * Serialize to output stream <var>out</var> the object <var>messaggiDiagnostici</var> of type {@link org.openspcoop2.core.config.MessaggiDiagnostici}
  12361.      *
  12362.      * @param out OutputStream to serialize the object <var>messaggiDiagnostici</var>
  12363.      * @param messaggiDiagnostici Object to be serialized in xml file <var>fileName</var>
  12364.      * @param prettyPrint if true output the XML with indenting
  12365.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12366.      */
  12367.     public void write(OutputStream out,MessaggiDiagnostici messaggiDiagnostici,boolean prettyPrint) throws SerializerException {
  12368.         this.objToXml(out, MessaggiDiagnostici.class, messaggiDiagnostici, prettyPrint);
  12369.     }
  12370.            
  12371.     /**
  12372.      * Serialize to byte array the object <var>messaggiDiagnostici</var> of type {@link org.openspcoop2.core.config.MessaggiDiagnostici}
  12373.      *
  12374.      * @param messaggiDiagnostici Object to be serialized
  12375.      * @return Object to be serialized in byte array
  12376.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12377.      */
  12378.     public byte[] toByteArray(MessaggiDiagnostici messaggiDiagnostici) throws SerializerException {
  12379.         return this.objToXml(MessaggiDiagnostici.class, messaggiDiagnostici, false).toByteArray();
  12380.     }
  12381.     /**
  12382.      * Serialize to byte array the object <var>messaggiDiagnostici</var> of type {@link org.openspcoop2.core.config.MessaggiDiagnostici}
  12383.      *
  12384.      * @param messaggiDiagnostici Object to be serialized
  12385.      * @param prettyPrint if true output the XML with indenting
  12386.      * @return Object to be serialized in byte array
  12387.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12388.      */
  12389.     public byte[] toByteArray(MessaggiDiagnostici messaggiDiagnostici,boolean prettyPrint) throws SerializerException {
  12390.         return this.objToXml(MessaggiDiagnostici.class, messaggiDiagnostici, prettyPrint).toByteArray();
  12391.     }
  12392.    
  12393.     /**
  12394.      * Serialize to String the object <var>messaggiDiagnostici</var> of type {@link org.openspcoop2.core.config.MessaggiDiagnostici}
  12395.      *
  12396.      * @param messaggiDiagnostici Object to be serialized
  12397.      * @return Object to be serialized as String
  12398.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12399.      */
  12400.     public String toString(MessaggiDiagnostici messaggiDiagnostici) throws SerializerException {
  12401.         return this.objToXml(MessaggiDiagnostici.class, messaggiDiagnostici, false).toString();
  12402.     }
  12403.     /**
  12404.      * Serialize to String the object <var>messaggiDiagnostici</var> of type {@link org.openspcoop2.core.config.MessaggiDiagnostici}
  12405.      *
  12406.      * @param messaggiDiagnostici Object to be serialized
  12407.      * @param prettyPrint if true output the XML with indenting
  12408.      * @return Object to be serialized as String
  12409.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12410.      */
  12411.     public String toString(MessaggiDiagnostici messaggiDiagnostici,boolean prettyPrint) throws SerializerException {
  12412.         return this.objToXml(MessaggiDiagnostici.class, messaggiDiagnostici, prettyPrint).toString();
  12413.     }
  12414.    
  12415.    
  12416.    
  12417.     /*
  12418.      =================================================================================
  12419.      Object: openspcoop-sorgente-dati
  12420.      =================================================================================
  12421.     */
  12422.    
  12423.     /**
  12424.      * Serialize to file system in <var>fileName</var> the object <var>openspcoopSorgenteDati</var> of type {@link org.openspcoop2.core.config.OpenspcoopSorgenteDati}
  12425.      *
  12426.      * @param fileName Xml file to serialize the object <var>openspcoopSorgenteDati</var>
  12427.      * @param openspcoopSorgenteDati Object to be serialized in xml file <var>fileName</var>
  12428.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12429.      */
  12430.     public void write(String fileName,OpenspcoopSorgenteDati openspcoopSorgenteDati) throws SerializerException {
  12431.         this.objToXml(fileName, OpenspcoopSorgenteDati.class, openspcoopSorgenteDati, false);
  12432.     }
  12433.     /**
  12434.      * Serialize to file system in <var>fileName</var> the object <var>openspcoopSorgenteDati</var> of type {@link org.openspcoop2.core.config.OpenspcoopSorgenteDati}
  12435.      *
  12436.      * @param fileName Xml file to serialize the object <var>openspcoopSorgenteDati</var>
  12437.      * @param openspcoopSorgenteDati Object to be serialized in xml file <var>fileName</var>
  12438.      * @param prettyPrint if true output the XML with indenting
  12439.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12440.      */
  12441.     public void write(String fileName,OpenspcoopSorgenteDati openspcoopSorgenteDati,boolean prettyPrint) throws SerializerException {
  12442.         this.objToXml(fileName, OpenspcoopSorgenteDati.class, openspcoopSorgenteDati, prettyPrint);
  12443.     }
  12444.    
  12445.     /**
  12446.      * Serialize to file system in <var>file</var> the object <var>openspcoopSorgenteDati</var> of type {@link org.openspcoop2.core.config.OpenspcoopSorgenteDati}
  12447.      *
  12448.      * @param file Xml file to serialize the object <var>openspcoopSorgenteDati</var>
  12449.      * @param openspcoopSorgenteDati Object to be serialized in xml file <var>fileName</var>
  12450.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12451.      */
  12452.     public void write(File file,OpenspcoopSorgenteDati openspcoopSorgenteDati) throws SerializerException {
  12453.         this.objToXml(file, OpenspcoopSorgenteDati.class, openspcoopSorgenteDati, false);
  12454.     }
  12455.     /**
  12456.      * Serialize to file system in <var>file</var> the object <var>openspcoopSorgenteDati</var> of type {@link org.openspcoop2.core.config.OpenspcoopSorgenteDati}
  12457.      *
  12458.      * @param file Xml file to serialize the object <var>openspcoopSorgenteDati</var>
  12459.      * @param openspcoopSorgenteDati Object to be serialized in xml file <var>fileName</var>
  12460.      * @param prettyPrint if true output the XML with indenting
  12461.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12462.      */
  12463.     public void write(File file,OpenspcoopSorgenteDati openspcoopSorgenteDati,boolean prettyPrint) throws SerializerException {
  12464.         this.objToXml(file, OpenspcoopSorgenteDati.class, openspcoopSorgenteDati, prettyPrint);
  12465.     }
  12466.    
  12467.     /**
  12468.      * Serialize to output stream <var>out</var> the object <var>openspcoopSorgenteDati</var> of type {@link org.openspcoop2.core.config.OpenspcoopSorgenteDati}
  12469.      *
  12470.      * @param out OutputStream to serialize the object <var>openspcoopSorgenteDati</var>
  12471.      * @param openspcoopSorgenteDati Object to be serialized in xml file <var>fileName</var>
  12472.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12473.      */
  12474.     public void write(OutputStream out,OpenspcoopSorgenteDati openspcoopSorgenteDati) throws SerializerException {
  12475.         this.objToXml(out, OpenspcoopSorgenteDati.class, openspcoopSorgenteDati, false);
  12476.     }
  12477.     /**
  12478.      * Serialize to output stream <var>out</var> the object <var>openspcoopSorgenteDati</var> of type {@link org.openspcoop2.core.config.OpenspcoopSorgenteDati}
  12479.      *
  12480.      * @param out OutputStream to serialize the object <var>openspcoopSorgenteDati</var>
  12481.      * @param openspcoopSorgenteDati Object to be serialized in xml file <var>fileName</var>
  12482.      * @param prettyPrint if true output the XML with indenting
  12483.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12484.      */
  12485.     public void write(OutputStream out,OpenspcoopSorgenteDati openspcoopSorgenteDati,boolean prettyPrint) throws SerializerException {
  12486.         this.objToXml(out, OpenspcoopSorgenteDati.class, openspcoopSorgenteDati, prettyPrint);
  12487.     }
  12488.            
  12489.     /**
  12490.      * Serialize to byte array the object <var>openspcoopSorgenteDati</var> of type {@link org.openspcoop2.core.config.OpenspcoopSorgenteDati}
  12491.      *
  12492.      * @param openspcoopSorgenteDati Object to be serialized
  12493.      * @return Object to be serialized in byte array
  12494.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12495.      */
  12496.     public byte[] toByteArray(OpenspcoopSorgenteDati openspcoopSorgenteDati) throws SerializerException {
  12497.         return this.objToXml(OpenspcoopSorgenteDati.class, openspcoopSorgenteDati, false).toByteArray();
  12498.     }
  12499.     /**
  12500.      * Serialize to byte array the object <var>openspcoopSorgenteDati</var> of type {@link org.openspcoop2.core.config.OpenspcoopSorgenteDati}
  12501.      *
  12502.      * @param openspcoopSorgenteDati Object to be serialized
  12503.      * @param prettyPrint if true output the XML with indenting
  12504.      * @return Object to be serialized in byte array
  12505.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12506.      */
  12507.     public byte[] toByteArray(OpenspcoopSorgenteDati openspcoopSorgenteDati,boolean prettyPrint) throws SerializerException {
  12508.         return this.objToXml(OpenspcoopSorgenteDati.class, openspcoopSorgenteDati, prettyPrint).toByteArray();
  12509.     }
  12510.    
  12511.     /**
  12512.      * Serialize to String the object <var>openspcoopSorgenteDati</var> of type {@link org.openspcoop2.core.config.OpenspcoopSorgenteDati}
  12513.      *
  12514.      * @param openspcoopSorgenteDati Object to be serialized
  12515.      * @return Object to be serialized as String
  12516.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12517.      */
  12518.     public String toString(OpenspcoopSorgenteDati openspcoopSorgenteDati) throws SerializerException {
  12519.         return this.objToXml(OpenspcoopSorgenteDati.class, openspcoopSorgenteDati, false).toString();
  12520.     }
  12521.     /**
  12522.      * Serialize to String the object <var>openspcoopSorgenteDati</var> of type {@link org.openspcoop2.core.config.OpenspcoopSorgenteDati}
  12523.      *
  12524.      * @param openspcoopSorgenteDati Object to be serialized
  12525.      * @param prettyPrint if true output the XML with indenting
  12526.      * @return Object to be serialized as String
  12527.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12528.      */
  12529.     public String toString(OpenspcoopSorgenteDati openspcoopSorgenteDati,boolean prettyPrint) throws SerializerException {
  12530.         return this.objToXml(OpenspcoopSorgenteDati.class, openspcoopSorgenteDati, prettyPrint).toString();
  12531.     }
  12532.    
  12533.    
  12534.    
  12535.     /*
  12536.      =================================================================================
  12537.      Object: configurazione-generale-handler
  12538.      =================================================================================
  12539.     */
  12540.    
  12541.     /**
  12542.      * Serialize to file system in <var>fileName</var> the object <var>configurazioneGeneraleHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazioneGeneraleHandler}
  12543.      *
  12544.      * @param fileName Xml file to serialize the object <var>configurazioneGeneraleHandler</var>
  12545.      * @param configurazioneGeneraleHandler Object to be serialized in xml file <var>fileName</var>
  12546.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12547.      */
  12548.     public void write(String fileName,ConfigurazioneGeneraleHandler configurazioneGeneraleHandler) throws SerializerException {
  12549.         this.objToXml(fileName, ConfigurazioneGeneraleHandler.class, configurazioneGeneraleHandler, false);
  12550.     }
  12551.     /**
  12552.      * Serialize to file system in <var>fileName</var> the object <var>configurazioneGeneraleHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazioneGeneraleHandler}
  12553.      *
  12554.      * @param fileName Xml file to serialize the object <var>configurazioneGeneraleHandler</var>
  12555.      * @param configurazioneGeneraleHandler Object to be serialized in xml file <var>fileName</var>
  12556.      * @param prettyPrint if true output the XML with indenting
  12557.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12558.      */
  12559.     public void write(String fileName,ConfigurazioneGeneraleHandler configurazioneGeneraleHandler,boolean prettyPrint) throws SerializerException {
  12560.         this.objToXml(fileName, ConfigurazioneGeneraleHandler.class, configurazioneGeneraleHandler, prettyPrint);
  12561.     }
  12562.    
  12563.     /**
  12564.      * Serialize to file system in <var>file</var> the object <var>configurazioneGeneraleHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazioneGeneraleHandler}
  12565.      *
  12566.      * @param file Xml file to serialize the object <var>configurazioneGeneraleHandler</var>
  12567.      * @param configurazioneGeneraleHandler Object to be serialized in xml file <var>fileName</var>
  12568.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12569.      */
  12570.     public void write(File file,ConfigurazioneGeneraleHandler configurazioneGeneraleHandler) throws SerializerException {
  12571.         this.objToXml(file, ConfigurazioneGeneraleHandler.class, configurazioneGeneraleHandler, false);
  12572.     }
  12573.     /**
  12574.      * Serialize to file system in <var>file</var> the object <var>configurazioneGeneraleHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazioneGeneraleHandler}
  12575.      *
  12576.      * @param file Xml file to serialize the object <var>configurazioneGeneraleHandler</var>
  12577.      * @param configurazioneGeneraleHandler Object to be serialized in xml file <var>fileName</var>
  12578.      * @param prettyPrint if true output the XML with indenting
  12579.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12580.      */
  12581.     public void write(File file,ConfigurazioneGeneraleHandler configurazioneGeneraleHandler,boolean prettyPrint) throws SerializerException {
  12582.         this.objToXml(file, ConfigurazioneGeneraleHandler.class, configurazioneGeneraleHandler, prettyPrint);
  12583.     }
  12584.    
  12585.     /**
  12586.      * Serialize to output stream <var>out</var> the object <var>configurazioneGeneraleHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazioneGeneraleHandler}
  12587.      *
  12588.      * @param out OutputStream to serialize the object <var>configurazioneGeneraleHandler</var>
  12589.      * @param configurazioneGeneraleHandler Object to be serialized in xml file <var>fileName</var>
  12590.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12591.      */
  12592.     public void write(OutputStream out,ConfigurazioneGeneraleHandler configurazioneGeneraleHandler) throws SerializerException {
  12593.         this.objToXml(out, ConfigurazioneGeneraleHandler.class, configurazioneGeneraleHandler, false);
  12594.     }
  12595.     /**
  12596.      * Serialize to output stream <var>out</var> the object <var>configurazioneGeneraleHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazioneGeneraleHandler}
  12597.      *
  12598.      * @param out OutputStream to serialize the object <var>configurazioneGeneraleHandler</var>
  12599.      * @param configurazioneGeneraleHandler Object to be serialized in xml file <var>fileName</var>
  12600.      * @param prettyPrint if true output the XML with indenting
  12601.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12602.      */
  12603.     public void write(OutputStream out,ConfigurazioneGeneraleHandler configurazioneGeneraleHandler,boolean prettyPrint) throws SerializerException {
  12604.         this.objToXml(out, ConfigurazioneGeneraleHandler.class, configurazioneGeneraleHandler, prettyPrint);
  12605.     }
  12606.            
  12607.     /**
  12608.      * Serialize to byte array the object <var>configurazioneGeneraleHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazioneGeneraleHandler}
  12609.      *
  12610.      * @param configurazioneGeneraleHandler Object to be serialized
  12611.      * @return Object to be serialized in byte array
  12612.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12613.      */
  12614.     public byte[] toByteArray(ConfigurazioneGeneraleHandler configurazioneGeneraleHandler) throws SerializerException {
  12615.         return this.objToXml(ConfigurazioneGeneraleHandler.class, configurazioneGeneraleHandler, false).toByteArray();
  12616.     }
  12617.     /**
  12618.      * Serialize to byte array the object <var>configurazioneGeneraleHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazioneGeneraleHandler}
  12619.      *
  12620.      * @param configurazioneGeneraleHandler Object to be serialized
  12621.      * @param prettyPrint if true output the XML with indenting
  12622.      * @return Object to be serialized in byte array
  12623.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12624.      */
  12625.     public byte[] toByteArray(ConfigurazioneGeneraleHandler configurazioneGeneraleHandler,boolean prettyPrint) throws SerializerException {
  12626.         return this.objToXml(ConfigurazioneGeneraleHandler.class, configurazioneGeneraleHandler, prettyPrint).toByteArray();
  12627.     }
  12628.    
  12629.     /**
  12630.      * Serialize to String the object <var>configurazioneGeneraleHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazioneGeneraleHandler}
  12631.      *
  12632.      * @param configurazioneGeneraleHandler Object to be serialized
  12633.      * @return Object to be serialized as String
  12634.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12635.      */
  12636.     public String toString(ConfigurazioneGeneraleHandler configurazioneGeneraleHandler) throws SerializerException {
  12637.         return this.objToXml(ConfigurazioneGeneraleHandler.class, configurazioneGeneraleHandler, false).toString();
  12638.     }
  12639.     /**
  12640.      * Serialize to String the object <var>configurazioneGeneraleHandler</var> of type {@link org.openspcoop2.core.config.ConfigurazioneGeneraleHandler}
  12641.      *
  12642.      * @param configurazioneGeneraleHandler Object to be serialized
  12643.      * @param prettyPrint if true output the XML with indenting
  12644.      * @return Object to be serialized as String
  12645.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12646.      */
  12647.     public String toString(ConfigurazioneGeneraleHandler configurazioneGeneraleHandler,boolean prettyPrint) throws SerializerException {
  12648.         return this.objToXml(ConfigurazioneGeneraleHandler.class, configurazioneGeneraleHandler, prettyPrint).toString();
  12649.     }
  12650.    
  12651.    
  12652.    
  12653.     /*
  12654.      =================================================================================
  12655.      Object: configurazione-service-handlers
  12656.      =================================================================================
  12657.     */
  12658.    
  12659.     /**
  12660.      * Serialize to file system in <var>fileName</var> the object <var>configurazioneServiceHandlers</var> of type {@link org.openspcoop2.core.config.ConfigurazioneServiceHandlers}
  12661.      *
  12662.      * @param fileName Xml file to serialize the object <var>configurazioneServiceHandlers</var>
  12663.      * @param configurazioneServiceHandlers Object to be serialized in xml file <var>fileName</var>
  12664.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12665.      */
  12666.     public void write(String fileName,ConfigurazioneServiceHandlers configurazioneServiceHandlers) throws SerializerException {
  12667.         this.objToXml(fileName, ConfigurazioneServiceHandlers.class, configurazioneServiceHandlers, false);
  12668.     }
  12669.     /**
  12670.      * Serialize to file system in <var>fileName</var> the object <var>configurazioneServiceHandlers</var> of type {@link org.openspcoop2.core.config.ConfigurazioneServiceHandlers}
  12671.      *
  12672.      * @param fileName Xml file to serialize the object <var>configurazioneServiceHandlers</var>
  12673.      * @param configurazioneServiceHandlers Object to be serialized in xml file <var>fileName</var>
  12674.      * @param prettyPrint if true output the XML with indenting
  12675.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12676.      */
  12677.     public void write(String fileName,ConfigurazioneServiceHandlers configurazioneServiceHandlers,boolean prettyPrint) throws SerializerException {
  12678.         this.objToXml(fileName, ConfigurazioneServiceHandlers.class, configurazioneServiceHandlers, prettyPrint);
  12679.     }
  12680.    
  12681.     /**
  12682.      * Serialize to file system in <var>file</var> the object <var>configurazioneServiceHandlers</var> of type {@link org.openspcoop2.core.config.ConfigurazioneServiceHandlers}
  12683.      *
  12684.      * @param file Xml file to serialize the object <var>configurazioneServiceHandlers</var>
  12685.      * @param configurazioneServiceHandlers Object to be serialized in xml file <var>fileName</var>
  12686.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12687.      */
  12688.     public void write(File file,ConfigurazioneServiceHandlers configurazioneServiceHandlers) throws SerializerException {
  12689.         this.objToXml(file, ConfigurazioneServiceHandlers.class, configurazioneServiceHandlers, false);
  12690.     }
  12691.     /**
  12692.      * Serialize to file system in <var>file</var> the object <var>configurazioneServiceHandlers</var> of type {@link org.openspcoop2.core.config.ConfigurazioneServiceHandlers}
  12693.      *
  12694.      * @param file Xml file to serialize the object <var>configurazioneServiceHandlers</var>
  12695.      * @param configurazioneServiceHandlers Object to be serialized in xml file <var>fileName</var>
  12696.      * @param prettyPrint if true output the XML with indenting
  12697.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12698.      */
  12699.     public void write(File file,ConfigurazioneServiceHandlers configurazioneServiceHandlers,boolean prettyPrint) throws SerializerException {
  12700.         this.objToXml(file, ConfigurazioneServiceHandlers.class, configurazioneServiceHandlers, prettyPrint);
  12701.     }
  12702.    
  12703.     /**
  12704.      * Serialize to output stream <var>out</var> the object <var>configurazioneServiceHandlers</var> of type {@link org.openspcoop2.core.config.ConfigurazioneServiceHandlers}
  12705.      *
  12706.      * @param out OutputStream to serialize the object <var>configurazioneServiceHandlers</var>
  12707.      * @param configurazioneServiceHandlers Object to be serialized in xml file <var>fileName</var>
  12708.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12709.      */
  12710.     public void write(OutputStream out,ConfigurazioneServiceHandlers configurazioneServiceHandlers) throws SerializerException {
  12711.         this.objToXml(out, ConfigurazioneServiceHandlers.class, configurazioneServiceHandlers, false);
  12712.     }
  12713.     /**
  12714.      * Serialize to output stream <var>out</var> the object <var>configurazioneServiceHandlers</var> of type {@link org.openspcoop2.core.config.ConfigurazioneServiceHandlers}
  12715.      *
  12716.      * @param out OutputStream to serialize the object <var>configurazioneServiceHandlers</var>
  12717.      * @param configurazioneServiceHandlers Object to be serialized in xml file <var>fileName</var>
  12718.      * @param prettyPrint if true output the XML with indenting
  12719.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12720.      */
  12721.     public void write(OutputStream out,ConfigurazioneServiceHandlers configurazioneServiceHandlers,boolean prettyPrint) throws SerializerException {
  12722.         this.objToXml(out, ConfigurazioneServiceHandlers.class, configurazioneServiceHandlers, prettyPrint);
  12723.     }
  12724.            
  12725.     /**
  12726.      * Serialize to byte array the object <var>configurazioneServiceHandlers</var> of type {@link org.openspcoop2.core.config.ConfigurazioneServiceHandlers}
  12727.      *
  12728.      * @param configurazioneServiceHandlers Object to be serialized
  12729.      * @return Object to be serialized in byte array
  12730.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12731.      */
  12732.     public byte[] toByteArray(ConfigurazioneServiceHandlers configurazioneServiceHandlers) throws SerializerException {
  12733.         return this.objToXml(ConfigurazioneServiceHandlers.class, configurazioneServiceHandlers, false).toByteArray();
  12734.     }
  12735.     /**
  12736.      * Serialize to byte array the object <var>configurazioneServiceHandlers</var> of type {@link org.openspcoop2.core.config.ConfigurazioneServiceHandlers}
  12737.      *
  12738.      * @param configurazioneServiceHandlers Object to be serialized
  12739.      * @param prettyPrint if true output the XML with indenting
  12740.      * @return Object to be serialized in byte array
  12741.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12742.      */
  12743.     public byte[] toByteArray(ConfigurazioneServiceHandlers configurazioneServiceHandlers,boolean prettyPrint) throws SerializerException {
  12744.         return this.objToXml(ConfigurazioneServiceHandlers.class, configurazioneServiceHandlers, prettyPrint).toByteArray();
  12745.     }
  12746.    
  12747.     /**
  12748.      * Serialize to String the object <var>configurazioneServiceHandlers</var> of type {@link org.openspcoop2.core.config.ConfigurazioneServiceHandlers}
  12749.      *
  12750.      * @param configurazioneServiceHandlers Object to be serialized
  12751.      * @return Object to be serialized as String
  12752.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12753.      */
  12754.     public String toString(ConfigurazioneServiceHandlers configurazioneServiceHandlers) throws SerializerException {
  12755.         return this.objToXml(ConfigurazioneServiceHandlers.class, configurazioneServiceHandlers, false).toString();
  12756.     }
  12757.     /**
  12758.      * Serialize to String the object <var>configurazioneServiceHandlers</var> of type {@link org.openspcoop2.core.config.ConfigurazioneServiceHandlers}
  12759.      *
  12760.      * @param configurazioneServiceHandlers Object to be serialized
  12761.      * @param prettyPrint if true output the XML with indenting
  12762.      * @return Object to be serialized as String
  12763.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12764.      */
  12765.     public String toString(ConfigurazioneServiceHandlers configurazioneServiceHandlers,boolean prettyPrint) throws SerializerException {
  12766.         return this.objToXml(ConfigurazioneServiceHandlers.class, configurazioneServiceHandlers, prettyPrint).toString();
  12767.     }
  12768.    
  12769.    
  12770.    
  12771.     /*
  12772.      =================================================================================
  12773.      Object: response-caching-configurazione-control
  12774.      =================================================================================
  12775.     */
  12776.    
  12777.     /**
  12778.      * Serialize to file system in <var>fileName</var> the object <var>responseCachingConfigurazioneControl</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneControl}
  12779.      *
  12780.      * @param fileName Xml file to serialize the object <var>responseCachingConfigurazioneControl</var>
  12781.      * @param responseCachingConfigurazioneControl Object to be serialized in xml file <var>fileName</var>
  12782.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12783.      */
  12784.     public void write(String fileName,ResponseCachingConfigurazioneControl responseCachingConfigurazioneControl) throws SerializerException {
  12785.         this.objToXml(fileName, ResponseCachingConfigurazioneControl.class, responseCachingConfigurazioneControl, false);
  12786.     }
  12787.     /**
  12788.      * Serialize to file system in <var>fileName</var> the object <var>responseCachingConfigurazioneControl</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneControl}
  12789.      *
  12790.      * @param fileName Xml file to serialize the object <var>responseCachingConfigurazioneControl</var>
  12791.      * @param responseCachingConfigurazioneControl Object to be serialized in xml file <var>fileName</var>
  12792.      * @param prettyPrint if true output the XML with indenting
  12793.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12794.      */
  12795.     public void write(String fileName,ResponseCachingConfigurazioneControl responseCachingConfigurazioneControl,boolean prettyPrint) throws SerializerException {
  12796.         this.objToXml(fileName, ResponseCachingConfigurazioneControl.class, responseCachingConfigurazioneControl, prettyPrint);
  12797.     }
  12798.    
  12799.     /**
  12800.      * Serialize to file system in <var>file</var> the object <var>responseCachingConfigurazioneControl</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneControl}
  12801.      *
  12802.      * @param file Xml file to serialize the object <var>responseCachingConfigurazioneControl</var>
  12803.      * @param responseCachingConfigurazioneControl Object to be serialized in xml file <var>fileName</var>
  12804.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12805.      */
  12806.     public void write(File file,ResponseCachingConfigurazioneControl responseCachingConfigurazioneControl) throws SerializerException {
  12807.         this.objToXml(file, ResponseCachingConfigurazioneControl.class, responseCachingConfigurazioneControl, false);
  12808.     }
  12809.     /**
  12810.      * Serialize to file system in <var>file</var> the object <var>responseCachingConfigurazioneControl</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneControl}
  12811.      *
  12812.      * @param file Xml file to serialize the object <var>responseCachingConfigurazioneControl</var>
  12813.      * @param responseCachingConfigurazioneControl Object to be serialized in xml file <var>fileName</var>
  12814.      * @param prettyPrint if true output the XML with indenting
  12815.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12816.      */
  12817.     public void write(File file,ResponseCachingConfigurazioneControl responseCachingConfigurazioneControl,boolean prettyPrint) throws SerializerException {
  12818.         this.objToXml(file, ResponseCachingConfigurazioneControl.class, responseCachingConfigurazioneControl, prettyPrint);
  12819.     }
  12820.    
  12821.     /**
  12822.      * Serialize to output stream <var>out</var> the object <var>responseCachingConfigurazioneControl</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneControl}
  12823.      *
  12824.      * @param out OutputStream to serialize the object <var>responseCachingConfigurazioneControl</var>
  12825.      * @param responseCachingConfigurazioneControl Object to be serialized in xml file <var>fileName</var>
  12826.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12827.      */
  12828.     public void write(OutputStream out,ResponseCachingConfigurazioneControl responseCachingConfigurazioneControl) throws SerializerException {
  12829.         this.objToXml(out, ResponseCachingConfigurazioneControl.class, responseCachingConfigurazioneControl, false);
  12830.     }
  12831.     /**
  12832.      * Serialize to output stream <var>out</var> the object <var>responseCachingConfigurazioneControl</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneControl}
  12833.      *
  12834.      * @param out OutputStream to serialize the object <var>responseCachingConfigurazioneControl</var>
  12835.      * @param responseCachingConfigurazioneControl Object to be serialized in xml file <var>fileName</var>
  12836.      * @param prettyPrint if true output the XML with indenting
  12837.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12838.      */
  12839.     public void write(OutputStream out,ResponseCachingConfigurazioneControl responseCachingConfigurazioneControl,boolean prettyPrint) throws SerializerException {
  12840.         this.objToXml(out, ResponseCachingConfigurazioneControl.class, responseCachingConfigurazioneControl, prettyPrint);
  12841.     }
  12842.            
  12843.     /**
  12844.      * Serialize to byte array the object <var>responseCachingConfigurazioneControl</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneControl}
  12845.      *
  12846.      * @param responseCachingConfigurazioneControl Object to be serialized
  12847.      * @return Object to be serialized in byte array
  12848.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12849.      */
  12850.     public byte[] toByteArray(ResponseCachingConfigurazioneControl responseCachingConfigurazioneControl) throws SerializerException {
  12851.         return this.objToXml(ResponseCachingConfigurazioneControl.class, responseCachingConfigurazioneControl, false).toByteArray();
  12852.     }
  12853.     /**
  12854.      * Serialize to byte array the object <var>responseCachingConfigurazioneControl</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneControl}
  12855.      *
  12856.      * @param responseCachingConfigurazioneControl Object to be serialized
  12857.      * @param prettyPrint if true output the XML with indenting
  12858.      * @return Object to be serialized in byte array
  12859.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12860.      */
  12861.     public byte[] toByteArray(ResponseCachingConfigurazioneControl responseCachingConfigurazioneControl,boolean prettyPrint) throws SerializerException {
  12862.         return this.objToXml(ResponseCachingConfigurazioneControl.class, responseCachingConfigurazioneControl, prettyPrint).toByteArray();
  12863.     }
  12864.    
  12865.     /**
  12866.      * Serialize to String the object <var>responseCachingConfigurazioneControl</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneControl}
  12867.      *
  12868.      * @param responseCachingConfigurazioneControl Object to be serialized
  12869.      * @return Object to be serialized as String
  12870.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12871.      */
  12872.     public String toString(ResponseCachingConfigurazioneControl responseCachingConfigurazioneControl) throws SerializerException {
  12873.         return this.objToXml(ResponseCachingConfigurazioneControl.class, responseCachingConfigurazioneControl, false).toString();
  12874.     }
  12875.     /**
  12876.      * Serialize to String the object <var>responseCachingConfigurazioneControl</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneControl}
  12877.      *
  12878.      * @param responseCachingConfigurazioneControl Object to be serialized
  12879.      * @param prettyPrint if true output the XML with indenting
  12880.      * @return Object to be serialized as String
  12881.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12882.      */
  12883.     public String toString(ResponseCachingConfigurazioneControl responseCachingConfigurazioneControl,boolean prettyPrint) throws SerializerException {
  12884.         return this.objToXml(ResponseCachingConfigurazioneControl.class, responseCachingConfigurazioneControl, prettyPrint).toString();
  12885.     }
  12886.    
  12887.    
  12888.    
  12889.     /*
  12890.      =================================================================================
  12891.      Object: credenziali
  12892.      =================================================================================
  12893.     */
  12894.    
  12895.     /**
  12896.      * Serialize to file system in <var>fileName</var> the object <var>credenziali</var> of type {@link org.openspcoop2.core.config.Credenziali}
  12897.      *
  12898.      * @param fileName Xml file to serialize the object <var>credenziali</var>
  12899.      * @param credenziali Object to be serialized in xml file <var>fileName</var>
  12900.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12901.      */
  12902.     public void write(String fileName,Credenziali credenziali) throws SerializerException {
  12903.         this.objToXml(fileName, Credenziali.class, credenziali, false);
  12904.     }
  12905.     /**
  12906.      * Serialize to file system in <var>fileName</var> the object <var>credenziali</var> of type {@link org.openspcoop2.core.config.Credenziali}
  12907.      *
  12908.      * @param fileName Xml file to serialize the object <var>credenziali</var>
  12909.      * @param credenziali Object to be serialized in xml file <var>fileName</var>
  12910.      * @param prettyPrint if true output the XML with indenting
  12911.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12912.      */
  12913.     public void write(String fileName,Credenziali credenziali,boolean prettyPrint) throws SerializerException {
  12914.         this.objToXml(fileName, Credenziali.class, credenziali, prettyPrint);
  12915.     }
  12916.    
  12917.     /**
  12918.      * Serialize to file system in <var>file</var> the object <var>credenziali</var> of type {@link org.openspcoop2.core.config.Credenziali}
  12919.      *
  12920.      * @param file Xml file to serialize the object <var>credenziali</var>
  12921.      * @param credenziali Object to be serialized in xml file <var>fileName</var>
  12922.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12923.      */
  12924.     public void write(File file,Credenziali credenziali) throws SerializerException {
  12925.         this.objToXml(file, Credenziali.class, credenziali, false);
  12926.     }
  12927.     /**
  12928.      * Serialize to file system in <var>file</var> the object <var>credenziali</var> of type {@link org.openspcoop2.core.config.Credenziali}
  12929.      *
  12930.      * @param file Xml file to serialize the object <var>credenziali</var>
  12931.      * @param credenziali Object to be serialized in xml file <var>fileName</var>
  12932.      * @param prettyPrint if true output the XML with indenting
  12933.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12934.      */
  12935.     public void write(File file,Credenziali credenziali,boolean prettyPrint) throws SerializerException {
  12936.         this.objToXml(file, Credenziali.class, credenziali, prettyPrint);
  12937.     }
  12938.    
  12939.     /**
  12940.      * Serialize to output stream <var>out</var> the object <var>credenziali</var> of type {@link org.openspcoop2.core.config.Credenziali}
  12941.      *
  12942.      * @param out OutputStream to serialize the object <var>credenziali</var>
  12943.      * @param credenziali Object to be serialized in xml file <var>fileName</var>
  12944.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12945.      */
  12946.     public void write(OutputStream out,Credenziali credenziali) throws SerializerException {
  12947.         this.objToXml(out, Credenziali.class, credenziali, false);
  12948.     }
  12949.     /**
  12950.      * Serialize to output stream <var>out</var> the object <var>credenziali</var> of type {@link org.openspcoop2.core.config.Credenziali}
  12951.      *
  12952.      * @param out OutputStream to serialize the object <var>credenziali</var>
  12953.      * @param credenziali Object to be serialized in xml file <var>fileName</var>
  12954.      * @param prettyPrint if true output the XML with indenting
  12955.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12956.      */
  12957.     public void write(OutputStream out,Credenziali credenziali,boolean prettyPrint) throws SerializerException {
  12958.         this.objToXml(out, Credenziali.class, credenziali, prettyPrint);
  12959.     }
  12960.            
  12961.     /**
  12962.      * Serialize to byte array the object <var>credenziali</var> of type {@link org.openspcoop2.core.config.Credenziali}
  12963.      *
  12964.      * @param credenziali Object to be serialized
  12965.      * @return Object to be serialized in byte array
  12966.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12967.      */
  12968.     public byte[] toByteArray(Credenziali credenziali) throws SerializerException {
  12969.         return this.objToXml(Credenziali.class, credenziali, false).toByteArray();
  12970.     }
  12971.     /**
  12972.      * Serialize to byte array the object <var>credenziali</var> of type {@link org.openspcoop2.core.config.Credenziali}
  12973.      *
  12974.      * @param credenziali Object to be serialized
  12975.      * @param prettyPrint if true output the XML with indenting
  12976.      * @return Object to be serialized in byte array
  12977.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12978.      */
  12979.     public byte[] toByteArray(Credenziali credenziali,boolean prettyPrint) throws SerializerException {
  12980.         return this.objToXml(Credenziali.class, credenziali, prettyPrint).toByteArray();
  12981.     }
  12982.    
  12983.     /**
  12984.      * Serialize to String the object <var>credenziali</var> of type {@link org.openspcoop2.core.config.Credenziali}
  12985.      *
  12986.      * @param credenziali Object to be serialized
  12987.      * @return Object to be serialized as String
  12988.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  12989.      */
  12990.     public String toString(Credenziali credenziali) throws SerializerException {
  12991.         return this.objToXml(Credenziali.class, credenziali, false).toString();
  12992.     }
  12993.     /**
  12994.      * Serialize to String the object <var>credenziali</var> of type {@link org.openspcoop2.core.config.Credenziali}
  12995.      *
  12996.      * @param credenziali Object to be serialized
  12997.      * @param prettyPrint if true output the XML with indenting
  12998.      * @return Object to be serialized as String
  12999.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13000.      */
  13001.     public String toString(Credenziali credenziali,boolean prettyPrint) throws SerializerException {
  13002.         return this.objToXml(Credenziali.class, credenziali, prettyPrint).toString();
  13003.     }
  13004.    
  13005.    
  13006.    
  13007.     /*
  13008.      =================================================================================
  13009.      Object: invocazione-porta
  13010.      =================================================================================
  13011.     */
  13012.    
  13013.     /**
  13014.      * Serialize to file system in <var>fileName</var> the object <var>invocazionePorta</var> of type {@link org.openspcoop2.core.config.InvocazionePorta}
  13015.      *
  13016.      * @param fileName Xml file to serialize the object <var>invocazionePorta</var>
  13017.      * @param invocazionePorta Object to be serialized in xml file <var>fileName</var>
  13018.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13019.      */
  13020.     public void write(String fileName,InvocazionePorta invocazionePorta) throws SerializerException {
  13021.         this.objToXml(fileName, InvocazionePorta.class, invocazionePorta, false);
  13022.     }
  13023.     /**
  13024.      * Serialize to file system in <var>fileName</var> the object <var>invocazionePorta</var> of type {@link org.openspcoop2.core.config.InvocazionePorta}
  13025.      *
  13026.      * @param fileName Xml file to serialize the object <var>invocazionePorta</var>
  13027.      * @param invocazionePorta Object to be serialized in xml file <var>fileName</var>
  13028.      * @param prettyPrint if true output the XML with indenting
  13029.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13030.      */
  13031.     public void write(String fileName,InvocazionePorta invocazionePorta,boolean prettyPrint) throws SerializerException {
  13032.         this.objToXml(fileName, InvocazionePorta.class, invocazionePorta, prettyPrint);
  13033.     }
  13034.    
  13035.     /**
  13036.      * Serialize to file system in <var>file</var> the object <var>invocazionePorta</var> of type {@link org.openspcoop2.core.config.InvocazionePorta}
  13037.      *
  13038.      * @param file Xml file to serialize the object <var>invocazionePorta</var>
  13039.      * @param invocazionePorta Object to be serialized in xml file <var>fileName</var>
  13040.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13041.      */
  13042.     public void write(File file,InvocazionePorta invocazionePorta) throws SerializerException {
  13043.         this.objToXml(file, InvocazionePorta.class, invocazionePorta, false);
  13044.     }
  13045.     /**
  13046.      * Serialize to file system in <var>file</var> the object <var>invocazionePorta</var> of type {@link org.openspcoop2.core.config.InvocazionePorta}
  13047.      *
  13048.      * @param file Xml file to serialize the object <var>invocazionePorta</var>
  13049.      * @param invocazionePorta Object to be serialized in xml file <var>fileName</var>
  13050.      * @param prettyPrint if true output the XML with indenting
  13051.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13052.      */
  13053.     public void write(File file,InvocazionePorta invocazionePorta,boolean prettyPrint) throws SerializerException {
  13054.         this.objToXml(file, InvocazionePorta.class, invocazionePorta, prettyPrint);
  13055.     }
  13056.    
  13057.     /**
  13058.      * Serialize to output stream <var>out</var> the object <var>invocazionePorta</var> of type {@link org.openspcoop2.core.config.InvocazionePorta}
  13059.      *
  13060.      * @param out OutputStream to serialize the object <var>invocazionePorta</var>
  13061.      * @param invocazionePorta Object to be serialized in xml file <var>fileName</var>
  13062.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13063.      */
  13064.     public void write(OutputStream out,InvocazionePorta invocazionePorta) throws SerializerException {
  13065.         this.objToXml(out, InvocazionePorta.class, invocazionePorta, false);
  13066.     }
  13067.     /**
  13068.      * Serialize to output stream <var>out</var> the object <var>invocazionePorta</var> of type {@link org.openspcoop2.core.config.InvocazionePorta}
  13069.      *
  13070.      * @param out OutputStream to serialize the object <var>invocazionePorta</var>
  13071.      * @param invocazionePorta Object to be serialized in xml file <var>fileName</var>
  13072.      * @param prettyPrint if true output the XML with indenting
  13073.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13074.      */
  13075.     public void write(OutputStream out,InvocazionePorta invocazionePorta,boolean prettyPrint) throws SerializerException {
  13076.         this.objToXml(out, InvocazionePorta.class, invocazionePorta, prettyPrint);
  13077.     }
  13078.            
  13079.     /**
  13080.      * Serialize to byte array the object <var>invocazionePorta</var> of type {@link org.openspcoop2.core.config.InvocazionePorta}
  13081.      *
  13082.      * @param invocazionePorta Object to be serialized
  13083.      * @return Object to be serialized in byte array
  13084.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13085.      */
  13086.     public byte[] toByteArray(InvocazionePorta invocazionePorta) throws SerializerException {
  13087.         return this.objToXml(InvocazionePorta.class, invocazionePorta, false).toByteArray();
  13088.     }
  13089.     /**
  13090.      * Serialize to byte array the object <var>invocazionePorta</var> of type {@link org.openspcoop2.core.config.InvocazionePorta}
  13091.      *
  13092.      * @param invocazionePorta Object to be serialized
  13093.      * @param prettyPrint if true output the XML with indenting
  13094.      * @return Object to be serialized in byte array
  13095.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13096.      */
  13097.     public byte[] toByteArray(InvocazionePorta invocazionePorta,boolean prettyPrint) throws SerializerException {
  13098.         return this.objToXml(InvocazionePorta.class, invocazionePorta, prettyPrint).toByteArray();
  13099.     }
  13100.    
  13101.     /**
  13102.      * Serialize to String the object <var>invocazionePorta</var> of type {@link org.openspcoop2.core.config.InvocazionePorta}
  13103.      *
  13104.      * @param invocazionePorta Object to be serialized
  13105.      * @return Object to be serialized as String
  13106.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13107.      */
  13108.     public String toString(InvocazionePorta invocazionePorta) throws SerializerException {
  13109.         return this.objToXml(InvocazionePorta.class, invocazionePorta, false).toString();
  13110.     }
  13111.     /**
  13112.      * Serialize to String the object <var>invocazionePorta</var> of type {@link org.openspcoop2.core.config.InvocazionePorta}
  13113.      *
  13114.      * @param invocazionePorta Object to be serialized
  13115.      * @param prettyPrint if true output the XML with indenting
  13116.      * @return Object to be serialized as String
  13117.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13118.      */
  13119.     public String toString(InvocazionePorta invocazionePorta,boolean prettyPrint) throws SerializerException {
  13120.         return this.objToXml(InvocazionePorta.class, invocazionePorta, prettyPrint).toString();
  13121.     }
  13122.    
  13123.    
  13124.    
  13125.     /*
  13126.      =================================================================================
  13127.      Object: invocazione-porta-gestione-errore
  13128.      =================================================================================
  13129.     */
  13130.    
  13131.     /**
  13132.      * Serialize to file system in <var>fileName</var> the object <var>invocazionePortaGestioneErrore</var> of type {@link org.openspcoop2.core.config.InvocazionePortaGestioneErrore}
  13133.      *
  13134.      * @param fileName Xml file to serialize the object <var>invocazionePortaGestioneErrore</var>
  13135.      * @param invocazionePortaGestioneErrore Object to be serialized in xml file <var>fileName</var>
  13136.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13137.      */
  13138.     public void write(String fileName,InvocazionePortaGestioneErrore invocazionePortaGestioneErrore) throws SerializerException {
  13139.         this.objToXml(fileName, InvocazionePortaGestioneErrore.class, invocazionePortaGestioneErrore, false);
  13140.     }
  13141.     /**
  13142.      * Serialize to file system in <var>fileName</var> the object <var>invocazionePortaGestioneErrore</var> of type {@link org.openspcoop2.core.config.InvocazionePortaGestioneErrore}
  13143.      *
  13144.      * @param fileName Xml file to serialize the object <var>invocazionePortaGestioneErrore</var>
  13145.      * @param invocazionePortaGestioneErrore Object to be serialized in xml file <var>fileName</var>
  13146.      * @param prettyPrint if true output the XML with indenting
  13147.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13148.      */
  13149.     public void write(String fileName,InvocazionePortaGestioneErrore invocazionePortaGestioneErrore,boolean prettyPrint) throws SerializerException {
  13150.         this.objToXml(fileName, InvocazionePortaGestioneErrore.class, invocazionePortaGestioneErrore, prettyPrint);
  13151.     }
  13152.    
  13153.     /**
  13154.      * Serialize to file system in <var>file</var> the object <var>invocazionePortaGestioneErrore</var> of type {@link org.openspcoop2.core.config.InvocazionePortaGestioneErrore}
  13155.      *
  13156.      * @param file Xml file to serialize the object <var>invocazionePortaGestioneErrore</var>
  13157.      * @param invocazionePortaGestioneErrore Object to be serialized in xml file <var>fileName</var>
  13158.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13159.      */
  13160.     public void write(File file,InvocazionePortaGestioneErrore invocazionePortaGestioneErrore) throws SerializerException {
  13161.         this.objToXml(file, InvocazionePortaGestioneErrore.class, invocazionePortaGestioneErrore, false);
  13162.     }
  13163.     /**
  13164.      * Serialize to file system in <var>file</var> the object <var>invocazionePortaGestioneErrore</var> of type {@link org.openspcoop2.core.config.InvocazionePortaGestioneErrore}
  13165.      *
  13166.      * @param file Xml file to serialize the object <var>invocazionePortaGestioneErrore</var>
  13167.      * @param invocazionePortaGestioneErrore Object to be serialized in xml file <var>fileName</var>
  13168.      * @param prettyPrint if true output the XML with indenting
  13169.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13170.      */
  13171.     public void write(File file,InvocazionePortaGestioneErrore invocazionePortaGestioneErrore,boolean prettyPrint) throws SerializerException {
  13172.         this.objToXml(file, InvocazionePortaGestioneErrore.class, invocazionePortaGestioneErrore, prettyPrint);
  13173.     }
  13174.    
  13175.     /**
  13176.      * Serialize to output stream <var>out</var> the object <var>invocazionePortaGestioneErrore</var> of type {@link org.openspcoop2.core.config.InvocazionePortaGestioneErrore}
  13177.      *
  13178.      * @param out OutputStream to serialize the object <var>invocazionePortaGestioneErrore</var>
  13179.      * @param invocazionePortaGestioneErrore Object to be serialized in xml file <var>fileName</var>
  13180.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13181.      */
  13182.     public void write(OutputStream out,InvocazionePortaGestioneErrore invocazionePortaGestioneErrore) throws SerializerException {
  13183.         this.objToXml(out, InvocazionePortaGestioneErrore.class, invocazionePortaGestioneErrore, false);
  13184.     }
  13185.     /**
  13186.      * Serialize to output stream <var>out</var> the object <var>invocazionePortaGestioneErrore</var> of type {@link org.openspcoop2.core.config.InvocazionePortaGestioneErrore}
  13187.      *
  13188.      * @param out OutputStream to serialize the object <var>invocazionePortaGestioneErrore</var>
  13189.      * @param invocazionePortaGestioneErrore Object to be serialized in xml file <var>fileName</var>
  13190.      * @param prettyPrint if true output the XML with indenting
  13191.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13192.      */
  13193.     public void write(OutputStream out,InvocazionePortaGestioneErrore invocazionePortaGestioneErrore,boolean prettyPrint) throws SerializerException {
  13194.         this.objToXml(out, InvocazionePortaGestioneErrore.class, invocazionePortaGestioneErrore, prettyPrint);
  13195.     }
  13196.            
  13197.     /**
  13198.      * Serialize to byte array the object <var>invocazionePortaGestioneErrore</var> of type {@link org.openspcoop2.core.config.InvocazionePortaGestioneErrore}
  13199.      *
  13200.      * @param invocazionePortaGestioneErrore Object to be serialized
  13201.      * @return Object to be serialized in byte array
  13202.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13203.      */
  13204.     public byte[] toByteArray(InvocazionePortaGestioneErrore invocazionePortaGestioneErrore) throws SerializerException {
  13205.         return this.objToXml(InvocazionePortaGestioneErrore.class, invocazionePortaGestioneErrore, false).toByteArray();
  13206.     }
  13207.     /**
  13208.      * Serialize to byte array the object <var>invocazionePortaGestioneErrore</var> of type {@link org.openspcoop2.core.config.InvocazionePortaGestioneErrore}
  13209.      *
  13210.      * @param invocazionePortaGestioneErrore Object to be serialized
  13211.      * @param prettyPrint if true output the XML with indenting
  13212.      * @return Object to be serialized in byte array
  13213.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13214.      */
  13215.     public byte[] toByteArray(InvocazionePortaGestioneErrore invocazionePortaGestioneErrore,boolean prettyPrint) throws SerializerException {
  13216.         return this.objToXml(InvocazionePortaGestioneErrore.class, invocazionePortaGestioneErrore, prettyPrint).toByteArray();
  13217.     }
  13218.    
  13219.     /**
  13220.      * Serialize to String the object <var>invocazionePortaGestioneErrore</var> of type {@link org.openspcoop2.core.config.InvocazionePortaGestioneErrore}
  13221.      *
  13222.      * @param invocazionePortaGestioneErrore Object to be serialized
  13223.      * @return Object to be serialized as String
  13224.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13225.      */
  13226.     public String toString(InvocazionePortaGestioneErrore invocazionePortaGestioneErrore) throws SerializerException {
  13227.         return this.objToXml(InvocazionePortaGestioneErrore.class, invocazionePortaGestioneErrore, false).toString();
  13228.     }
  13229.     /**
  13230.      * Serialize to String the object <var>invocazionePortaGestioneErrore</var> of type {@link org.openspcoop2.core.config.InvocazionePortaGestioneErrore}
  13231.      *
  13232.      * @param invocazionePortaGestioneErrore Object to be serialized
  13233.      * @param prettyPrint if true output the XML with indenting
  13234.      * @return Object to be serialized as String
  13235.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13236.      */
  13237.     public String toString(InvocazionePortaGestioneErrore invocazionePortaGestioneErrore,boolean prettyPrint) throws SerializerException {
  13238.         return this.objToXml(InvocazionePortaGestioneErrore.class, invocazionePortaGestioneErrore, prettyPrint).toString();
  13239.     }
  13240.    
  13241.    
  13242.    
  13243.     /*
  13244.      =================================================================================
  13245.      Object: accesso-dati-richieste
  13246.      =================================================================================
  13247.     */
  13248.    
  13249.     /**
  13250.      * Serialize to file system in <var>fileName</var> the object <var>accessoDatiRichieste</var> of type {@link org.openspcoop2.core.config.AccessoDatiRichieste}
  13251.      *
  13252.      * @param fileName Xml file to serialize the object <var>accessoDatiRichieste</var>
  13253.      * @param accessoDatiRichieste Object to be serialized in xml file <var>fileName</var>
  13254.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13255.      */
  13256.     public void write(String fileName,AccessoDatiRichieste accessoDatiRichieste) throws SerializerException {
  13257.         this.objToXml(fileName, AccessoDatiRichieste.class, accessoDatiRichieste, false);
  13258.     }
  13259.     /**
  13260.      * Serialize to file system in <var>fileName</var> the object <var>accessoDatiRichieste</var> of type {@link org.openspcoop2.core.config.AccessoDatiRichieste}
  13261.      *
  13262.      * @param fileName Xml file to serialize the object <var>accessoDatiRichieste</var>
  13263.      * @param accessoDatiRichieste Object to be serialized in xml file <var>fileName</var>
  13264.      * @param prettyPrint if true output the XML with indenting
  13265.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13266.      */
  13267.     public void write(String fileName,AccessoDatiRichieste accessoDatiRichieste,boolean prettyPrint) throws SerializerException {
  13268.         this.objToXml(fileName, AccessoDatiRichieste.class, accessoDatiRichieste, prettyPrint);
  13269.     }
  13270.    
  13271.     /**
  13272.      * Serialize to file system in <var>file</var> the object <var>accessoDatiRichieste</var> of type {@link org.openspcoop2.core.config.AccessoDatiRichieste}
  13273.      *
  13274.      * @param file Xml file to serialize the object <var>accessoDatiRichieste</var>
  13275.      * @param accessoDatiRichieste Object to be serialized in xml file <var>fileName</var>
  13276.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13277.      */
  13278.     public void write(File file,AccessoDatiRichieste accessoDatiRichieste) throws SerializerException {
  13279.         this.objToXml(file, AccessoDatiRichieste.class, accessoDatiRichieste, false);
  13280.     }
  13281.     /**
  13282.      * Serialize to file system in <var>file</var> the object <var>accessoDatiRichieste</var> of type {@link org.openspcoop2.core.config.AccessoDatiRichieste}
  13283.      *
  13284.      * @param file Xml file to serialize the object <var>accessoDatiRichieste</var>
  13285.      * @param accessoDatiRichieste Object to be serialized in xml file <var>fileName</var>
  13286.      * @param prettyPrint if true output the XML with indenting
  13287.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13288.      */
  13289.     public void write(File file,AccessoDatiRichieste accessoDatiRichieste,boolean prettyPrint) throws SerializerException {
  13290.         this.objToXml(file, AccessoDatiRichieste.class, accessoDatiRichieste, prettyPrint);
  13291.     }
  13292.    
  13293.     /**
  13294.      * Serialize to output stream <var>out</var> the object <var>accessoDatiRichieste</var> of type {@link org.openspcoop2.core.config.AccessoDatiRichieste}
  13295.      *
  13296.      * @param out OutputStream to serialize the object <var>accessoDatiRichieste</var>
  13297.      * @param accessoDatiRichieste Object to be serialized in xml file <var>fileName</var>
  13298.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13299.      */
  13300.     public void write(OutputStream out,AccessoDatiRichieste accessoDatiRichieste) throws SerializerException {
  13301.         this.objToXml(out, AccessoDatiRichieste.class, accessoDatiRichieste, false);
  13302.     }
  13303.     /**
  13304.      * Serialize to output stream <var>out</var> the object <var>accessoDatiRichieste</var> of type {@link org.openspcoop2.core.config.AccessoDatiRichieste}
  13305.      *
  13306.      * @param out OutputStream to serialize the object <var>accessoDatiRichieste</var>
  13307.      * @param accessoDatiRichieste Object to be serialized in xml file <var>fileName</var>
  13308.      * @param prettyPrint if true output the XML with indenting
  13309.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13310.      */
  13311.     public void write(OutputStream out,AccessoDatiRichieste accessoDatiRichieste,boolean prettyPrint) throws SerializerException {
  13312.         this.objToXml(out, AccessoDatiRichieste.class, accessoDatiRichieste, prettyPrint);
  13313.     }
  13314.            
  13315.     /**
  13316.      * Serialize to byte array the object <var>accessoDatiRichieste</var> of type {@link org.openspcoop2.core.config.AccessoDatiRichieste}
  13317.      *
  13318.      * @param accessoDatiRichieste Object to be serialized
  13319.      * @return Object to be serialized in byte array
  13320.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13321.      */
  13322.     public byte[] toByteArray(AccessoDatiRichieste accessoDatiRichieste) throws SerializerException {
  13323.         return this.objToXml(AccessoDatiRichieste.class, accessoDatiRichieste, false).toByteArray();
  13324.     }
  13325.     /**
  13326.      * Serialize to byte array the object <var>accessoDatiRichieste</var> of type {@link org.openspcoop2.core.config.AccessoDatiRichieste}
  13327.      *
  13328.      * @param accessoDatiRichieste Object to be serialized
  13329.      * @param prettyPrint if true output the XML with indenting
  13330.      * @return Object to be serialized in byte array
  13331.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13332.      */
  13333.     public byte[] toByteArray(AccessoDatiRichieste accessoDatiRichieste,boolean prettyPrint) throws SerializerException {
  13334.         return this.objToXml(AccessoDatiRichieste.class, accessoDatiRichieste, prettyPrint).toByteArray();
  13335.     }
  13336.    
  13337.     /**
  13338.      * Serialize to String the object <var>accessoDatiRichieste</var> of type {@link org.openspcoop2.core.config.AccessoDatiRichieste}
  13339.      *
  13340.      * @param accessoDatiRichieste Object to be serialized
  13341.      * @return Object to be serialized as String
  13342.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13343.      */
  13344.     public String toString(AccessoDatiRichieste accessoDatiRichieste) throws SerializerException {
  13345.         return this.objToXml(AccessoDatiRichieste.class, accessoDatiRichieste, false).toString();
  13346.     }
  13347.     /**
  13348.      * Serialize to String the object <var>accessoDatiRichieste</var> of type {@link org.openspcoop2.core.config.AccessoDatiRichieste}
  13349.      *
  13350.      * @param accessoDatiRichieste Object to be serialized
  13351.      * @param prettyPrint if true output the XML with indenting
  13352.      * @return Object to be serialized as String
  13353.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13354.      */
  13355.     public String toString(AccessoDatiRichieste accessoDatiRichieste,boolean prettyPrint) throws SerializerException {
  13356.         return this.objToXml(AccessoDatiRichieste.class, accessoDatiRichieste, prettyPrint).toString();
  13357.     }
  13358.    
  13359.    
  13360.    
  13361.     /*
  13362.      =================================================================================
  13363.      Object: tracciamento
  13364.      =================================================================================
  13365.     */
  13366.    
  13367.     /**
  13368.      * Serialize to file system in <var>fileName</var> the object <var>tracciamento</var> of type {@link org.openspcoop2.core.config.Tracciamento}
  13369.      *
  13370.      * @param fileName Xml file to serialize the object <var>tracciamento</var>
  13371.      * @param tracciamento Object to be serialized in xml file <var>fileName</var>
  13372.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13373.      */
  13374.     public void write(String fileName,Tracciamento tracciamento) throws SerializerException {
  13375.         this.objToXml(fileName, Tracciamento.class, tracciamento, false);
  13376.     }
  13377.     /**
  13378.      * Serialize to file system in <var>fileName</var> the object <var>tracciamento</var> of type {@link org.openspcoop2.core.config.Tracciamento}
  13379.      *
  13380.      * @param fileName Xml file to serialize the object <var>tracciamento</var>
  13381.      * @param tracciamento Object to be serialized in xml file <var>fileName</var>
  13382.      * @param prettyPrint if true output the XML with indenting
  13383.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13384.      */
  13385.     public void write(String fileName,Tracciamento tracciamento,boolean prettyPrint) throws SerializerException {
  13386.         this.objToXml(fileName, Tracciamento.class, tracciamento, prettyPrint);
  13387.     }
  13388.    
  13389.     /**
  13390.      * Serialize to file system in <var>file</var> the object <var>tracciamento</var> of type {@link org.openspcoop2.core.config.Tracciamento}
  13391.      *
  13392.      * @param file Xml file to serialize the object <var>tracciamento</var>
  13393.      * @param tracciamento Object to be serialized in xml file <var>fileName</var>
  13394.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13395.      */
  13396.     public void write(File file,Tracciamento tracciamento) throws SerializerException {
  13397.         this.objToXml(file, Tracciamento.class, tracciamento, false);
  13398.     }
  13399.     /**
  13400.      * Serialize to file system in <var>file</var> the object <var>tracciamento</var> of type {@link org.openspcoop2.core.config.Tracciamento}
  13401.      *
  13402.      * @param file Xml file to serialize the object <var>tracciamento</var>
  13403.      * @param tracciamento Object to be serialized in xml file <var>fileName</var>
  13404.      * @param prettyPrint if true output the XML with indenting
  13405.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13406.      */
  13407.     public void write(File file,Tracciamento tracciamento,boolean prettyPrint) throws SerializerException {
  13408.         this.objToXml(file, Tracciamento.class, tracciamento, prettyPrint);
  13409.     }
  13410.    
  13411.     /**
  13412.      * Serialize to output stream <var>out</var> the object <var>tracciamento</var> of type {@link org.openspcoop2.core.config.Tracciamento}
  13413.      *
  13414.      * @param out OutputStream to serialize the object <var>tracciamento</var>
  13415.      * @param tracciamento Object to be serialized in xml file <var>fileName</var>
  13416.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13417.      */
  13418.     public void write(OutputStream out,Tracciamento tracciamento) throws SerializerException {
  13419.         this.objToXml(out, Tracciamento.class, tracciamento, false);
  13420.     }
  13421.     /**
  13422.      * Serialize to output stream <var>out</var> the object <var>tracciamento</var> of type {@link org.openspcoop2.core.config.Tracciamento}
  13423.      *
  13424.      * @param out OutputStream to serialize the object <var>tracciamento</var>
  13425.      * @param tracciamento Object to be serialized in xml file <var>fileName</var>
  13426.      * @param prettyPrint if true output the XML with indenting
  13427.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13428.      */
  13429.     public void write(OutputStream out,Tracciamento tracciamento,boolean prettyPrint) throws SerializerException {
  13430.         this.objToXml(out, Tracciamento.class, tracciamento, prettyPrint);
  13431.     }
  13432.            
  13433.     /**
  13434.      * Serialize to byte array the object <var>tracciamento</var> of type {@link org.openspcoop2.core.config.Tracciamento}
  13435.      *
  13436.      * @param tracciamento Object to be serialized
  13437.      * @return Object to be serialized in byte array
  13438.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13439.      */
  13440.     public byte[] toByteArray(Tracciamento tracciamento) throws SerializerException {
  13441.         return this.objToXml(Tracciamento.class, tracciamento, false).toByteArray();
  13442.     }
  13443.     /**
  13444.      * Serialize to byte array the object <var>tracciamento</var> of type {@link org.openspcoop2.core.config.Tracciamento}
  13445.      *
  13446.      * @param tracciamento Object to be serialized
  13447.      * @param prettyPrint if true output the XML with indenting
  13448.      * @return Object to be serialized in byte array
  13449.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13450.      */
  13451.     public byte[] toByteArray(Tracciamento tracciamento,boolean prettyPrint) throws SerializerException {
  13452.         return this.objToXml(Tracciamento.class, tracciamento, prettyPrint).toByteArray();
  13453.     }
  13454.    
  13455.     /**
  13456.      * Serialize to String the object <var>tracciamento</var> of type {@link org.openspcoop2.core.config.Tracciamento}
  13457.      *
  13458.      * @param tracciamento Object to be serialized
  13459.      * @return Object to be serialized as String
  13460.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13461.      */
  13462.     public String toString(Tracciamento tracciamento) throws SerializerException {
  13463.         return this.objToXml(Tracciamento.class, tracciamento, false).toString();
  13464.     }
  13465.     /**
  13466.      * Serialize to String the object <var>tracciamento</var> of type {@link org.openspcoop2.core.config.Tracciamento}
  13467.      *
  13468.      * @param tracciamento Object to be serialized
  13469.      * @param prettyPrint if true output the XML with indenting
  13470.      * @return Object to be serialized as String
  13471.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13472.      */
  13473.     public String toString(Tracciamento tracciamento,boolean prettyPrint) throws SerializerException {
  13474.         return this.objToXml(Tracciamento.class, tracciamento, prettyPrint).toString();
  13475.     }
  13476.    
  13477.    
  13478.    
  13479.     /*
  13480.      =================================================================================
  13481.      Object: configurazione-gestione-errore
  13482.      =================================================================================
  13483.     */
  13484.    
  13485.     /**
  13486.      * Serialize to file system in <var>fileName</var> the object <var>configurazioneGestioneErrore</var> of type {@link org.openspcoop2.core.config.ConfigurazioneGestioneErrore}
  13487.      *
  13488.      * @param fileName Xml file to serialize the object <var>configurazioneGestioneErrore</var>
  13489.      * @param configurazioneGestioneErrore Object to be serialized in xml file <var>fileName</var>
  13490.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13491.      */
  13492.     public void write(String fileName,ConfigurazioneGestioneErrore configurazioneGestioneErrore) throws SerializerException {
  13493.         this.objToXml(fileName, ConfigurazioneGestioneErrore.class, configurazioneGestioneErrore, false);
  13494.     }
  13495.     /**
  13496.      * Serialize to file system in <var>fileName</var> the object <var>configurazioneGestioneErrore</var> of type {@link org.openspcoop2.core.config.ConfigurazioneGestioneErrore}
  13497.      *
  13498.      * @param fileName Xml file to serialize the object <var>configurazioneGestioneErrore</var>
  13499.      * @param configurazioneGestioneErrore Object to be serialized in xml file <var>fileName</var>
  13500.      * @param prettyPrint if true output the XML with indenting
  13501.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13502.      */
  13503.     public void write(String fileName,ConfigurazioneGestioneErrore configurazioneGestioneErrore,boolean prettyPrint) throws SerializerException {
  13504.         this.objToXml(fileName, ConfigurazioneGestioneErrore.class, configurazioneGestioneErrore, prettyPrint);
  13505.     }
  13506.    
  13507.     /**
  13508.      * Serialize to file system in <var>file</var> the object <var>configurazioneGestioneErrore</var> of type {@link org.openspcoop2.core.config.ConfigurazioneGestioneErrore}
  13509.      *
  13510.      * @param file Xml file to serialize the object <var>configurazioneGestioneErrore</var>
  13511.      * @param configurazioneGestioneErrore Object to be serialized in xml file <var>fileName</var>
  13512.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13513.      */
  13514.     public void write(File file,ConfigurazioneGestioneErrore configurazioneGestioneErrore) throws SerializerException {
  13515.         this.objToXml(file, ConfigurazioneGestioneErrore.class, configurazioneGestioneErrore, false);
  13516.     }
  13517.     /**
  13518.      * Serialize to file system in <var>file</var> the object <var>configurazioneGestioneErrore</var> of type {@link org.openspcoop2.core.config.ConfigurazioneGestioneErrore}
  13519.      *
  13520.      * @param file Xml file to serialize the object <var>configurazioneGestioneErrore</var>
  13521.      * @param configurazioneGestioneErrore Object to be serialized in xml file <var>fileName</var>
  13522.      * @param prettyPrint if true output the XML with indenting
  13523.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13524.      */
  13525.     public void write(File file,ConfigurazioneGestioneErrore configurazioneGestioneErrore,boolean prettyPrint) throws SerializerException {
  13526.         this.objToXml(file, ConfigurazioneGestioneErrore.class, configurazioneGestioneErrore, prettyPrint);
  13527.     }
  13528.    
  13529.     /**
  13530.      * Serialize to output stream <var>out</var> the object <var>configurazioneGestioneErrore</var> of type {@link org.openspcoop2.core.config.ConfigurazioneGestioneErrore}
  13531.      *
  13532.      * @param out OutputStream to serialize the object <var>configurazioneGestioneErrore</var>
  13533.      * @param configurazioneGestioneErrore Object to be serialized in xml file <var>fileName</var>
  13534.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13535.      */
  13536.     public void write(OutputStream out,ConfigurazioneGestioneErrore configurazioneGestioneErrore) throws SerializerException {
  13537.         this.objToXml(out, ConfigurazioneGestioneErrore.class, configurazioneGestioneErrore, false);
  13538.     }
  13539.     /**
  13540.      * Serialize to output stream <var>out</var> the object <var>configurazioneGestioneErrore</var> of type {@link org.openspcoop2.core.config.ConfigurazioneGestioneErrore}
  13541.      *
  13542.      * @param out OutputStream to serialize the object <var>configurazioneGestioneErrore</var>
  13543.      * @param configurazioneGestioneErrore Object to be serialized in xml file <var>fileName</var>
  13544.      * @param prettyPrint if true output the XML with indenting
  13545.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13546.      */
  13547.     public void write(OutputStream out,ConfigurazioneGestioneErrore configurazioneGestioneErrore,boolean prettyPrint) throws SerializerException {
  13548.         this.objToXml(out, ConfigurazioneGestioneErrore.class, configurazioneGestioneErrore, prettyPrint);
  13549.     }
  13550.            
  13551.     /**
  13552.      * Serialize to byte array the object <var>configurazioneGestioneErrore</var> of type {@link org.openspcoop2.core.config.ConfigurazioneGestioneErrore}
  13553.      *
  13554.      * @param configurazioneGestioneErrore Object to be serialized
  13555.      * @return Object to be serialized in byte array
  13556.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13557.      */
  13558.     public byte[] toByteArray(ConfigurazioneGestioneErrore configurazioneGestioneErrore) throws SerializerException {
  13559.         return this.objToXml(ConfigurazioneGestioneErrore.class, configurazioneGestioneErrore, false).toByteArray();
  13560.     }
  13561.     /**
  13562.      * Serialize to byte array the object <var>configurazioneGestioneErrore</var> of type {@link org.openspcoop2.core.config.ConfigurazioneGestioneErrore}
  13563.      *
  13564.      * @param configurazioneGestioneErrore Object to be serialized
  13565.      * @param prettyPrint if true output the XML with indenting
  13566.      * @return Object to be serialized in byte array
  13567.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13568.      */
  13569.     public byte[] toByteArray(ConfigurazioneGestioneErrore configurazioneGestioneErrore,boolean prettyPrint) throws SerializerException {
  13570.         return this.objToXml(ConfigurazioneGestioneErrore.class, configurazioneGestioneErrore, prettyPrint).toByteArray();
  13571.     }
  13572.    
  13573.     /**
  13574.      * Serialize to String the object <var>configurazioneGestioneErrore</var> of type {@link org.openspcoop2.core.config.ConfigurazioneGestioneErrore}
  13575.      *
  13576.      * @param configurazioneGestioneErrore Object to be serialized
  13577.      * @return Object to be serialized as String
  13578.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13579.      */
  13580.     public String toString(ConfigurazioneGestioneErrore configurazioneGestioneErrore) throws SerializerException {
  13581.         return this.objToXml(ConfigurazioneGestioneErrore.class, configurazioneGestioneErrore, false).toString();
  13582.     }
  13583.     /**
  13584.      * Serialize to String the object <var>configurazioneGestioneErrore</var> of type {@link org.openspcoop2.core.config.ConfigurazioneGestioneErrore}
  13585.      *
  13586.      * @param configurazioneGestioneErrore Object to be serialized
  13587.      * @param prettyPrint if true output the XML with indenting
  13588.      * @return Object to be serialized as String
  13589.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13590.      */
  13591.     public String toString(ConfigurazioneGestioneErrore configurazioneGestioneErrore,boolean prettyPrint) throws SerializerException {
  13592.         return this.objToXml(ConfigurazioneGestioneErrore.class, configurazioneGestioneErrore, prettyPrint).toString();
  13593.     }
  13594.    
  13595.    
  13596.    
  13597.     /*
  13598.      =================================================================================
  13599.      Object: accesso-dati-attribute-authority
  13600.      =================================================================================
  13601.     */
  13602.    
  13603.     /**
  13604.      * Serialize to file system in <var>fileName</var> the object <var>accessoDatiAttributeAuthority</var> of type {@link org.openspcoop2.core.config.AccessoDatiAttributeAuthority}
  13605.      *
  13606.      * @param fileName Xml file to serialize the object <var>accessoDatiAttributeAuthority</var>
  13607.      * @param accessoDatiAttributeAuthority Object to be serialized in xml file <var>fileName</var>
  13608.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13609.      */
  13610.     public void write(String fileName,AccessoDatiAttributeAuthority accessoDatiAttributeAuthority) throws SerializerException {
  13611.         this.objToXml(fileName, AccessoDatiAttributeAuthority.class, accessoDatiAttributeAuthority, false);
  13612.     }
  13613.     /**
  13614.      * Serialize to file system in <var>fileName</var> the object <var>accessoDatiAttributeAuthority</var> of type {@link org.openspcoop2.core.config.AccessoDatiAttributeAuthority}
  13615.      *
  13616.      * @param fileName Xml file to serialize the object <var>accessoDatiAttributeAuthority</var>
  13617.      * @param accessoDatiAttributeAuthority Object to be serialized in xml file <var>fileName</var>
  13618.      * @param prettyPrint if true output the XML with indenting
  13619.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13620.      */
  13621.     public void write(String fileName,AccessoDatiAttributeAuthority accessoDatiAttributeAuthority,boolean prettyPrint) throws SerializerException {
  13622.         this.objToXml(fileName, AccessoDatiAttributeAuthority.class, accessoDatiAttributeAuthority, prettyPrint);
  13623.     }
  13624.    
  13625.     /**
  13626.      * Serialize to file system in <var>file</var> the object <var>accessoDatiAttributeAuthority</var> of type {@link org.openspcoop2.core.config.AccessoDatiAttributeAuthority}
  13627.      *
  13628.      * @param file Xml file to serialize the object <var>accessoDatiAttributeAuthority</var>
  13629.      * @param accessoDatiAttributeAuthority Object to be serialized in xml file <var>fileName</var>
  13630.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13631.      */
  13632.     public void write(File file,AccessoDatiAttributeAuthority accessoDatiAttributeAuthority) throws SerializerException {
  13633.         this.objToXml(file, AccessoDatiAttributeAuthority.class, accessoDatiAttributeAuthority, false);
  13634.     }
  13635.     /**
  13636.      * Serialize to file system in <var>file</var> the object <var>accessoDatiAttributeAuthority</var> of type {@link org.openspcoop2.core.config.AccessoDatiAttributeAuthority}
  13637.      *
  13638.      * @param file Xml file to serialize the object <var>accessoDatiAttributeAuthority</var>
  13639.      * @param accessoDatiAttributeAuthority Object to be serialized in xml file <var>fileName</var>
  13640.      * @param prettyPrint if true output the XML with indenting
  13641.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13642.      */
  13643.     public void write(File file,AccessoDatiAttributeAuthority accessoDatiAttributeAuthority,boolean prettyPrint) throws SerializerException {
  13644.         this.objToXml(file, AccessoDatiAttributeAuthority.class, accessoDatiAttributeAuthority, prettyPrint);
  13645.     }
  13646.    
  13647.     /**
  13648.      * Serialize to output stream <var>out</var> the object <var>accessoDatiAttributeAuthority</var> of type {@link org.openspcoop2.core.config.AccessoDatiAttributeAuthority}
  13649.      *
  13650.      * @param out OutputStream to serialize the object <var>accessoDatiAttributeAuthority</var>
  13651.      * @param accessoDatiAttributeAuthority Object to be serialized in xml file <var>fileName</var>
  13652.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13653.      */
  13654.     public void write(OutputStream out,AccessoDatiAttributeAuthority accessoDatiAttributeAuthority) throws SerializerException {
  13655.         this.objToXml(out, AccessoDatiAttributeAuthority.class, accessoDatiAttributeAuthority, false);
  13656.     }
  13657.     /**
  13658.      * Serialize to output stream <var>out</var> the object <var>accessoDatiAttributeAuthority</var> of type {@link org.openspcoop2.core.config.AccessoDatiAttributeAuthority}
  13659.      *
  13660.      * @param out OutputStream to serialize the object <var>accessoDatiAttributeAuthority</var>
  13661.      * @param accessoDatiAttributeAuthority Object to be serialized in xml file <var>fileName</var>
  13662.      * @param prettyPrint if true output the XML with indenting
  13663.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13664.      */
  13665.     public void write(OutputStream out,AccessoDatiAttributeAuthority accessoDatiAttributeAuthority,boolean prettyPrint) throws SerializerException {
  13666.         this.objToXml(out, AccessoDatiAttributeAuthority.class, accessoDatiAttributeAuthority, prettyPrint);
  13667.     }
  13668.            
  13669.     /**
  13670.      * Serialize to byte array the object <var>accessoDatiAttributeAuthority</var> of type {@link org.openspcoop2.core.config.AccessoDatiAttributeAuthority}
  13671.      *
  13672.      * @param accessoDatiAttributeAuthority Object to be serialized
  13673.      * @return Object to be serialized in byte array
  13674.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13675.      */
  13676.     public byte[] toByteArray(AccessoDatiAttributeAuthority accessoDatiAttributeAuthority) throws SerializerException {
  13677.         return this.objToXml(AccessoDatiAttributeAuthority.class, accessoDatiAttributeAuthority, false).toByteArray();
  13678.     }
  13679.     /**
  13680.      * Serialize to byte array the object <var>accessoDatiAttributeAuthority</var> of type {@link org.openspcoop2.core.config.AccessoDatiAttributeAuthority}
  13681.      *
  13682.      * @param accessoDatiAttributeAuthority Object to be serialized
  13683.      * @param prettyPrint if true output the XML with indenting
  13684.      * @return Object to be serialized in byte array
  13685.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13686.      */
  13687.     public byte[] toByteArray(AccessoDatiAttributeAuthority accessoDatiAttributeAuthority,boolean prettyPrint) throws SerializerException {
  13688.         return this.objToXml(AccessoDatiAttributeAuthority.class, accessoDatiAttributeAuthority, prettyPrint).toByteArray();
  13689.     }
  13690.    
  13691.     /**
  13692.      * Serialize to String the object <var>accessoDatiAttributeAuthority</var> of type {@link org.openspcoop2.core.config.AccessoDatiAttributeAuthority}
  13693.      *
  13694.      * @param accessoDatiAttributeAuthority Object to be serialized
  13695.      * @return Object to be serialized as String
  13696.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13697.      */
  13698.     public String toString(AccessoDatiAttributeAuthority accessoDatiAttributeAuthority) throws SerializerException {
  13699.         return this.objToXml(AccessoDatiAttributeAuthority.class, accessoDatiAttributeAuthority, false).toString();
  13700.     }
  13701.     /**
  13702.      * Serialize to String the object <var>accessoDatiAttributeAuthority</var> of type {@link org.openspcoop2.core.config.AccessoDatiAttributeAuthority}
  13703.      *
  13704.      * @param accessoDatiAttributeAuthority Object to be serialized
  13705.      * @param prettyPrint if true output the XML with indenting
  13706.      * @return Object to be serialized as String
  13707.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13708.      */
  13709.     public String toString(AccessoDatiAttributeAuthority accessoDatiAttributeAuthority,boolean prettyPrint) throws SerializerException {
  13710.         return this.objToXml(AccessoDatiAttributeAuthority.class, accessoDatiAttributeAuthority, prettyPrint).toString();
  13711.     }
  13712.    
  13713.    
  13714.    
  13715.     /*
  13716.      =================================================================================
  13717.      Object: accesso-dati-autorizzazione
  13718.      =================================================================================
  13719.     */
  13720.    
  13721.     /**
  13722.      * Serialize to file system in <var>fileName</var> the object <var>accessoDatiAutorizzazione</var> of type {@link org.openspcoop2.core.config.AccessoDatiAutorizzazione}
  13723.      *
  13724.      * @param fileName Xml file to serialize the object <var>accessoDatiAutorizzazione</var>
  13725.      * @param accessoDatiAutorizzazione Object to be serialized in xml file <var>fileName</var>
  13726.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13727.      */
  13728.     public void write(String fileName,AccessoDatiAutorizzazione accessoDatiAutorizzazione) throws SerializerException {
  13729.         this.objToXml(fileName, AccessoDatiAutorizzazione.class, accessoDatiAutorizzazione, false);
  13730.     }
  13731.     /**
  13732.      * Serialize to file system in <var>fileName</var> the object <var>accessoDatiAutorizzazione</var> of type {@link org.openspcoop2.core.config.AccessoDatiAutorizzazione}
  13733.      *
  13734.      * @param fileName Xml file to serialize the object <var>accessoDatiAutorizzazione</var>
  13735.      * @param accessoDatiAutorizzazione Object to be serialized in xml file <var>fileName</var>
  13736.      * @param prettyPrint if true output the XML with indenting
  13737.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13738.      */
  13739.     public void write(String fileName,AccessoDatiAutorizzazione accessoDatiAutorizzazione,boolean prettyPrint) throws SerializerException {
  13740.         this.objToXml(fileName, AccessoDatiAutorizzazione.class, accessoDatiAutorizzazione, prettyPrint);
  13741.     }
  13742.    
  13743.     /**
  13744.      * Serialize to file system in <var>file</var> the object <var>accessoDatiAutorizzazione</var> of type {@link org.openspcoop2.core.config.AccessoDatiAutorizzazione}
  13745.      *
  13746.      * @param file Xml file to serialize the object <var>accessoDatiAutorizzazione</var>
  13747.      * @param accessoDatiAutorizzazione Object to be serialized in xml file <var>fileName</var>
  13748.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13749.      */
  13750.     public void write(File file,AccessoDatiAutorizzazione accessoDatiAutorizzazione) throws SerializerException {
  13751.         this.objToXml(file, AccessoDatiAutorizzazione.class, accessoDatiAutorizzazione, false);
  13752.     }
  13753.     /**
  13754.      * Serialize to file system in <var>file</var> the object <var>accessoDatiAutorizzazione</var> of type {@link org.openspcoop2.core.config.AccessoDatiAutorizzazione}
  13755.      *
  13756.      * @param file Xml file to serialize the object <var>accessoDatiAutorizzazione</var>
  13757.      * @param accessoDatiAutorizzazione Object to be serialized in xml file <var>fileName</var>
  13758.      * @param prettyPrint if true output the XML with indenting
  13759.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13760.      */
  13761.     public void write(File file,AccessoDatiAutorizzazione accessoDatiAutorizzazione,boolean prettyPrint) throws SerializerException {
  13762.         this.objToXml(file, AccessoDatiAutorizzazione.class, accessoDatiAutorizzazione, prettyPrint);
  13763.     }
  13764.    
  13765.     /**
  13766.      * Serialize to output stream <var>out</var> the object <var>accessoDatiAutorizzazione</var> of type {@link org.openspcoop2.core.config.AccessoDatiAutorizzazione}
  13767.      *
  13768.      * @param out OutputStream to serialize the object <var>accessoDatiAutorizzazione</var>
  13769.      * @param accessoDatiAutorizzazione Object to be serialized in xml file <var>fileName</var>
  13770.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13771.      */
  13772.     public void write(OutputStream out,AccessoDatiAutorizzazione accessoDatiAutorizzazione) throws SerializerException {
  13773.         this.objToXml(out, AccessoDatiAutorizzazione.class, accessoDatiAutorizzazione, false);
  13774.     }
  13775.     /**
  13776.      * Serialize to output stream <var>out</var> the object <var>accessoDatiAutorizzazione</var> of type {@link org.openspcoop2.core.config.AccessoDatiAutorizzazione}
  13777.      *
  13778.      * @param out OutputStream to serialize the object <var>accessoDatiAutorizzazione</var>
  13779.      * @param accessoDatiAutorizzazione Object to be serialized in xml file <var>fileName</var>
  13780.      * @param prettyPrint if true output the XML with indenting
  13781.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13782.      */
  13783.     public void write(OutputStream out,AccessoDatiAutorizzazione accessoDatiAutorizzazione,boolean prettyPrint) throws SerializerException {
  13784.         this.objToXml(out, AccessoDatiAutorizzazione.class, accessoDatiAutorizzazione, prettyPrint);
  13785.     }
  13786.            
  13787.     /**
  13788.      * Serialize to byte array the object <var>accessoDatiAutorizzazione</var> of type {@link org.openspcoop2.core.config.AccessoDatiAutorizzazione}
  13789.      *
  13790.      * @param accessoDatiAutorizzazione Object to be serialized
  13791.      * @return Object to be serialized in byte array
  13792.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13793.      */
  13794.     public byte[] toByteArray(AccessoDatiAutorizzazione accessoDatiAutorizzazione) throws SerializerException {
  13795.         return this.objToXml(AccessoDatiAutorizzazione.class, accessoDatiAutorizzazione, false).toByteArray();
  13796.     }
  13797.     /**
  13798.      * Serialize to byte array the object <var>accessoDatiAutorizzazione</var> of type {@link org.openspcoop2.core.config.AccessoDatiAutorizzazione}
  13799.      *
  13800.      * @param accessoDatiAutorizzazione Object to be serialized
  13801.      * @param prettyPrint if true output the XML with indenting
  13802.      * @return Object to be serialized in byte array
  13803.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13804.      */
  13805.     public byte[] toByteArray(AccessoDatiAutorizzazione accessoDatiAutorizzazione,boolean prettyPrint) throws SerializerException {
  13806.         return this.objToXml(AccessoDatiAutorizzazione.class, accessoDatiAutorizzazione, prettyPrint).toByteArray();
  13807.     }
  13808.    
  13809.     /**
  13810.      * Serialize to String the object <var>accessoDatiAutorizzazione</var> of type {@link org.openspcoop2.core.config.AccessoDatiAutorizzazione}
  13811.      *
  13812.      * @param accessoDatiAutorizzazione Object to be serialized
  13813.      * @return Object to be serialized as String
  13814.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13815.      */
  13816.     public String toString(AccessoDatiAutorizzazione accessoDatiAutorizzazione) throws SerializerException {
  13817.         return this.objToXml(AccessoDatiAutorizzazione.class, accessoDatiAutorizzazione, false).toString();
  13818.     }
  13819.     /**
  13820.      * Serialize to String the object <var>accessoDatiAutorizzazione</var> of type {@link org.openspcoop2.core.config.AccessoDatiAutorizzazione}
  13821.      *
  13822.      * @param accessoDatiAutorizzazione Object to be serialized
  13823.      * @param prettyPrint if true output the XML with indenting
  13824.      * @return Object to be serialized as String
  13825.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13826.      */
  13827.     public String toString(AccessoDatiAutorizzazione accessoDatiAutorizzazione,boolean prettyPrint) throws SerializerException {
  13828.         return this.objToXml(AccessoDatiAutorizzazione.class, accessoDatiAutorizzazione, prettyPrint).toString();
  13829.     }
  13830.    
  13831.    
  13832.    
  13833.     /*
  13834.      =================================================================================
  13835.      Object: porta-applicativa-servizio
  13836.      =================================================================================
  13837.     */
  13838.    
  13839.     /**
  13840.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativaServizio</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizio}
  13841.      *
  13842.      * @param fileName Xml file to serialize the object <var>portaApplicativaServizio</var>
  13843.      * @param portaApplicativaServizio Object to be serialized in xml file <var>fileName</var>
  13844.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13845.      */
  13846.     public void write(String fileName,PortaApplicativaServizio portaApplicativaServizio) throws SerializerException {
  13847.         this.objToXml(fileName, PortaApplicativaServizio.class, portaApplicativaServizio, false);
  13848.     }
  13849.     /**
  13850.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativaServizio</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizio}
  13851.      *
  13852.      * @param fileName Xml file to serialize the object <var>portaApplicativaServizio</var>
  13853.      * @param portaApplicativaServizio Object to be serialized in xml file <var>fileName</var>
  13854.      * @param prettyPrint if true output the XML with indenting
  13855.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13856.      */
  13857.     public void write(String fileName,PortaApplicativaServizio portaApplicativaServizio,boolean prettyPrint) throws SerializerException {
  13858.         this.objToXml(fileName, PortaApplicativaServizio.class, portaApplicativaServizio, prettyPrint);
  13859.     }
  13860.    
  13861.     /**
  13862.      * Serialize to file system in <var>file</var> the object <var>portaApplicativaServizio</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizio}
  13863.      *
  13864.      * @param file Xml file to serialize the object <var>portaApplicativaServizio</var>
  13865.      * @param portaApplicativaServizio Object to be serialized in xml file <var>fileName</var>
  13866.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13867.      */
  13868.     public void write(File file,PortaApplicativaServizio portaApplicativaServizio) throws SerializerException {
  13869.         this.objToXml(file, PortaApplicativaServizio.class, portaApplicativaServizio, false);
  13870.     }
  13871.     /**
  13872.      * Serialize to file system in <var>file</var> the object <var>portaApplicativaServizio</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizio}
  13873.      *
  13874.      * @param file Xml file to serialize the object <var>portaApplicativaServizio</var>
  13875.      * @param portaApplicativaServizio Object to be serialized in xml file <var>fileName</var>
  13876.      * @param prettyPrint if true output the XML with indenting
  13877.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13878.      */
  13879.     public void write(File file,PortaApplicativaServizio portaApplicativaServizio,boolean prettyPrint) throws SerializerException {
  13880.         this.objToXml(file, PortaApplicativaServizio.class, portaApplicativaServizio, prettyPrint);
  13881.     }
  13882.    
  13883.     /**
  13884.      * Serialize to output stream <var>out</var> the object <var>portaApplicativaServizio</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizio}
  13885.      *
  13886.      * @param out OutputStream to serialize the object <var>portaApplicativaServizio</var>
  13887.      * @param portaApplicativaServizio Object to be serialized in xml file <var>fileName</var>
  13888.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13889.      */
  13890.     public void write(OutputStream out,PortaApplicativaServizio portaApplicativaServizio) throws SerializerException {
  13891.         this.objToXml(out, PortaApplicativaServizio.class, portaApplicativaServizio, false);
  13892.     }
  13893.     /**
  13894.      * Serialize to output stream <var>out</var> the object <var>portaApplicativaServizio</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizio}
  13895.      *
  13896.      * @param out OutputStream to serialize the object <var>portaApplicativaServizio</var>
  13897.      * @param portaApplicativaServizio Object to be serialized in xml file <var>fileName</var>
  13898.      * @param prettyPrint if true output the XML with indenting
  13899.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13900.      */
  13901.     public void write(OutputStream out,PortaApplicativaServizio portaApplicativaServizio,boolean prettyPrint) throws SerializerException {
  13902.         this.objToXml(out, PortaApplicativaServizio.class, portaApplicativaServizio, prettyPrint);
  13903.     }
  13904.            
  13905.     /**
  13906.      * Serialize to byte array the object <var>portaApplicativaServizio</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizio}
  13907.      *
  13908.      * @param portaApplicativaServizio Object to be serialized
  13909.      * @return Object to be serialized in byte array
  13910.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13911.      */
  13912.     public byte[] toByteArray(PortaApplicativaServizio portaApplicativaServizio) throws SerializerException {
  13913.         return this.objToXml(PortaApplicativaServizio.class, portaApplicativaServizio, false).toByteArray();
  13914.     }
  13915.     /**
  13916.      * Serialize to byte array the object <var>portaApplicativaServizio</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizio}
  13917.      *
  13918.      * @param portaApplicativaServizio Object to be serialized
  13919.      * @param prettyPrint if true output the XML with indenting
  13920.      * @return Object to be serialized in byte array
  13921.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13922.      */
  13923.     public byte[] toByteArray(PortaApplicativaServizio portaApplicativaServizio,boolean prettyPrint) throws SerializerException {
  13924.         return this.objToXml(PortaApplicativaServizio.class, portaApplicativaServizio, prettyPrint).toByteArray();
  13925.     }
  13926.    
  13927.     /**
  13928.      * Serialize to String the object <var>portaApplicativaServizio</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizio}
  13929.      *
  13930.      * @param portaApplicativaServizio Object to be serialized
  13931.      * @return Object to be serialized as String
  13932.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13933.      */
  13934.     public String toString(PortaApplicativaServizio portaApplicativaServizio) throws SerializerException {
  13935.         return this.objToXml(PortaApplicativaServizio.class, portaApplicativaServizio, false).toString();
  13936.     }
  13937.     /**
  13938.      * Serialize to String the object <var>portaApplicativaServizio</var> of type {@link org.openspcoop2.core.config.PortaApplicativaServizio}
  13939.      *
  13940.      * @param portaApplicativaServizio Object to be serialized
  13941.      * @param prettyPrint if true output the XML with indenting
  13942.      * @return Object to be serialized as String
  13943.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13944.      */
  13945.     public String toString(PortaApplicativaServizio portaApplicativaServizio,boolean prettyPrint) throws SerializerException {
  13946.         return this.objToXml(PortaApplicativaServizio.class, portaApplicativaServizio, prettyPrint).toString();
  13947.     }
  13948.    
  13949.    
  13950.    
  13951.     /*
  13952.      =================================================================================
  13953.      Object: porta-applicativa-azione
  13954.      =================================================================================
  13955.     */
  13956.    
  13957.     /**
  13958.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativaAzione</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAzione}
  13959.      *
  13960.      * @param fileName Xml file to serialize the object <var>portaApplicativaAzione</var>
  13961.      * @param portaApplicativaAzione Object to be serialized in xml file <var>fileName</var>
  13962.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13963.      */
  13964.     public void write(String fileName,PortaApplicativaAzione portaApplicativaAzione) throws SerializerException {
  13965.         this.objToXml(fileName, PortaApplicativaAzione.class, portaApplicativaAzione, false);
  13966.     }
  13967.     /**
  13968.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativaAzione</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAzione}
  13969.      *
  13970.      * @param fileName Xml file to serialize the object <var>portaApplicativaAzione</var>
  13971.      * @param portaApplicativaAzione Object to be serialized in xml file <var>fileName</var>
  13972.      * @param prettyPrint if true output the XML with indenting
  13973.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13974.      */
  13975.     public void write(String fileName,PortaApplicativaAzione portaApplicativaAzione,boolean prettyPrint) throws SerializerException {
  13976.         this.objToXml(fileName, PortaApplicativaAzione.class, portaApplicativaAzione, prettyPrint);
  13977.     }
  13978.    
  13979.     /**
  13980.      * Serialize to file system in <var>file</var> the object <var>portaApplicativaAzione</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAzione}
  13981.      *
  13982.      * @param file Xml file to serialize the object <var>portaApplicativaAzione</var>
  13983.      * @param portaApplicativaAzione Object to be serialized in xml file <var>fileName</var>
  13984.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13985.      */
  13986.     public void write(File file,PortaApplicativaAzione portaApplicativaAzione) throws SerializerException {
  13987.         this.objToXml(file, PortaApplicativaAzione.class, portaApplicativaAzione, false);
  13988.     }
  13989.     /**
  13990.      * Serialize to file system in <var>file</var> the object <var>portaApplicativaAzione</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAzione}
  13991.      *
  13992.      * @param file Xml file to serialize the object <var>portaApplicativaAzione</var>
  13993.      * @param portaApplicativaAzione Object to be serialized in xml file <var>fileName</var>
  13994.      * @param prettyPrint if true output the XML with indenting
  13995.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  13996.      */
  13997.     public void write(File file,PortaApplicativaAzione portaApplicativaAzione,boolean prettyPrint) throws SerializerException {
  13998.         this.objToXml(file, PortaApplicativaAzione.class, portaApplicativaAzione, prettyPrint);
  13999.     }
  14000.    
  14001.     /**
  14002.      * Serialize to output stream <var>out</var> the object <var>portaApplicativaAzione</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAzione}
  14003.      *
  14004.      * @param out OutputStream to serialize the object <var>portaApplicativaAzione</var>
  14005.      * @param portaApplicativaAzione Object to be serialized in xml file <var>fileName</var>
  14006.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14007.      */
  14008.     public void write(OutputStream out,PortaApplicativaAzione portaApplicativaAzione) throws SerializerException {
  14009.         this.objToXml(out, PortaApplicativaAzione.class, portaApplicativaAzione, false);
  14010.     }
  14011.     /**
  14012.      * Serialize to output stream <var>out</var> the object <var>portaApplicativaAzione</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAzione}
  14013.      *
  14014.      * @param out OutputStream to serialize the object <var>portaApplicativaAzione</var>
  14015.      * @param portaApplicativaAzione Object to be serialized in xml file <var>fileName</var>
  14016.      * @param prettyPrint if true output the XML with indenting
  14017.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14018.      */
  14019.     public void write(OutputStream out,PortaApplicativaAzione portaApplicativaAzione,boolean prettyPrint) throws SerializerException {
  14020.         this.objToXml(out, PortaApplicativaAzione.class, portaApplicativaAzione, prettyPrint);
  14021.     }
  14022.            
  14023.     /**
  14024.      * Serialize to byte array the object <var>portaApplicativaAzione</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAzione}
  14025.      *
  14026.      * @param portaApplicativaAzione Object to be serialized
  14027.      * @return Object to be serialized in byte array
  14028.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14029.      */
  14030.     public byte[] toByteArray(PortaApplicativaAzione portaApplicativaAzione) throws SerializerException {
  14031.         return this.objToXml(PortaApplicativaAzione.class, portaApplicativaAzione, false).toByteArray();
  14032.     }
  14033.     /**
  14034.      * Serialize to byte array the object <var>portaApplicativaAzione</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAzione}
  14035.      *
  14036.      * @param portaApplicativaAzione Object to be serialized
  14037.      * @param prettyPrint if true output the XML with indenting
  14038.      * @return Object to be serialized in byte array
  14039.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14040.      */
  14041.     public byte[] toByteArray(PortaApplicativaAzione portaApplicativaAzione,boolean prettyPrint) throws SerializerException {
  14042.         return this.objToXml(PortaApplicativaAzione.class, portaApplicativaAzione, prettyPrint).toByteArray();
  14043.     }
  14044.    
  14045.     /**
  14046.      * Serialize to String the object <var>portaApplicativaAzione</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAzione}
  14047.      *
  14048.      * @param portaApplicativaAzione Object to be serialized
  14049.      * @return Object to be serialized as String
  14050.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14051.      */
  14052.     public String toString(PortaApplicativaAzione portaApplicativaAzione) throws SerializerException {
  14053.         return this.objToXml(PortaApplicativaAzione.class, portaApplicativaAzione, false).toString();
  14054.     }
  14055.     /**
  14056.      * Serialize to String the object <var>portaApplicativaAzione</var> of type {@link org.openspcoop2.core.config.PortaApplicativaAzione}
  14057.      *
  14058.      * @param portaApplicativaAzione Object to be serialized
  14059.      * @param prettyPrint if true output the XML with indenting
  14060.      * @return Object to be serialized as String
  14061.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14062.      */
  14063.     public String toString(PortaApplicativaAzione portaApplicativaAzione,boolean prettyPrint) throws SerializerException {
  14064.         return this.objToXml(PortaApplicativaAzione.class, portaApplicativaAzione, prettyPrint).toString();
  14065.     }
  14066.    
  14067.    
  14068.    
  14069.     /*
  14070.      =================================================================================
  14071.      Object: porta-applicativa-behaviour
  14072.      =================================================================================
  14073.     */
  14074.    
  14075.     /**
  14076.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativaBehaviour</var> of type {@link org.openspcoop2.core.config.PortaApplicativaBehaviour}
  14077.      *
  14078.      * @param fileName Xml file to serialize the object <var>portaApplicativaBehaviour</var>
  14079.      * @param portaApplicativaBehaviour Object to be serialized in xml file <var>fileName</var>
  14080.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14081.      */
  14082.     public void write(String fileName,PortaApplicativaBehaviour portaApplicativaBehaviour) throws SerializerException {
  14083.         this.objToXml(fileName, PortaApplicativaBehaviour.class, portaApplicativaBehaviour, false);
  14084.     }
  14085.     /**
  14086.      * Serialize to file system in <var>fileName</var> the object <var>portaApplicativaBehaviour</var> of type {@link org.openspcoop2.core.config.PortaApplicativaBehaviour}
  14087.      *
  14088.      * @param fileName Xml file to serialize the object <var>portaApplicativaBehaviour</var>
  14089.      * @param portaApplicativaBehaviour Object to be serialized in xml file <var>fileName</var>
  14090.      * @param prettyPrint if true output the XML with indenting
  14091.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14092.      */
  14093.     public void write(String fileName,PortaApplicativaBehaviour portaApplicativaBehaviour,boolean prettyPrint) throws SerializerException {
  14094.         this.objToXml(fileName, PortaApplicativaBehaviour.class, portaApplicativaBehaviour, prettyPrint);
  14095.     }
  14096.    
  14097.     /**
  14098.      * Serialize to file system in <var>file</var> the object <var>portaApplicativaBehaviour</var> of type {@link org.openspcoop2.core.config.PortaApplicativaBehaviour}
  14099.      *
  14100.      * @param file Xml file to serialize the object <var>portaApplicativaBehaviour</var>
  14101.      * @param portaApplicativaBehaviour Object to be serialized in xml file <var>fileName</var>
  14102.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14103.      */
  14104.     public void write(File file,PortaApplicativaBehaviour portaApplicativaBehaviour) throws SerializerException {
  14105.         this.objToXml(file, PortaApplicativaBehaviour.class, portaApplicativaBehaviour, false);
  14106.     }
  14107.     /**
  14108.      * Serialize to file system in <var>file</var> the object <var>portaApplicativaBehaviour</var> of type {@link org.openspcoop2.core.config.PortaApplicativaBehaviour}
  14109.      *
  14110.      * @param file Xml file to serialize the object <var>portaApplicativaBehaviour</var>
  14111.      * @param portaApplicativaBehaviour Object to be serialized in xml file <var>fileName</var>
  14112.      * @param prettyPrint if true output the XML with indenting
  14113.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14114.      */
  14115.     public void write(File file,PortaApplicativaBehaviour portaApplicativaBehaviour,boolean prettyPrint) throws SerializerException {
  14116.         this.objToXml(file, PortaApplicativaBehaviour.class, portaApplicativaBehaviour, prettyPrint);
  14117.     }
  14118.    
  14119.     /**
  14120.      * Serialize to output stream <var>out</var> the object <var>portaApplicativaBehaviour</var> of type {@link org.openspcoop2.core.config.PortaApplicativaBehaviour}
  14121.      *
  14122.      * @param out OutputStream to serialize the object <var>portaApplicativaBehaviour</var>
  14123.      * @param portaApplicativaBehaviour Object to be serialized in xml file <var>fileName</var>
  14124.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14125.      */
  14126.     public void write(OutputStream out,PortaApplicativaBehaviour portaApplicativaBehaviour) throws SerializerException {
  14127.         this.objToXml(out, PortaApplicativaBehaviour.class, portaApplicativaBehaviour, false);
  14128.     }
  14129.     /**
  14130.      * Serialize to output stream <var>out</var> the object <var>portaApplicativaBehaviour</var> of type {@link org.openspcoop2.core.config.PortaApplicativaBehaviour}
  14131.      *
  14132.      * @param out OutputStream to serialize the object <var>portaApplicativaBehaviour</var>
  14133.      * @param portaApplicativaBehaviour Object to be serialized in xml file <var>fileName</var>
  14134.      * @param prettyPrint if true output the XML with indenting
  14135.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14136.      */
  14137.     public void write(OutputStream out,PortaApplicativaBehaviour portaApplicativaBehaviour,boolean prettyPrint) throws SerializerException {
  14138.         this.objToXml(out, PortaApplicativaBehaviour.class, portaApplicativaBehaviour, prettyPrint);
  14139.     }
  14140.            
  14141.     /**
  14142.      * Serialize to byte array the object <var>portaApplicativaBehaviour</var> of type {@link org.openspcoop2.core.config.PortaApplicativaBehaviour}
  14143.      *
  14144.      * @param portaApplicativaBehaviour Object to be serialized
  14145.      * @return Object to be serialized in byte array
  14146.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14147.      */
  14148.     public byte[] toByteArray(PortaApplicativaBehaviour portaApplicativaBehaviour) throws SerializerException {
  14149.         return this.objToXml(PortaApplicativaBehaviour.class, portaApplicativaBehaviour, false).toByteArray();
  14150.     }
  14151.     /**
  14152.      * Serialize to byte array the object <var>portaApplicativaBehaviour</var> of type {@link org.openspcoop2.core.config.PortaApplicativaBehaviour}
  14153.      *
  14154.      * @param portaApplicativaBehaviour Object to be serialized
  14155.      * @param prettyPrint if true output the XML with indenting
  14156.      * @return Object to be serialized in byte array
  14157.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14158.      */
  14159.     public byte[] toByteArray(PortaApplicativaBehaviour portaApplicativaBehaviour,boolean prettyPrint) throws SerializerException {
  14160.         return this.objToXml(PortaApplicativaBehaviour.class, portaApplicativaBehaviour, prettyPrint).toByteArray();
  14161.     }
  14162.    
  14163.     /**
  14164.      * Serialize to String the object <var>portaApplicativaBehaviour</var> of type {@link org.openspcoop2.core.config.PortaApplicativaBehaviour}
  14165.      *
  14166.      * @param portaApplicativaBehaviour Object to be serialized
  14167.      * @return Object to be serialized as String
  14168.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14169.      */
  14170.     public String toString(PortaApplicativaBehaviour portaApplicativaBehaviour) throws SerializerException {
  14171.         return this.objToXml(PortaApplicativaBehaviour.class, portaApplicativaBehaviour, false).toString();
  14172.     }
  14173.     /**
  14174.      * Serialize to String the object <var>portaApplicativaBehaviour</var> of type {@link org.openspcoop2.core.config.PortaApplicativaBehaviour}
  14175.      *
  14176.      * @param portaApplicativaBehaviour Object to be serialized
  14177.      * @param prettyPrint if true output the XML with indenting
  14178.      * @return Object to be serialized as String
  14179.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14180.      */
  14181.     public String toString(PortaApplicativaBehaviour portaApplicativaBehaviour,boolean prettyPrint) throws SerializerException {
  14182.         return this.objToXml(PortaApplicativaBehaviour.class, portaApplicativaBehaviour, prettyPrint).toString();
  14183.     }
  14184.    
  14185.    
  14186.    
  14187.     /*
  14188.      =================================================================================
  14189.      Object: routing-table
  14190.      =================================================================================
  14191.     */
  14192.    
  14193.     /**
  14194.      * Serialize to file system in <var>fileName</var> the object <var>routingTable</var> of type {@link org.openspcoop2.core.config.RoutingTable}
  14195.      *
  14196.      * @param fileName Xml file to serialize the object <var>routingTable</var>
  14197.      * @param routingTable Object to be serialized in xml file <var>fileName</var>
  14198.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14199.      */
  14200.     public void write(String fileName,RoutingTable routingTable) throws SerializerException {
  14201.         this.objToXml(fileName, RoutingTable.class, routingTable, false);
  14202.     }
  14203.     /**
  14204.      * Serialize to file system in <var>fileName</var> the object <var>routingTable</var> of type {@link org.openspcoop2.core.config.RoutingTable}
  14205.      *
  14206.      * @param fileName Xml file to serialize the object <var>routingTable</var>
  14207.      * @param routingTable Object to be serialized in xml file <var>fileName</var>
  14208.      * @param prettyPrint if true output the XML with indenting
  14209.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14210.      */
  14211.     public void write(String fileName,RoutingTable routingTable,boolean prettyPrint) throws SerializerException {
  14212.         this.objToXml(fileName, RoutingTable.class, routingTable, prettyPrint);
  14213.     }
  14214.    
  14215.     /**
  14216.      * Serialize to file system in <var>file</var> the object <var>routingTable</var> of type {@link org.openspcoop2.core.config.RoutingTable}
  14217.      *
  14218.      * @param file Xml file to serialize the object <var>routingTable</var>
  14219.      * @param routingTable Object to be serialized in xml file <var>fileName</var>
  14220.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14221.      */
  14222.     public void write(File file,RoutingTable routingTable) throws SerializerException {
  14223.         this.objToXml(file, RoutingTable.class, routingTable, false);
  14224.     }
  14225.     /**
  14226.      * Serialize to file system in <var>file</var> the object <var>routingTable</var> of type {@link org.openspcoop2.core.config.RoutingTable}
  14227.      *
  14228.      * @param file Xml file to serialize the object <var>routingTable</var>
  14229.      * @param routingTable Object to be serialized in xml file <var>fileName</var>
  14230.      * @param prettyPrint if true output the XML with indenting
  14231.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14232.      */
  14233.     public void write(File file,RoutingTable routingTable,boolean prettyPrint) throws SerializerException {
  14234.         this.objToXml(file, RoutingTable.class, routingTable, prettyPrint);
  14235.     }
  14236.    
  14237.     /**
  14238.      * Serialize to output stream <var>out</var> the object <var>routingTable</var> of type {@link org.openspcoop2.core.config.RoutingTable}
  14239.      *
  14240.      * @param out OutputStream to serialize the object <var>routingTable</var>
  14241.      * @param routingTable Object to be serialized in xml file <var>fileName</var>
  14242.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14243.      */
  14244.     public void write(OutputStream out,RoutingTable routingTable) throws SerializerException {
  14245.         this.objToXml(out, RoutingTable.class, routingTable, false);
  14246.     }
  14247.     /**
  14248.      * Serialize to output stream <var>out</var> the object <var>routingTable</var> of type {@link org.openspcoop2.core.config.RoutingTable}
  14249.      *
  14250.      * @param out OutputStream to serialize the object <var>routingTable</var>
  14251.      * @param routingTable Object to be serialized in xml file <var>fileName</var>
  14252.      * @param prettyPrint if true output the XML with indenting
  14253.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14254.      */
  14255.     public void write(OutputStream out,RoutingTable routingTable,boolean prettyPrint) throws SerializerException {
  14256.         this.objToXml(out, RoutingTable.class, routingTable, prettyPrint);
  14257.     }
  14258.            
  14259.     /**
  14260.      * Serialize to byte array the object <var>routingTable</var> of type {@link org.openspcoop2.core.config.RoutingTable}
  14261.      *
  14262.      * @param routingTable Object to be serialized
  14263.      * @return Object to be serialized in byte array
  14264.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14265.      */
  14266.     public byte[] toByteArray(RoutingTable routingTable) throws SerializerException {
  14267.         return this.objToXml(RoutingTable.class, routingTable, false).toByteArray();
  14268.     }
  14269.     /**
  14270.      * Serialize to byte array the object <var>routingTable</var> of type {@link org.openspcoop2.core.config.RoutingTable}
  14271.      *
  14272.      * @param routingTable Object to be serialized
  14273.      * @param prettyPrint if true output the XML with indenting
  14274.      * @return Object to be serialized in byte array
  14275.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14276.      */
  14277.     public byte[] toByteArray(RoutingTable routingTable,boolean prettyPrint) throws SerializerException {
  14278.         return this.objToXml(RoutingTable.class, routingTable, prettyPrint).toByteArray();
  14279.     }
  14280.    
  14281.     /**
  14282.      * Serialize to String the object <var>routingTable</var> of type {@link org.openspcoop2.core.config.RoutingTable}
  14283.      *
  14284.      * @param routingTable Object to be serialized
  14285.      * @return Object to be serialized as String
  14286.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14287.      */
  14288.     public String toString(RoutingTable routingTable) throws SerializerException {
  14289.         return this.objToXml(RoutingTable.class, routingTable, false).toString();
  14290.     }
  14291.     /**
  14292.      * Serialize to String the object <var>routingTable</var> of type {@link org.openspcoop2.core.config.RoutingTable}
  14293.      *
  14294.      * @param routingTable Object to be serialized
  14295.      * @param prettyPrint if true output the XML with indenting
  14296.      * @return Object to be serialized as String
  14297.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14298.      */
  14299.     public String toString(RoutingTable routingTable,boolean prettyPrint) throws SerializerException {
  14300.         return this.objToXml(RoutingTable.class, routingTable, prettyPrint).toString();
  14301.     }
  14302.    
  14303.    
  14304.    
  14305.     /*
  14306.      =================================================================================
  14307.      Object: accesso-registro
  14308.      =================================================================================
  14309.     */
  14310.    
  14311.     /**
  14312.      * Serialize to file system in <var>fileName</var> the object <var>accessoRegistro</var> of type {@link org.openspcoop2.core.config.AccessoRegistro}
  14313.      *
  14314.      * @param fileName Xml file to serialize the object <var>accessoRegistro</var>
  14315.      * @param accessoRegistro Object to be serialized in xml file <var>fileName</var>
  14316.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14317.      */
  14318.     public void write(String fileName,AccessoRegistro accessoRegistro) throws SerializerException {
  14319.         this.objToXml(fileName, AccessoRegistro.class, accessoRegistro, false);
  14320.     }
  14321.     /**
  14322.      * Serialize to file system in <var>fileName</var> the object <var>accessoRegistro</var> of type {@link org.openspcoop2.core.config.AccessoRegistro}
  14323.      *
  14324.      * @param fileName Xml file to serialize the object <var>accessoRegistro</var>
  14325.      * @param accessoRegistro Object to be serialized in xml file <var>fileName</var>
  14326.      * @param prettyPrint if true output the XML with indenting
  14327.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14328.      */
  14329.     public void write(String fileName,AccessoRegistro accessoRegistro,boolean prettyPrint) throws SerializerException {
  14330.         this.objToXml(fileName, AccessoRegistro.class, accessoRegistro, prettyPrint);
  14331.     }
  14332.    
  14333.     /**
  14334.      * Serialize to file system in <var>file</var> the object <var>accessoRegistro</var> of type {@link org.openspcoop2.core.config.AccessoRegistro}
  14335.      *
  14336.      * @param file Xml file to serialize the object <var>accessoRegistro</var>
  14337.      * @param accessoRegistro Object to be serialized in xml file <var>fileName</var>
  14338.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14339.      */
  14340.     public void write(File file,AccessoRegistro accessoRegistro) throws SerializerException {
  14341.         this.objToXml(file, AccessoRegistro.class, accessoRegistro, false);
  14342.     }
  14343.     /**
  14344.      * Serialize to file system in <var>file</var> the object <var>accessoRegistro</var> of type {@link org.openspcoop2.core.config.AccessoRegistro}
  14345.      *
  14346.      * @param file Xml file to serialize the object <var>accessoRegistro</var>
  14347.      * @param accessoRegistro Object to be serialized in xml file <var>fileName</var>
  14348.      * @param prettyPrint if true output the XML with indenting
  14349.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14350.      */
  14351.     public void write(File file,AccessoRegistro accessoRegistro,boolean prettyPrint) throws SerializerException {
  14352.         this.objToXml(file, AccessoRegistro.class, accessoRegistro, prettyPrint);
  14353.     }
  14354.    
  14355.     /**
  14356.      * Serialize to output stream <var>out</var> the object <var>accessoRegistro</var> of type {@link org.openspcoop2.core.config.AccessoRegistro}
  14357.      *
  14358.      * @param out OutputStream to serialize the object <var>accessoRegistro</var>
  14359.      * @param accessoRegistro Object to be serialized in xml file <var>fileName</var>
  14360.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14361.      */
  14362.     public void write(OutputStream out,AccessoRegistro accessoRegistro) throws SerializerException {
  14363.         this.objToXml(out, AccessoRegistro.class, accessoRegistro, false);
  14364.     }
  14365.     /**
  14366.      * Serialize to output stream <var>out</var> the object <var>accessoRegistro</var> of type {@link org.openspcoop2.core.config.AccessoRegistro}
  14367.      *
  14368.      * @param out OutputStream to serialize the object <var>accessoRegistro</var>
  14369.      * @param accessoRegistro Object to be serialized in xml file <var>fileName</var>
  14370.      * @param prettyPrint if true output the XML with indenting
  14371.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14372.      */
  14373.     public void write(OutputStream out,AccessoRegistro accessoRegistro,boolean prettyPrint) throws SerializerException {
  14374.         this.objToXml(out, AccessoRegistro.class, accessoRegistro, prettyPrint);
  14375.     }
  14376.            
  14377.     /**
  14378.      * Serialize to byte array the object <var>accessoRegistro</var> of type {@link org.openspcoop2.core.config.AccessoRegistro}
  14379.      *
  14380.      * @param accessoRegistro Object to be serialized
  14381.      * @return Object to be serialized in byte array
  14382.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14383.      */
  14384.     public byte[] toByteArray(AccessoRegistro accessoRegistro) throws SerializerException {
  14385.         return this.objToXml(AccessoRegistro.class, accessoRegistro, false).toByteArray();
  14386.     }
  14387.     /**
  14388.      * Serialize to byte array the object <var>accessoRegistro</var> of type {@link org.openspcoop2.core.config.AccessoRegistro}
  14389.      *
  14390.      * @param accessoRegistro Object to be serialized
  14391.      * @param prettyPrint if true output the XML with indenting
  14392.      * @return Object to be serialized in byte array
  14393.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14394.      */
  14395.     public byte[] toByteArray(AccessoRegistro accessoRegistro,boolean prettyPrint) throws SerializerException {
  14396.         return this.objToXml(AccessoRegistro.class, accessoRegistro, prettyPrint).toByteArray();
  14397.     }
  14398.    
  14399.     /**
  14400.      * Serialize to String the object <var>accessoRegistro</var> of type {@link org.openspcoop2.core.config.AccessoRegistro}
  14401.      *
  14402.      * @param accessoRegistro Object to be serialized
  14403.      * @return Object to be serialized as String
  14404.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14405.      */
  14406.     public String toString(AccessoRegistro accessoRegistro) throws SerializerException {
  14407.         return this.objToXml(AccessoRegistro.class, accessoRegistro, false).toString();
  14408.     }
  14409.     /**
  14410.      * Serialize to String the object <var>accessoRegistro</var> of type {@link org.openspcoop2.core.config.AccessoRegistro}
  14411.      *
  14412.      * @param accessoRegistro Object to be serialized
  14413.      * @param prettyPrint if true output the XML with indenting
  14414.      * @return Object to be serialized as String
  14415.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14416.      */
  14417.     public String toString(AccessoRegistro accessoRegistro,boolean prettyPrint) throws SerializerException {
  14418.         return this.objToXml(AccessoRegistro.class, accessoRegistro, prettyPrint).toString();
  14419.     }
  14420.    
  14421.    
  14422.    
  14423.     /*
  14424.      =================================================================================
  14425.      Object: accesso-dati-autenticazione
  14426.      =================================================================================
  14427.     */
  14428.    
  14429.     /**
  14430.      * Serialize to file system in <var>fileName</var> the object <var>accessoDatiAutenticazione</var> of type {@link org.openspcoop2.core.config.AccessoDatiAutenticazione}
  14431.      *
  14432.      * @param fileName Xml file to serialize the object <var>accessoDatiAutenticazione</var>
  14433.      * @param accessoDatiAutenticazione Object to be serialized in xml file <var>fileName</var>
  14434.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14435.      */
  14436.     public void write(String fileName,AccessoDatiAutenticazione accessoDatiAutenticazione) throws SerializerException {
  14437.         this.objToXml(fileName, AccessoDatiAutenticazione.class, accessoDatiAutenticazione, false);
  14438.     }
  14439.     /**
  14440.      * Serialize to file system in <var>fileName</var> the object <var>accessoDatiAutenticazione</var> of type {@link org.openspcoop2.core.config.AccessoDatiAutenticazione}
  14441.      *
  14442.      * @param fileName Xml file to serialize the object <var>accessoDatiAutenticazione</var>
  14443.      * @param accessoDatiAutenticazione Object to be serialized in xml file <var>fileName</var>
  14444.      * @param prettyPrint if true output the XML with indenting
  14445.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14446.      */
  14447.     public void write(String fileName,AccessoDatiAutenticazione accessoDatiAutenticazione,boolean prettyPrint) throws SerializerException {
  14448.         this.objToXml(fileName, AccessoDatiAutenticazione.class, accessoDatiAutenticazione, prettyPrint);
  14449.     }
  14450.    
  14451.     /**
  14452.      * Serialize to file system in <var>file</var> the object <var>accessoDatiAutenticazione</var> of type {@link org.openspcoop2.core.config.AccessoDatiAutenticazione}
  14453.      *
  14454.      * @param file Xml file to serialize the object <var>accessoDatiAutenticazione</var>
  14455.      * @param accessoDatiAutenticazione Object to be serialized in xml file <var>fileName</var>
  14456.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14457.      */
  14458.     public void write(File file,AccessoDatiAutenticazione accessoDatiAutenticazione) throws SerializerException {
  14459.         this.objToXml(file, AccessoDatiAutenticazione.class, accessoDatiAutenticazione, false);
  14460.     }
  14461.     /**
  14462.      * Serialize to file system in <var>file</var> the object <var>accessoDatiAutenticazione</var> of type {@link org.openspcoop2.core.config.AccessoDatiAutenticazione}
  14463.      *
  14464.      * @param file Xml file to serialize the object <var>accessoDatiAutenticazione</var>
  14465.      * @param accessoDatiAutenticazione Object to be serialized in xml file <var>fileName</var>
  14466.      * @param prettyPrint if true output the XML with indenting
  14467.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14468.      */
  14469.     public void write(File file,AccessoDatiAutenticazione accessoDatiAutenticazione,boolean prettyPrint) throws SerializerException {
  14470.         this.objToXml(file, AccessoDatiAutenticazione.class, accessoDatiAutenticazione, prettyPrint);
  14471.     }
  14472.    
  14473.     /**
  14474.      * Serialize to output stream <var>out</var> the object <var>accessoDatiAutenticazione</var> of type {@link org.openspcoop2.core.config.AccessoDatiAutenticazione}
  14475.      *
  14476.      * @param out OutputStream to serialize the object <var>accessoDatiAutenticazione</var>
  14477.      * @param accessoDatiAutenticazione Object to be serialized in xml file <var>fileName</var>
  14478.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14479.      */
  14480.     public void write(OutputStream out,AccessoDatiAutenticazione accessoDatiAutenticazione) throws SerializerException {
  14481.         this.objToXml(out, AccessoDatiAutenticazione.class, accessoDatiAutenticazione, false);
  14482.     }
  14483.     /**
  14484.      * Serialize to output stream <var>out</var> the object <var>accessoDatiAutenticazione</var> of type {@link org.openspcoop2.core.config.AccessoDatiAutenticazione}
  14485.      *
  14486.      * @param out OutputStream to serialize the object <var>accessoDatiAutenticazione</var>
  14487.      * @param accessoDatiAutenticazione Object to be serialized in xml file <var>fileName</var>
  14488.      * @param prettyPrint if true output the XML with indenting
  14489.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14490.      */
  14491.     public void write(OutputStream out,AccessoDatiAutenticazione accessoDatiAutenticazione,boolean prettyPrint) throws SerializerException {
  14492.         this.objToXml(out, AccessoDatiAutenticazione.class, accessoDatiAutenticazione, prettyPrint);
  14493.     }
  14494.            
  14495.     /**
  14496.      * Serialize to byte array the object <var>accessoDatiAutenticazione</var> of type {@link org.openspcoop2.core.config.AccessoDatiAutenticazione}
  14497.      *
  14498.      * @param accessoDatiAutenticazione Object to be serialized
  14499.      * @return Object to be serialized in byte array
  14500.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14501.      */
  14502.     public byte[] toByteArray(AccessoDatiAutenticazione accessoDatiAutenticazione) throws SerializerException {
  14503.         return this.objToXml(AccessoDatiAutenticazione.class, accessoDatiAutenticazione, false).toByteArray();
  14504.     }
  14505.     /**
  14506.      * Serialize to byte array the object <var>accessoDatiAutenticazione</var> of type {@link org.openspcoop2.core.config.AccessoDatiAutenticazione}
  14507.      *
  14508.      * @param accessoDatiAutenticazione Object to be serialized
  14509.      * @param prettyPrint if true output the XML with indenting
  14510.      * @return Object to be serialized in byte array
  14511.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14512.      */
  14513.     public byte[] toByteArray(AccessoDatiAutenticazione accessoDatiAutenticazione,boolean prettyPrint) throws SerializerException {
  14514.         return this.objToXml(AccessoDatiAutenticazione.class, accessoDatiAutenticazione, prettyPrint).toByteArray();
  14515.     }
  14516.    
  14517.     /**
  14518.      * Serialize to String the object <var>accessoDatiAutenticazione</var> of type {@link org.openspcoop2.core.config.AccessoDatiAutenticazione}
  14519.      *
  14520.      * @param accessoDatiAutenticazione Object to be serialized
  14521.      * @return Object to be serialized as String
  14522.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14523.      */
  14524.     public String toString(AccessoDatiAutenticazione accessoDatiAutenticazione) throws SerializerException {
  14525.         return this.objToXml(AccessoDatiAutenticazione.class, accessoDatiAutenticazione, false).toString();
  14526.     }
  14527.     /**
  14528.      * Serialize to String the object <var>accessoDatiAutenticazione</var> of type {@link org.openspcoop2.core.config.AccessoDatiAutenticazione}
  14529.      *
  14530.      * @param accessoDatiAutenticazione Object to be serialized
  14531.      * @param prettyPrint if true output the XML with indenting
  14532.      * @return Object to be serialized as String
  14533.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14534.      */
  14535.     public String toString(AccessoDatiAutenticazione accessoDatiAutenticazione,boolean prettyPrint) throws SerializerException {
  14536.         return this.objToXml(AccessoDatiAutenticazione.class, accessoDatiAutenticazione, prettyPrint).toString();
  14537.     }
  14538.    
  14539.    
  14540.    
  14541.     /*
  14542.      =================================================================================
  14543.      Object: configurazione-multitenant
  14544.      =================================================================================
  14545.     */
  14546.    
  14547.     /**
  14548.      * Serialize to file system in <var>fileName</var> the object <var>configurazioneMultitenant</var> of type {@link org.openspcoop2.core.config.ConfigurazioneMultitenant}
  14549.      *
  14550.      * @param fileName Xml file to serialize the object <var>configurazioneMultitenant</var>
  14551.      * @param configurazioneMultitenant Object to be serialized in xml file <var>fileName</var>
  14552.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14553.      */
  14554.     public void write(String fileName,ConfigurazioneMultitenant configurazioneMultitenant) throws SerializerException {
  14555.         this.objToXml(fileName, ConfigurazioneMultitenant.class, configurazioneMultitenant, false);
  14556.     }
  14557.     /**
  14558.      * Serialize to file system in <var>fileName</var> the object <var>configurazioneMultitenant</var> of type {@link org.openspcoop2.core.config.ConfigurazioneMultitenant}
  14559.      *
  14560.      * @param fileName Xml file to serialize the object <var>configurazioneMultitenant</var>
  14561.      * @param configurazioneMultitenant Object to be serialized in xml file <var>fileName</var>
  14562.      * @param prettyPrint if true output the XML with indenting
  14563.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14564.      */
  14565.     public void write(String fileName,ConfigurazioneMultitenant configurazioneMultitenant,boolean prettyPrint) throws SerializerException {
  14566.         this.objToXml(fileName, ConfigurazioneMultitenant.class, configurazioneMultitenant, prettyPrint);
  14567.     }
  14568.    
  14569.     /**
  14570.      * Serialize to file system in <var>file</var> the object <var>configurazioneMultitenant</var> of type {@link org.openspcoop2.core.config.ConfigurazioneMultitenant}
  14571.      *
  14572.      * @param file Xml file to serialize the object <var>configurazioneMultitenant</var>
  14573.      * @param configurazioneMultitenant Object to be serialized in xml file <var>fileName</var>
  14574.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14575.      */
  14576.     public void write(File file,ConfigurazioneMultitenant configurazioneMultitenant) throws SerializerException {
  14577.         this.objToXml(file, ConfigurazioneMultitenant.class, configurazioneMultitenant, false);
  14578.     }
  14579.     /**
  14580.      * Serialize to file system in <var>file</var> the object <var>configurazioneMultitenant</var> of type {@link org.openspcoop2.core.config.ConfigurazioneMultitenant}
  14581.      *
  14582.      * @param file Xml file to serialize the object <var>configurazioneMultitenant</var>
  14583.      * @param configurazioneMultitenant Object to be serialized in xml file <var>fileName</var>
  14584.      * @param prettyPrint if true output the XML with indenting
  14585.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14586.      */
  14587.     public void write(File file,ConfigurazioneMultitenant configurazioneMultitenant,boolean prettyPrint) throws SerializerException {
  14588.         this.objToXml(file, ConfigurazioneMultitenant.class, configurazioneMultitenant, prettyPrint);
  14589.     }
  14590.    
  14591.     /**
  14592.      * Serialize to output stream <var>out</var> the object <var>configurazioneMultitenant</var> of type {@link org.openspcoop2.core.config.ConfigurazioneMultitenant}
  14593.      *
  14594.      * @param out OutputStream to serialize the object <var>configurazioneMultitenant</var>
  14595.      * @param configurazioneMultitenant Object to be serialized in xml file <var>fileName</var>
  14596.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14597.      */
  14598.     public void write(OutputStream out,ConfigurazioneMultitenant configurazioneMultitenant) throws SerializerException {
  14599.         this.objToXml(out, ConfigurazioneMultitenant.class, configurazioneMultitenant, false);
  14600.     }
  14601.     /**
  14602.      * Serialize to output stream <var>out</var> the object <var>configurazioneMultitenant</var> of type {@link org.openspcoop2.core.config.ConfigurazioneMultitenant}
  14603.      *
  14604.      * @param out OutputStream to serialize the object <var>configurazioneMultitenant</var>
  14605.      * @param configurazioneMultitenant Object to be serialized in xml file <var>fileName</var>
  14606.      * @param prettyPrint if true output the XML with indenting
  14607.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14608.      */
  14609.     public void write(OutputStream out,ConfigurazioneMultitenant configurazioneMultitenant,boolean prettyPrint) throws SerializerException {
  14610.         this.objToXml(out, ConfigurazioneMultitenant.class, configurazioneMultitenant, prettyPrint);
  14611.     }
  14612.            
  14613.     /**
  14614.      * Serialize to byte array the object <var>configurazioneMultitenant</var> of type {@link org.openspcoop2.core.config.ConfigurazioneMultitenant}
  14615.      *
  14616.      * @param configurazioneMultitenant Object to be serialized
  14617.      * @return Object to be serialized in byte array
  14618.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14619.      */
  14620.     public byte[] toByteArray(ConfigurazioneMultitenant configurazioneMultitenant) throws SerializerException {
  14621.         return this.objToXml(ConfigurazioneMultitenant.class, configurazioneMultitenant, false).toByteArray();
  14622.     }
  14623.     /**
  14624.      * Serialize to byte array the object <var>configurazioneMultitenant</var> of type {@link org.openspcoop2.core.config.ConfigurazioneMultitenant}
  14625.      *
  14626.      * @param configurazioneMultitenant Object to be serialized
  14627.      * @param prettyPrint if true output the XML with indenting
  14628.      * @return Object to be serialized in byte array
  14629.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14630.      */
  14631.     public byte[] toByteArray(ConfigurazioneMultitenant configurazioneMultitenant,boolean prettyPrint) throws SerializerException {
  14632.         return this.objToXml(ConfigurazioneMultitenant.class, configurazioneMultitenant, prettyPrint).toByteArray();
  14633.     }
  14634.    
  14635.     /**
  14636.      * Serialize to String the object <var>configurazioneMultitenant</var> of type {@link org.openspcoop2.core.config.ConfigurazioneMultitenant}
  14637.      *
  14638.      * @param configurazioneMultitenant Object to be serialized
  14639.      * @return Object to be serialized as String
  14640.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14641.      */
  14642.     public String toString(ConfigurazioneMultitenant configurazioneMultitenant) throws SerializerException {
  14643.         return this.objToXml(ConfigurazioneMultitenant.class, configurazioneMultitenant, false).toString();
  14644.     }
  14645.     /**
  14646.      * Serialize to String the object <var>configurazioneMultitenant</var> of type {@link org.openspcoop2.core.config.ConfigurazioneMultitenant}
  14647.      *
  14648.      * @param configurazioneMultitenant Object to be serialized
  14649.      * @param prettyPrint if true output the XML with indenting
  14650.      * @return Object to be serialized as String
  14651.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14652.      */
  14653.     public String toString(ConfigurazioneMultitenant configurazioneMultitenant,boolean prettyPrint) throws SerializerException {
  14654.         return this.objToXml(ConfigurazioneMultitenant.class, configurazioneMultitenant, prettyPrint).toString();
  14655.     }
  14656.    
  14657.    
  14658.    
  14659.     /*
  14660.      =================================================================================
  14661.      Object: configurazione-url-invocazione
  14662.      =================================================================================
  14663.     */
  14664.    
  14665.     /**
  14666.      * Serialize to file system in <var>fileName</var> the object <var>configurazioneUrlInvocazione</var> of type {@link org.openspcoop2.core.config.ConfigurazioneUrlInvocazione}
  14667.      *
  14668.      * @param fileName Xml file to serialize the object <var>configurazioneUrlInvocazione</var>
  14669.      * @param configurazioneUrlInvocazione Object to be serialized in xml file <var>fileName</var>
  14670.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14671.      */
  14672.     public void write(String fileName,ConfigurazioneUrlInvocazione configurazioneUrlInvocazione) throws SerializerException {
  14673.         this.objToXml(fileName, ConfigurazioneUrlInvocazione.class, configurazioneUrlInvocazione, false);
  14674.     }
  14675.     /**
  14676.      * Serialize to file system in <var>fileName</var> the object <var>configurazioneUrlInvocazione</var> of type {@link org.openspcoop2.core.config.ConfigurazioneUrlInvocazione}
  14677.      *
  14678.      * @param fileName Xml file to serialize the object <var>configurazioneUrlInvocazione</var>
  14679.      * @param configurazioneUrlInvocazione Object to be serialized in xml file <var>fileName</var>
  14680.      * @param prettyPrint if true output the XML with indenting
  14681.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14682.      */
  14683.     public void write(String fileName,ConfigurazioneUrlInvocazione configurazioneUrlInvocazione,boolean prettyPrint) throws SerializerException {
  14684.         this.objToXml(fileName, ConfigurazioneUrlInvocazione.class, configurazioneUrlInvocazione, prettyPrint);
  14685.     }
  14686.    
  14687.     /**
  14688.      * Serialize to file system in <var>file</var> the object <var>configurazioneUrlInvocazione</var> of type {@link org.openspcoop2.core.config.ConfigurazioneUrlInvocazione}
  14689.      *
  14690.      * @param file Xml file to serialize the object <var>configurazioneUrlInvocazione</var>
  14691.      * @param configurazioneUrlInvocazione Object to be serialized in xml file <var>fileName</var>
  14692.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14693.      */
  14694.     public void write(File file,ConfigurazioneUrlInvocazione configurazioneUrlInvocazione) throws SerializerException {
  14695.         this.objToXml(file, ConfigurazioneUrlInvocazione.class, configurazioneUrlInvocazione, false);
  14696.     }
  14697.     /**
  14698.      * Serialize to file system in <var>file</var> the object <var>configurazioneUrlInvocazione</var> of type {@link org.openspcoop2.core.config.ConfigurazioneUrlInvocazione}
  14699.      *
  14700.      * @param file Xml file to serialize the object <var>configurazioneUrlInvocazione</var>
  14701.      * @param configurazioneUrlInvocazione Object to be serialized in xml file <var>fileName</var>
  14702.      * @param prettyPrint if true output the XML with indenting
  14703.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14704.      */
  14705.     public void write(File file,ConfigurazioneUrlInvocazione configurazioneUrlInvocazione,boolean prettyPrint) throws SerializerException {
  14706.         this.objToXml(file, ConfigurazioneUrlInvocazione.class, configurazioneUrlInvocazione, prettyPrint);
  14707.     }
  14708.    
  14709.     /**
  14710.      * Serialize to output stream <var>out</var> the object <var>configurazioneUrlInvocazione</var> of type {@link org.openspcoop2.core.config.ConfigurazioneUrlInvocazione}
  14711.      *
  14712.      * @param out OutputStream to serialize the object <var>configurazioneUrlInvocazione</var>
  14713.      * @param configurazioneUrlInvocazione Object to be serialized in xml file <var>fileName</var>
  14714.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14715.      */
  14716.     public void write(OutputStream out,ConfigurazioneUrlInvocazione configurazioneUrlInvocazione) throws SerializerException {
  14717.         this.objToXml(out, ConfigurazioneUrlInvocazione.class, configurazioneUrlInvocazione, false);
  14718.     }
  14719.     /**
  14720.      * Serialize to output stream <var>out</var> the object <var>configurazioneUrlInvocazione</var> of type {@link org.openspcoop2.core.config.ConfigurazioneUrlInvocazione}
  14721.      *
  14722.      * @param out OutputStream to serialize the object <var>configurazioneUrlInvocazione</var>
  14723.      * @param configurazioneUrlInvocazione Object to be serialized in xml file <var>fileName</var>
  14724.      * @param prettyPrint if true output the XML with indenting
  14725.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14726.      */
  14727.     public void write(OutputStream out,ConfigurazioneUrlInvocazione configurazioneUrlInvocazione,boolean prettyPrint) throws SerializerException {
  14728.         this.objToXml(out, ConfigurazioneUrlInvocazione.class, configurazioneUrlInvocazione, prettyPrint);
  14729.     }
  14730.            
  14731.     /**
  14732.      * Serialize to byte array the object <var>configurazioneUrlInvocazione</var> of type {@link org.openspcoop2.core.config.ConfigurazioneUrlInvocazione}
  14733.      *
  14734.      * @param configurazioneUrlInvocazione Object to be serialized
  14735.      * @return Object to be serialized in byte array
  14736.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14737.      */
  14738.     public byte[] toByteArray(ConfigurazioneUrlInvocazione configurazioneUrlInvocazione) throws SerializerException {
  14739.         return this.objToXml(ConfigurazioneUrlInvocazione.class, configurazioneUrlInvocazione, false).toByteArray();
  14740.     }
  14741.     /**
  14742.      * Serialize to byte array the object <var>configurazioneUrlInvocazione</var> of type {@link org.openspcoop2.core.config.ConfigurazioneUrlInvocazione}
  14743.      *
  14744.      * @param configurazioneUrlInvocazione Object to be serialized
  14745.      * @param prettyPrint if true output the XML with indenting
  14746.      * @return Object to be serialized in byte array
  14747.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14748.      */
  14749.     public byte[] toByteArray(ConfigurazioneUrlInvocazione configurazioneUrlInvocazione,boolean prettyPrint) throws SerializerException {
  14750.         return this.objToXml(ConfigurazioneUrlInvocazione.class, configurazioneUrlInvocazione, prettyPrint).toByteArray();
  14751.     }
  14752.    
  14753.     /**
  14754.      * Serialize to String the object <var>configurazioneUrlInvocazione</var> of type {@link org.openspcoop2.core.config.ConfigurazioneUrlInvocazione}
  14755.      *
  14756.      * @param configurazioneUrlInvocazione Object to be serialized
  14757.      * @return Object to be serialized as String
  14758.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14759.      */
  14760.     public String toString(ConfigurazioneUrlInvocazione configurazioneUrlInvocazione) throws SerializerException {
  14761.         return this.objToXml(ConfigurazioneUrlInvocazione.class, configurazioneUrlInvocazione, false).toString();
  14762.     }
  14763.     /**
  14764.      * Serialize to String the object <var>configurazioneUrlInvocazione</var> of type {@link org.openspcoop2.core.config.ConfigurazioneUrlInvocazione}
  14765.      *
  14766.      * @param configurazioneUrlInvocazione Object to be serialized
  14767.      * @param prettyPrint if true output the XML with indenting
  14768.      * @return Object to be serialized as String
  14769.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14770.      */
  14771.     public String toString(ConfigurazioneUrlInvocazione configurazioneUrlInvocazione,boolean prettyPrint) throws SerializerException {
  14772.         return this.objToXml(ConfigurazioneUrlInvocazione.class, configurazioneUrlInvocazione, prettyPrint).toString();
  14773.     }
  14774.    
  14775.    
  14776.    
  14777.     /*
  14778.      =================================================================================
  14779.      Object: validazione-buste
  14780.      =================================================================================
  14781.     */
  14782.    
  14783.     /**
  14784.      * Serialize to file system in <var>fileName</var> the object <var>validazioneBuste</var> of type {@link org.openspcoop2.core.config.ValidazioneBuste}
  14785.      *
  14786.      * @param fileName Xml file to serialize the object <var>validazioneBuste</var>
  14787.      * @param validazioneBuste Object to be serialized in xml file <var>fileName</var>
  14788.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14789.      */
  14790.     public void write(String fileName,ValidazioneBuste validazioneBuste) throws SerializerException {
  14791.         this.objToXml(fileName, ValidazioneBuste.class, validazioneBuste, false);
  14792.     }
  14793.     /**
  14794.      * Serialize to file system in <var>fileName</var> the object <var>validazioneBuste</var> of type {@link org.openspcoop2.core.config.ValidazioneBuste}
  14795.      *
  14796.      * @param fileName Xml file to serialize the object <var>validazioneBuste</var>
  14797.      * @param validazioneBuste Object to be serialized in xml file <var>fileName</var>
  14798.      * @param prettyPrint if true output the XML with indenting
  14799.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14800.      */
  14801.     public void write(String fileName,ValidazioneBuste validazioneBuste,boolean prettyPrint) throws SerializerException {
  14802.         this.objToXml(fileName, ValidazioneBuste.class, validazioneBuste, prettyPrint);
  14803.     }
  14804.    
  14805.     /**
  14806.      * Serialize to file system in <var>file</var> the object <var>validazioneBuste</var> of type {@link org.openspcoop2.core.config.ValidazioneBuste}
  14807.      *
  14808.      * @param file Xml file to serialize the object <var>validazioneBuste</var>
  14809.      * @param validazioneBuste Object to be serialized in xml file <var>fileName</var>
  14810.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14811.      */
  14812.     public void write(File file,ValidazioneBuste validazioneBuste) throws SerializerException {
  14813.         this.objToXml(file, ValidazioneBuste.class, validazioneBuste, false);
  14814.     }
  14815.     /**
  14816.      * Serialize to file system in <var>file</var> the object <var>validazioneBuste</var> of type {@link org.openspcoop2.core.config.ValidazioneBuste}
  14817.      *
  14818.      * @param file Xml file to serialize the object <var>validazioneBuste</var>
  14819.      * @param validazioneBuste Object to be serialized in xml file <var>fileName</var>
  14820.      * @param prettyPrint if true output the XML with indenting
  14821.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14822.      */
  14823.     public void write(File file,ValidazioneBuste validazioneBuste,boolean prettyPrint) throws SerializerException {
  14824.         this.objToXml(file, ValidazioneBuste.class, validazioneBuste, prettyPrint);
  14825.     }
  14826.    
  14827.     /**
  14828.      * Serialize to output stream <var>out</var> the object <var>validazioneBuste</var> of type {@link org.openspcoop2.core.config.ValidazioneBuste}
  14829.      *
  14830.      * @param out OutputStream to serialize the object <var>validazioneBuste</var>
  14831.      * @param validazioneBuste Object to be serialized in xml file <var>fileName</var>
  14832.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14833.      */
  14834.     public void write(OutputStream out,ValidazioneBuste validazioneBuste) throws SerializerException {
  14835.         this.objToXml(out, ValidazioneBuste.class, validazioneBuste, false);
  14836.     }
  14837.     /**
  14838.      * Serialize to output stream <var>out</var> the object <var>validazioneBuste</var> of type {@link org.openspcoop2.core.config.ValidazioneBuste}
  14839.      *
  14840.      * @param out OutputStream to serialize the object <var>validazioneBuste</var>
  14841.      * @param validazioneBuste Object to be serialized in xml file <var>fileName</var>
  14842.      * @param prettyPrint if true output the XML with indenting
  14843.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14844.      */
  14845.     public void write(OutputStream out,ValidazioneBuste validazioneBuste,boolean prettyPrint) throws SerializerException {
  14846.         this.objToXml(out, ValidazioneBuste.class, validazioneBuste, prettyPrint);
  14847.     }
  14848.            
  14849.     /**
  14850.      * Serialize to byte array the object <var>validazioneBuste</var> of type {@link org.openspcoop2.core.config.ValidazioneBuste}
  14851.      *
  14852.      * @param validazioneBuste Object to be serialized
  14853.      * @return Object to be serialized in byte array
  14854.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14855.      */
  14856.     public byte[] toByteArray(ValidazioneBuste validazioneBuste) throws SerializerException {
  14857.         return this.objToXml(ValidazioneBuste.class, validazioneBuste, false).toByteArray();
  14858.     }
  14859.     /**
  14860.      * Serialize to byte array the object <var>validazioneBuste</var> of type {@link org.openspcoop2.core.config.ValidazioneBuste}
  14861.      *
  14862.      * @param validazioneBuste Object to be serialized
  14863.      * @param prettyPrint if true output the XML with indenting
  14864.      * @return Object to be serialized in byte array
  14865.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14866.      */
  14867.     public byte[] toByteArray(ValidazioneBuste validazioneBuste,boolean prettyPrint) throws SerializerException {
  14868.         return this.objToXml(ValidazioneBuste.class, validazioneBuste, prettyPrint).toByteArray();
  14869.     }
  14870.    
  14871.     /**
  14872.      * Serialize to String the object <var>validazioneBuste</var> of type {@link org.openspcoop2.core.config.ValidazioneBuste}
  14873.      *
  14874.      * @param validazioneBuste Object to be serialized
  14875.      * @return Object to be serialized as String
  14876.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14877.      */
  14878.     public String toString(ValidazioneBuste validazioneBuste) throws SerializerException {
  14879.         return this.objToXml(ValidazioneBuste.class, validazioneBuste, false).toString();
  14880.     }
  14881.     /**
  14882.      * Serialize to String the object <var>validazioneBuste</var> of type {@link org.openspcoop2.core.config.ValidazioneBuste}
  14883.      *
  14884.      * @param validazioneBuste Object to be serialized
  14885.      * @param prettyPrint if true output the XML with indenting
  14886.      * @return Object to be serialized as String
  14887.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14888.      */
  14889.     public String toString(ValidazioneBuste validazioneBuste,boolean prettyPrint) throws SerializerException {
  14890.         return this.objToXml(ValidazioneBuste.class, validazioneBuste, prettyPrint).toString();
  14891.     }
  14892.    
  14893.    
  14894.    
  14895.     /*
  14896.      =================================================================================
  14897.      Object: indirizzo-risposta
  14898.      =================================================================================
  14899.     */
  14900.    
  14901.     /**
  14902.      * Serialize to file system in <var>fileName</var> the object <var>indirizzoRisposta</var> of type {@link org.openspcoop2.core.config.IndirizzoRisposta}
  14903.      *
  14904.      * @param fileName Xml file to serialize the object <var>indirizzoRisposta</var>
  14905.      * @param indirizzoRisposta Object to be serialized in xml file <var>fileName</var>
  14906.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14907.      */
  14908.     public void write(String fileName,IndirizzoRisposta indirizzoRisposta) throws SerializerException {
  14909.         this.objToXml(fileName, IndirizzoRisposta.class, indirizzoRisposta, false);
  14910.     }
  14911.     /**
  14912.      * Serialize to file system in <var>fileName</var> the object <var>indirizzoRisposta</var> of type {@link org.openspcoop2.core.config.IndirizzoRisposta}
  14913.      *
  14914.      * @param fileName Xml file to serialize the object <var>indirizzoRisposta</var>
  14915.      * @param indirizzoRisposta Object to be serialized in xml file <var>fileName</var>
  14916.      * @param prettyPrint if true output the XML with indenting
  14917.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14918.      */
  14919.     public void write(String fileName,IndirizzoRisposta indirizzoRisposta,boolean prettyPrint) throws SerializerException {
  14920.         this.objToXml(fileName, IndirizzoRisposta.class, indirizzoRisposta, prettyPrint);
  14921.     }
  14922.    
  14923.     /**
  14924.      * Serialize to file system in <var>file</var> the object <var>indirizzoRisposta</var> of type {@link org.openspcoop2.core.config.IndirizzoRisposta}
  14925.      *
  14926.      * @param file Xml file to serialize the object <var>indirizzoRisposta</var>
  14927.      * @param indirizzoRisposta Object to be serialized in xml file <var>fileName</var>
  14928.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14929.      */
  14930.     public void write(File file,IndirizzoRisposta indirizzoRisposta) throws SerializerException {
  14931.         this.objToXml(file, IndirizzoRisposta.class, indirizzoRisposta, false);
  14932.     }
  14933.     /**
  14934.      * Serialize to file system in <var>file</var> the object <var>indirizzoRisposta</var> of type {@link org.openspcoop2.core.config.IndirizzoRisposta}
  14935.      *
  14936.      * @param file Xml file to serialize the object <var>indirizzoRisposta</var>
  14937.      * @param indirizzoRisposta Object to be serialized in xml file <var>fileName</var>
  14938.      * @param prettyPrint if true output the XML with indenting
  14939.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14940.      */
  14941.     public void write(File file,IndirizzoRisposta indirizzoRisposta,boolean prettyPrint) throws SerializerException {
  14942.         this.objToXml(file, IndirizzoRisposta.class, indirizzoRisposta, prettyPrint);
  14943.     }
  14944.    
  14945.     /**
  14946.      * Serialize to output stream <var>out</var> the object <var>indirizzoRisposta</var> of type {@link org.openspcoop2.core.config.IndirizzoRisposta}
  14947.      *
  14948.      * @param out OutputStream to serialize the object <var>indirizzoRisposta</var>
  14949.      * @param indirizzoRisposta Object to be serialized in xml file <var>fileName</var>
  14950.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14951.      */
  14952.     public void write(OutputStream out,IndirizzoRisposta indirizzoRisposta) throws SerializerException {
  14953.         this.objToXml(out, IndirizzoRisposta.class, indirizzoRisposta, false);
  14954.     }
  14955.     /**
  14956.      * Serialize to output stream <var>out</var> the object <var>indirizzoRisposta</var> of type {@link org.openspcoop2.core.config.IndirizzoRisposta}
  14957.      *
  14958.      * @param out OutputStream to serialize the object <var>indirizzoRisposta</var>
  14959.      * @param indirizzoRisposta Object to be serialized in xml file <var>fileName</var>
  14960.      * @param prettyPrint if true output the XML with indenting
  14961.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14962.      */
  14963.     public void write(OutputStream out,IndirizzoRisposta indirizzoRisposta,boolean prettyPrint) throws SerializerException {
  14964.         this.objToXml(out, IndirizzoRisposta.class, indirizzoRisposta, prettyPrint);
  14965.     }
  14966.            
  14967.     /**
  14968.      * Serialize to byte array the object <var>indirizzoRisposta</var> of type {@link org.openspcoop2.core.config.IndirizzoRisposta}
  14969.      *
  14970.      * @param indirizzoRisposta Object to be serialized
  14971.      * @return Object to be serialized in byte array
  14972.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14973.      */
  14974.     public byte[] toByteArray(IndirizzoRisposta indirizzoRisposta) throws SerializerException {
  14975.         return this.objToXml(IndirizzoRisposta.class, indirizzoRisposta, false).toByteArray();
  14976.     }
  14977.     /**
  14978.      * Serialize to byte array the object <var>indirizzoRisposta</var> of type {@link org.openspcoop2.core.config.IndirizzoRisposta}
  14979.      *
  14980.      * @param indirizzoRisposta Object to be serialized
  14981.      * @param prettyPrint if true output the XML with indenting
  14982.      * @return Object to be serialized in byte array
  14983.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14984.      */
  14985.     public byte[] toByteArray(IndirizzoRisposta indirizzoRisposta,boolean prettyPrint) throws SerializerException {
  14986.         return this.objToXml(IndirizzoRisposta.class, indirizzoRisposta, prettyPrint).toByteArray();
  14987.     }
  14988.    
  14989.     /**
  14990.      * Serialize to String the object <var>indirizzoRisposta</var> of type {@link org.openspcoop2.core.config.IndirizzoRisposta}
  14991.      *
  14992.      * @param indirizzoRisposta Object to be serialized
  14993.      * @return Object to be serialized as String
  14994.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  14995.      */
  14996.     public String toString(IndirizzoRisposta indirizzoRisposta) throws SerializerException {
  14997.         return this.objToXml(IndirizzoRisposta.class, indirizzoRisposta, false).toString();
  14998.     }
  14999.     /**
  15000.      * Serialize to String the object <var>indirizzoRisposta</var> of type {@link org.openspcoop2.core.config.IndirizzoRisposta}
  15001.      *
  15002.      * @param indirizzoRisposta Object to be serialized
  15003.      * @param prettyPrint if true output the XML with indenting
  15004.      * @return Object to be serialized as String
  15005.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15006.      */
  15007.     public String toString(IndirizzoRisposta indirizzoRisposta,boolean prettyPrint) throws SerializerException {
  15008.         return this.objToXml(IndirizzoRisposta.class, indirizzoRisposta, prettyPrint).toString();
  15009.     }
  15010.    
  15011.    
  15012.    
  15013.     /*
  15014.      =================================================================================
  15015.      Object: attachments
  15016.      =================================================================================
  15017.     */
  15018.    
  15019.     /**
  15020.      * Serialize to file system in <var>fileName</var> the object <var>attachments</var> of type {@link org.openspcoop2.core.config.Attachments}
  15021.      *
  15022.      * @param fileName Xml file to serialize the object <var>attachments</var>
  15023.      * @param attachments Object to be serialized in xml file <var>fileName</var>
  15024.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15025.      */
  15026.     public void write(String fileName,Attachments attachments) throws SerializerException {
  15027.         this.objToXml(fileName, Attachments.class, attachments, false);
  15028.     }
  15029.     /**
  15030.      * Serialize to file system in <var>fileName</var> the object <var>attachments</var> of type {@link org.openspcoop2.core.config.Attachments}
  15031.      *
  15032.      * @param fileName Xml file to serialize the object <var>attachments</var>
  15033.      * @param attachments Object to be serialized in xml file <var>fileName</var>
  15034.      * @param prettyPrint if true output the XML with indenting
  15035.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15036.      */
  15037.     public void write(String fileName,Attachments attachments,boolean prettyPrint) throws SerializerException {
  15038.         this.objToXml(fileName, Attachments.class, attachments, prettyPrint);
  15039.     }
  15040.    
  15041.     /**
  15042.      * Serialize to file system in <var>file</var> the object <var>attachments</var> of type {@link org.openspcoop2.core.config.Attachments}
  15043.      *
  15044.      * @param file Xml file to serialize the object <var>attachments</var>
  15045.      * @param attachments Object to be serialized in xml file <var>fileName</var>
  15046.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15047.      */
  15048.     public void write(File file,Attachments attachments) throws SerializerException {
  15049.         this.objToXml(file, Attachments.class, attachments, false);
  15050.     }
  15051.     /**
  15052.      * Serialize to file system in <var>file</var> the object <var>attachments</var> of type {@link org.openspcoop2.core.config.Attachments}
  15053.      *
  15054.      * @param file Xml file to serialize the object <var>attachments</var>
  15055.      * @param attachments Object to be serialized in xml file <var>fileName</var>
  15056.      * @param prettyPrint if true output the XML with indenting
  15057.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15058.      */
  15059.     public void write(File file,Attachments attachments,boolean prettyPrint) throws SerializerException {
  15060.         this.objToXml(file, Attachments.class, attachments, prettyPrint);
  15061.     }
  15062.    
  15063.     /**
  15064.      * Serialize to output stream <var>out</var> the object <var>attachments</var> of type {@link org.openspcoop2.core.config.Attachments}
  15065.      *
  15066.      * @param out OutputStream to serialize the object <var>attachments</var>
  15067.      * @param attachments Object to be serialized in xml file <var>fileName</var>
  15068.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15069.      */
  15070.     public void write(OutputStream out,Attachments attachments) throws SerializerException {
  15071.         this.objToXml(out, Attachments.class, attachments, false);
  15072.     }
  15073.     /**
  15074.      * Serialize to output stream <var>out</var> the object <var>attachments</var> of type {@link org.openspcoop2.core.config.Attachments}
  15075.      *
  15076.      * @param out OutputStream to serialize the object <var>attachments</var>
  15077.      * @param attachments Object to be serialized in xml file <var>fileName</var>
  15078.      * @param prettyPrint if true output the XML with indenting
  15079.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15080.      */
  15081.     public void write(OutputStream out,Attachments attachments,boolean prettyPrint) throws SerializerException {
  15082.         this.objToXml(out, Attachments.class, attachments, prettyPrint);
  15083.     }
  15084.            
  15085.     /**
  15086.      * Serialize to byte array the object <var>attachments</var> of type {@link org.openspcoop2.core.config.Attachments}
  15087.      *
  15088.      * @param attachments Object to be serialized
  15089.      * @return Object to be serialized in byte array
  15090.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15091.      */
  15092.     public byte[] toByteArray(Attachments attachments) throws SerializerException {
  15093.         return this.objToXml(Attachments.class, attachments, false).toByteArray();
  15094.     }
  15095.     /**
  15096.      * Serialize to byte array the object <var>attachments</var> of type {@link org.openspcoop2.core.config.Attachments}
  15097.      *
  15098.      * @param attachments Object to be serialized
  15099.      * @param prettyPrint if true output the XML with indenting
  15100.      * @return Object to be serialized in byte array
  15101.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15102.      */
  15103.     public byte[] toByteArray(Attachments attachments,boolean prettyPrint) throws SerializerException {
  15104.         return this.objToXml(Attachments.class, attachments, prettyPrint).toByteArray();
  15105.     }
  15106.    
  15107.     /**
  15108.      * Serialize to String the object <var>attachments</var> of type {@link org.openspcoop2.core.config.Attachments}
  15109.      *
  15110.      * @param attachments Object to be serialized
  15111.      * @return Object to be serialized as String
  15112.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15113.      */
  15114.     public String toString(Attachments attachments) throws SerializerException {
  15115.         return this.objToXml(Attachments.class, attachments, false).toString();
  15116.     }
  15117.     /**
  15118.      * Serialize to String the object <var>attachments</var> of type {@link org.openspcoop2.core.config.Attachments}
  15119.      *
  15120.      * @param attachments Object to be serialized
  15121.      * @param prettyPrint if true output the XML with indenting
  15122.      * @return Object to be serialized as String
  15123.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15124.      */
  15125.     public String toString(Attachments attachments,boolean prettyPrint) throws SerializerException {
  15126.         return this.objToXml(Attachments.class, attachments, prettyPrint).toString();
  15127.     }
  15128.    
  15129.    
  15130.    
  15131.     /*
  15132.      =================================================================================
  15133.      Object: risposte
  15134.      =================================================================================
  15135.     */
  15136.    
  15137.     /**
  15138.      * Serialize to file system in <var>fileName</var> the object <var>risposte</var> of type {@link org.openspcoop2.core.config.Risposte}
  15139.      *
  15140.      * @param fileName Xml file to serialize the object <var>risposte</var>
  15141.      * @param risposte Object to be serialized in xml file <var>fileName</var>
  15142.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15143.      */
  15144.     public void write(String fileName,Risposte risposte) throws SerializerException {
  15145.         this.objToXml(fileName, Risposte.class, risposte, false);
  15146.     }
  15147.     /**
  15148.      * Serialize to file system in <var>fileName</var> the object <var>risposte</var> of type {@link org.openspcoop2.core.config.Risposte}
  15149.      *
  15150.      * @param fileName Xml file to serialize the object <var>risposte</var>
  15151.      * @param risposte Object to be serialized in xml file <var>fileName</var>
  15152.      * @param prettyPrint if true output the XML with indenting
  15153.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15154.      */
  15155.     public void write(String fileName,Risposte risposte,boolean prettyPrint) throws SerializerException {
  15156.         this.objToXml(fileName, Risposte.class, risposte, prettyPrint);
  15157.     }
  15158.    
  15159.     /**
  15160.      * Serialize to file system in <var>file</var> the object <var>risposte</var> of type {@link org.openspcoop2.core.config.Risposte}
  15161.      *
  15162.      * @param file Xml file to serialize the object <var>risposte</var>
  15163.      * @param risposte Object to be serialized in xml file <var>fileName</var>
  15164.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15165.      */
  15166.     public void write(File file,Risposte risposte) throws SerializerException {
  15167.         this.objToXml(file, Risposte.class, risposte, false);
  15168.     }
  15169.     /**
  15170.      * Serialize to file system in <var>file</var> the object <var>risposte</var> of type {@link org.openspcoop2.core.config.Risposte}
  15171.      *
  15172.      * @param file Xml file to serialize the object <var>risposte</var>
  15173.      * @param risposte Object to be serialized in xml file <var>fileName</var>
  15174.      * @param prettyPrint if true output the XML with indenting
  15175.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15176.      */
  15177.     public void write(File file,Risposte risposte,boolean prettyPrint) throws SerializerException {
  15178.         this.objToXml(file, Risposte.class, risposte, prettyPrint);
  15179.     }
  15180.    
  15181.     /**
  15182.      * Serialize to output stream <var>out</var> the object <var>risposte</var> of type {@link org.openspcoop2.core.config.Risposte}
  15183.      *
  15184.      * @param out OutputStream to serialize the object <var>risposte</var>
  15185.      * @param risposte Object to be serialized in xml file <var>fileName</var>
  15186.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15187.      */
  15188.     public void write(OutputStream out,Risposte risposte) throws SerializerException {
  15189.         this.objToXml(out, Risposte.class, risposte, false);
  15190.     }
  15191.     /**
  15192.      * Serialize to output stream <var>out</var> the object <var>risposte</var> of type {@link org.openspcoop2.core.config.Risposte}
  15193.      *
  15194.      * @param out OutputStream to serialize the object <var>risposte</var>
  15195.      * @param risposte Object to be serialized in xml file <var>fileName</var>
  15196.      * @param prettyPrint if true output the XML with indenting
  15197.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15198.      */
  15199.     public void write(OutputStream out,Risposte risposte,boolean prettyPrint) throws SerializerException {
  15200.         this.objToXml(out, Risposte.class, risposte, prettyPrint);
  15201.     }
  15202.            
  15203.     /**
  15204.      * Serialize to byte array the object <var>risposte</var> of type {@link org.openspcoop2.core.config.Risposte}
  15205.      *
  15206.      * @param risposte Object to be serialized
  15207.      * @return Object to be serialized in byte array
  15208.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15209.      */
  15210.     public byte[] toByteArray(Risposte risposte) throws SerializerException {
  15211.         return this.objToXml(Risposte.class, risposte, false).toByteArray();
  15212.     }
  15213.     /**
  15214.      * Serialize to byte array the object <var>risposte</var> of type {@link org.openspcoop2.core.config.Risposte}
  15215.      *
  15216.      * @param risposte Object to be serialized
  15217.      * @param prettyPrint if true output the XML with indenting
  15218.      * @return Object to be serialized in byte array
  15219.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15220.      */
  15221.     public byte[] toByteArray(Risposte risposte,boolean prettyPrint) throws SerializerException {
  15222.         return this.objToXml(Risposte.class, risposte, prettyPrint).toByteArray();
  15223.     }
  15224.    
  15225.     /**
  15226.      * Serialize to String the object <var>risposte</var> of type {@link org.openspcoop2.core.config.Risposte}
  15227.      *
  15228.      * @param risposte Object to be serialized
  15229.      * @return Object to be serialized as String
  15230.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15231.      */
  15232.     public String toString(Risposte risposte) throws SerializerException {
  15233.         return this.objToXml(Risposte.class, risposte, false).toString();
  15234.     }
  15235.     /**
  15236.      * Serialize to String the object <var>risposte</var> of type {@link org.openspcoop2.core.config.Risposte}
  15237.      *
  15238.      * @param risposte Object to be serialized
  15239.      * @param prettyPrint if true output the XML with indenting
  15240.      * @return Object to be serialized as String
  15241.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15242.      */
  15243.     public String toString(Risposte risposte,boolean prettyPrint) throws SerializerException {
  15244.         return this.objToXml(Risposte.class, risposte, prettyPrint).toString();
  15245.     }
  15246.    
  15247.    
  15248.    
  15249.     /*
  15250.      =================================================================================
  15251.      Object: dump
  15252.      =================================================================================
  15253.     */
  15254.    
  15255.     /**
  15256.      * Serialize to file system in <var>fileName</var> the object <var>dump</var> of type {@link org.openspcoop2.core.config.Dump}
  15257.      *
  15258.      * @param fileName Xml file to serialize the object <var>dump</var>
  15259.      * @param dump Object to be serialized in xml file <var>fileName</var>
  15260.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15261.      */
  15262.     public void write(String fileName,Dump dump) throws SerializerException {
  15263.         this.objToXml(fileName, Dump.class, dump, false);
  15264.     }
  15265.     /**
  15266.      * Serialize to file system in <var>fileName</var> the object <var>dump</var> of type {@link org.openspcoop2.core.config.Dump}
  15267.      *
  15268.      * @param fileName Xml file to serialize the object <var>dump</var>
  15269.      * @param dump Object to be serialized in xml file <var>fileName</var>
  15270.      * @param prettyPrint if true output the XML with indenting
  15271.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15272.      */
  15273.     public void write(String fileName,Dump dump,boolean prettyPrint) throws SerializerException {
  15274.         this.objToXml(fileName, Dump.class, dump, prettyPrint);
  15275.     }
  15276.    
  15277.     /**
  15278.      * Serialize to file system in <var>file</var> the object <var>dump</var> of type {@link org.openspcoop2.core.config.Dump}
  15279.      *
  15280.      * @param file Xml file to serialize the object <var>dump</var>
  15281.      * @param dump Object to be serialized in xml file <var>fileName</var>
  15282.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15283.      */
  15284.     public void write(File file,Dump dump) throws SerializerException {
  15285.         this.objToXml(file, Dump.class, dump, false);
  15286.     }
  15287.     /**
  15288.      * Serialize to file system in <var>file</var> the object <var>dump</var> of type {@link org.openspcoop2.core.config.Dump}
  15289.      *
  15290.      * @param file Xml file to serialize the object <var>dump</var>
  15291.      * @param dump Object to be serialized in xml file <var>fileName</var>
  15292.      * @param prettyPrint if true output the XML with indenting
  15293.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15294.      */
  15295.     public void write(File file,Dump dump,boolean prettyPrint) throws SerializerException {
  15296.         this.objToXml(file, Dump.class, dump, prettyPrint);
  15297.     }
  15298.    
  15299.     /**
  15300.      * Serialize to output stream <var>out</var> the object <var>dump</var> of type {@link org.openspcoop2.core.config.Dump}
  15301.      *
  15302.      * @param out OutputStream to serialize the object <var>dump</var>
  15303.      * @param dump Object to be serialized in xml file <var>fileName</var>
  15304.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15305.      */
  15306.     public void write(OutputStream out,Dump dump) throws SerializerException {
  15307.         this.objToXml(out, Dump.class, dump, false);
  15308.     }
  15309.     /**
  15310.      * Serialize to output stream <var>out</var> the object <var>dump</var> of type {@link org.openspcoop2.core.config.Dump}
  15311.      *
  15312.      * @param out OutputStream to serialize the object <var>dump</var>
  15313.      * @param dump Object to be serialized in xml file <var>fileName</var>
  15314.      * @param prettyPrint if true output the XML with indenting
  15315.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15316.      */
  15317.     public void write(OutputStream out,Dump dump,boolean prettyPrint) throws SerializerException {
  15318.         this.objToXml(out, Dump.class, dump, prettyPrint);
  15319.     }
  15320.            
  15321.     /**
  15322.      * Serialize to byte array the object <var>dump</var> of type {@link org.openspcoop2.core.config.Dump}
  15323.      *
  15324.      * @param dump Object to be serialized
  15325.      * @return Object to be serialized in byte array
  15326.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15327.      */
  15328.     public byte[] toByteArray(Dump dump) throws SerializerException {
  15329.         return this.objToXml(Dump.class, dump, false).toByteArray();
  15330.     }
  15331.     /**
  15332.      * Serialize to byte array the object <var>dump</var> of type {@link org.openspcoop2.core.config.Dump}
  15333.      *
  15334.      * @param dump Object to be serialized
  15335.      * @param prettyPrint if true output the XML with indenting
  15336.      * @return Object to be serialized in byte array
  15337.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15338.      */
  15339.     public byte[] toByteArray(Dump dump,boolean prettyPrint) throws SerializerException {
  15340.         return this.objToXml(Dump.class, dump, prettyPrint).toByteArray();
  15341.     }
  15342.    
  15343.     /**
  15344.      * Serialize to String the object <var>dump</var> of type {@link org.openspcoop2.core.config.Dump}
  15345.      *
  15346.      * @param dump Object to be serialized
  15347.      * @return Object to be serialized as String
  15348.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15349.      */
  15350.     public String toString(Dump dump) throws SerializerException {
  15351.         return this.objToXml(Dump.class, dump, false).toString();
  15352.     }
  15353.     /**
  15354.      * Serialize to String the object <var>dump</var> of type {@link org.openspcoop2.core.config.Dump}
  15355.      *
  15356.      * @param dump Object to be serialized
  15357.      * @param prettyPrint if true output the XML with indenting
  15358.      * @return Object to be serialized as String
  15359.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15360.      */
  15361.     public String toString(Dump dump,boolean prettyPrint) throws SerializerException {
  15362.         return this.objToXml(Dump.class, dump, prettyPrint).toString();
  15363.     }
  15364.    
  15365.    
  15366.    
  15367.     /*
  15368.      =================================================================================
  15369.      Object: integration-manager
  15370.      =================================================================================
  15371.     */
  15372.    
  15373.     /**
  15374.      * Serialize to file system in <var>fileName</var> the object <var>integrationManager</var> of type {@link org.openspcoop2.core.config.IntegrationManager}
  15375.      *
  15376.      * @param fileName Xml file to serialize the object <var>integrationManager</var>
  15377.      * @param integrationManager Object to be serialized in xml file <var>fileName</var>
  15378.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15379.      */
  15380.     public void write(String fileName,IntegrationManager integrationManager) throws SerializerException {
  15381.         this.objToXml(fileName, IntegrationManager.class, integrationManager, false);
  15382.     }
  15383.     /**
  15384.      * Serialize to file system in <var>fileName</var> the object <var>integrationManager</var> of type {@link org.openspcoop2.core.config.IntegrationManager}
  15385.      *
  15386.      * @param fileName Xml file to serialize the object <var>integrationManager</var>
  15387.      * @param integrationManager Object to be serialized in xml file <var>fileName</var>
  15388.      * @param prettyPrint if true output the XML with indenting
  15389.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15390.      */
  15391.     public void write(String fileName,IntegrationManager integrationManager,boolean prettyPrint) throws SerializerException {
  15392.         this.objToXml(fileName, IntegrationManager.class, integrationManager, prettyPrint);
  15393.     }
  15394.    
  15395.     /**
  15396.      * Serialize to file system in <var>file</var> the object <var>integrationManager</var> of type {@link org.openspcoop2.core.config.IntegrationManager}
  15397.      *
  15398.      * @param file Xml file to serialize the object <var>integrationManager</var>
  15399.      * @param integrationManager Object to be serialized in xml file <var>fileName</var>
  15400.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15401.      */
  15402.     public void write(File file,IntegrationManager integrationManager) throws SerializerException {
  15403.         this.objToXml(file, IntegrationManager.class, integrationManager, false);
  15404.     }
  15405.     /**
  15406.      * Serialize to file system in <var>file</var> the object <var>integrationManager</var> of type {@link org.openspcoop2.core.config.IntegrationManager}
  15407.      *
  15408.      * @param file Xml file to serialize the object <var>integrationManager</var>
  15409.      * @param integrationManager Object to be serialized in xml file <var>fileName</var>
  15410.      * @param prettyPrint if true output the XML with indenting
  15411.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15412.      */
  15413.     public void write(File file,IntegrationManager integrationManager,boolean prettyPrint) throws SerializerException {
  15414.         this.objToXml(file, IntegrationManager.class, integrationManager, prettyPrint);
  15415.     }
  15416.    
  15417.     /**
  15418.      * Serialize to output stream <var>out</var> the object <var>integrationManager</var> of type {@link org.openspcoop2.core.config.IntegrationManager}
  15419.      *
  15420.      * @param out OutputStream to serialize the object <var>integrationManager</var>
  15421.      * @param integrationManager Object to be serialized in xml file <var>fileName</var>
  15422.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15423.      */
  15424.     public void write(OutputStream out,IntegrationManager integrationManager) throws SerializerException {
  15425.         this.objToXml(out, IntegrationManager.class, integrationManager, false);
  15426.     }
  15427.     /**
  15428.      * Serialize to output stream <var>out</var> the object <var>integrationManager</var> of type {@link org.openspcoop2.core.config.IntegrationManager}
  15429.      *
  15430.      * @param out OutputStream to serialize the object <var>integrationManager</var>
  15431.      * @param integrationManager Object to be serialized in xml file <var>fileName</var>
  15432.      * @param prettyPrint if true output the XML with indenting
  15433.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15434.      */
  15435.     public void write(OutputStream out,IntegrationManager integrationManager,boolean prettyPrint) throws SerializerException {
  15436.         this.objToXml(out, IntegrationManager.class, integrationManager, prettyPrint);
  15437.     }
  15438.            
  15439.     /**
  15440.      * Serialize to byte array the object <var>integrationManager</var> of type {@link org.openspcoop2.core.config.IntegrationManager}
  15441.      *
  15442.      * @param integrationManager Object to be serialized
  15443.      * @return Object to be serialized in byte array
  15444.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15445.      */
  15446.     public byte[] toByteArray(IntegrationManager integrationManager) throws SerializerException {
  15447.         return this.objToXml(IntegrationManager.class, integrationManager, false).toByteArray();
  15448.     }
  15449.     /**
  15450.      * Serialize to byte array the object <var>integrationManager</var> of type {@link org.openspcoop2.core.config.IntegrationManager}
  15451.      *
  15452.      * @param integrationManager Object to be serialized
  15453.      * @param prettyPrint if true output the XML with indenting
  15454.      * @return Object to be serialized in byte array
  15455.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15456.      */
  15457.     public byte[] toByteArray(IntegrationManager integrationManager,boolean prettyPrint) throws SerializerException {
  15458.         return this.objToXml(IntegrationManager.class, integrationManager, prettyPrint).toByteArray();
  15459.     }
  15460.    
  15461.     /**
  15462.      * Serialize to String the object <var>integrationManager</var> of type {@link org.openspcoop2.core.config.IntegrationManager}
  15463.      *
  15464.      * @param integrationManager Object to be serialized
  15465.      * @return Object to be serialized as String
  15466.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15467.      */
  15468.     public String toString(IntegrationManager integrationManager) throws SerializerException {
  15469.         return this.objToXml(IntegrationManager.class, integrationManager, false).toString();
  15470.     }
  15471.     /**
  15472.      * Serialize to String the object <var>integrationManager</var> of type {@link org.openspcoop2.core.config.IntegrationManager}
  15473.      *
  15474.      * @param integrationManager Object to be serialized
  15475.      * @param prettyPrint if true output the XML with indenting
  15476.      * @return Object to be serialized as String
  15477.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15478.      */
  15479.     public String toString(IntegrationManager integrationManager,boolean prettyPrint) throws SerializerException {
  15480.         return this.objToXml(IntegrationManager.class, integrationManager, prettyPrint).toString();
  15481.     }
  15482.    
  15483.    
  15484.    
  15485.     /*
  15486.      =================================================================================
  15487.      Object: stato-servizi-pdd
  15488.      =================================================================================
  15489.     */
  15490.    
  15491.     /**
  15492.      * Serialize to file system in <var>fileName</var> the object <var>statoServiziPdd</var> of type {@link org.openspcoop2.core.config.StatoServiziPdd}
  15493.      *
  15494.      * @param fileName Xml file to serialize the object <var>statoServiziPdd</var>
  15495.      * @param statoServiziPdd Object to be serialized in xml file <var>fileName</var>
  15496.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15497.      */
  15498.     public void write(String fileName,StatoServiziPdd statoServiziPdd) throws SerializerException {
  15499.         this.objToXml(fileName, StatoServiziPdd.class, statoServiziPdd, false);
  15500.     }
  15501.     /**
  15502.      * Serialize to file system in <var>fileName</var> the object <var>statoServiziPdd</var> of type {@link org.openspcoop2.core.config.StatoServiziPdd}
  15503.      *
  15504.      * @param fileName Xml file to serialize the object <var>statoServiziPdd</var>
  15505.      * @param statoServiziPdd Object to be serialized in xml file <var>fileName</var>
  15506.      * @param prettyPrint if true output the XML with indenting
  15507.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15508.      */
  15509.     public void write(String fileName,StatoServiziPdd statoServiziPdd,boolean prettyPrint) throws SerializerException {
  15510.         this.objToXml(fileName, StatoServiziPdd.class, statoServiziPdd, prettyPrint);
  15511.     }
  15512.    
  15513.     /**
  15514.      * Serialize to file system in <var>file</var> the object <var>statoServiziPdd</var> of type {@link org.openspcoop2.core.config.StatoServiziPdd}
  15515.      *
  15516.      * @param file Xml file to serialize the object <var>statoServiziPdd</var>
  15517.      * @param statoServiziPdd Object to be serialized in xml file <var>fileName</var>
  15518.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15519.      */
  15520.     public void write(File file,StatoServiziPdd statoServiziPdd) throws SerializerException {
  15521.         this.objToXml(file, StatoServiziPdd.class, statoServiziPdd, false);
  15522.     }
  15523.     /**
  15524.      * Serialize to file system in <var>file</var> the object <var>statoServiziPdd</var> of type {@link org.openspcoop2.core.config.StatoServiziPdd}
  15525.      *
  15526.      * @param file Xml file to serialize the object <var>statoServiziPdd</var>
  15527.      * @param statoServiziPdd Object to be serialized in xml file <var>fileName</var>
  15528.      * @param prettyPrint if true output the XML with indenting
  15529.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15530.      */
  15531.     public void write(File file,StatoServiziPdd statoServiziPdd,boolean prettyPrint) throws SerializerException {
  15532.         this.objToXml(file, StatoServiziPdd.class, statoServiziPdd, prettyPrint);
  15533.     }
  15534.    
  15535.     /**
  15536.      * Serialize to output stream <var>out</var> the object <var>statoServiziPdd</var> of type {@link org.openspcoop2.core.config.StatoServiziPdd}
  15537.      *
  15538.      * @param out OutputStream to serialize the object <var>statoServiziPdd</var>
  15539.      * @param statoServiziPdd Object to be serialized in xml file <var>fileName</var>
  15540.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15541.      */
  15542.     public void write(OutputStream out,StatoServiziPdd statoServiziPdd) throws SerializerException {
  15543.         this.objToXml(out, StatoServiziPdd.class, statoServiziPdd, false);
  15544.     }
  15545.     /**
  15546.      * Serialize to output stream <var>out</var> the object <var>statoServiziPdd</var> of type {@link org.openspcoop2.core.config.StatoServiziPdd}
  15547.      *
  15548.      * @param out OutputStream to serialize the object <var>statoServiziPdd</var>
  15549.      * @param statoServiziPdd Object to be serialized in xml file <var>fileName</var>
  15550.      * @param prettyPrint if true output the XML with indenting
  15551.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15552.      */
  15553.     public void write(OutputStream out,StatoServiziPdd statoServiziPdd,boolean prettyPrint) throws SerializerException {
  15554.         this.objToXml(out, StatoServiziPdd.class, statoServiziPdd, prettyPrint);
  15555.     }
  15556.            
  15557.     /**
  15558.      * Serialize to byte array the object <var>statoServiziPdd</var> of type {@link org.openspcoop2.core.config.StatoServiziPdd}
  15559.      *
  15560.      * @param statoServiziPdd Object to be serialized
  15561.      * @return Object to be serialized in byte array
  15562.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15563.      */
  15564.     public byte[] toByteArray(StatoServiziPdd statoServiziPdd) throws SerializerException {
  15565.         return this.objToXml(StatoServiziPdd.class, statoServiziPdd, false).toByteArray();
  15566.     }
  15567.     /**
  15568.      * Serialize to byte array the object <var>statoServiziPdd</var> of type {@link org.openspcoop2.core.config.StatoServiziPdd}
  15569.      *
  15570.      * @param statoServiziPdd Object to be serialized
  15571.      * @param prettyPrint if true output the XML with indenting
  15572.      * @return Object to be serialized in byte array
  15573.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15574.      */
  15575.     public byte[] toByteArray(StatoServiziPdd statoServiziPdd,boolean prettyPrint) throws SerializerException {
  15576.         return this.objToXml(StatoServiziPdd.class, statoServiziPdd, prettyPrint).toByteArray();
  15577.     }
  15578.    
  15579.     /**
  15580.      * Serialize to String the object <var>statoServiziPdd</var> of type {@link org.openspcoop2.core.config.StatoServiziPdd}
  15581.      *
  15582.      * @param statoServiziPdd Object to be serialized
  15583.      * @return Object to be serialized as String
  15584.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15585.      */
  15586.     public String toString(StatoServiziPdd statoServiziPdd) throws SerializerException {
  15587.         return this.objToXml(StatoServiziPdd.class, statoServiziPdd, false).toString();
  15588.     }
  15589.     /**
  15590.      * Serialize to String the object <var>statoServiziPdd</var> of type {@link org.openspcoop2.core.config.StatoServiziPdd}
  15591.      *
  15592.      * @param statoServiziPdd Object to be serialized
  15593.      * @param prettyPrint if true output the XML with indenting
  15594.      * @return Object to be serialized as String
  15595.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15596.      */
  15597.     public String toString(StatoServiziPdd statoServiziPdd,boolean prettyPrint) throws SerializerException {
  15598.         return this.objToXml(StatoServiziPdd.class, statoServiziPdd, prettyPrint).toString();
  15599.     }
  15600.    
  15601.    
  15602.    
  15603.     /*
  15604.      =================================================================================
  15605.      Object: response-caching-configurazione-generale
  15606.      =================================================================================
  15607.     */
  15608.    
  15609.     /**
  15610.      * Serialize to file system in <var>fileName</var> the object <var>responseCachingConfigurazioneGenerale</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneGenerale}
  15611.      *
  15612.      * @param fileName Xml file to serialize the object <var>responseCachingConfigurazioneGenerale</var>
  15613.      * @param responseCachingConfigurazioneGenerale Object to be serialized in xml file <var>fileName</var>
  15614.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15615.      */
  15616.     public void write(String fileName,ResponseCachingConfigurazioneGenerale responseCachingConfigurazioneGenerale) throws SerializerException {
  15617.         this.objToXml(fileName, ResponseCachingConfigurazioneGenerale.class, responseCachingConfigurazioneGenerale, false);
  15618.     }
  15619.     /**
  15620.      * Serialize to file system in <var>fileName</var> the object <var>responseCachingConfigurazioneGenerale</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneGenerale}
  15621.      *
  15622.      * @param fileName Xml file to serialize the object <var>responseCachingConfigurazioneGenerale</var>
  15623.      * @param responseCachingConfigurazioneGenerale Object to be serialized in xml file <var>fileName</var>
  15624.      * @param prettyPrint if true output the XML with indenting
  15625.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15626.      */
  15627.     public void write(String fileName,ResponseCachingConfigurazioneGenerale responseCachingConfigurazioneGenerale,boolean prettyPrint) throws SerializerException {
  15628.         this.objToXml(fileName, ResponseCachingConfigurazioneGenerale.class, responseCachingConfigurazioneGenerale, prettyPrint);
  15629.     }
  15630.    
  15631.     /**
  15632.      * Serialize to file system in <var>file</var> the object <var>responseCachingConfigurazioneGenerale</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneGenerale}
  15633.      *
  15634.      * @param file Xml file to serialize the object <var>responseCachingConfigurazioneGenerale</var>
  15635.      * @param responseCachingConfigurazioneGenerale Object to be serialized in xml file <var>fileName</var>
  15636.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15637.      */
  15638.     public void write(File file,ResponseCachingConfigurazioneGenerale responseCachingConfigurazioneGenerale) throws SerializerException {
  15639.         this.objToXml(file, ResponseCachingConfigurazioneGenerale.class, responseCachingConfigurazioneGenerale, false);
  15640.     }
  15641.     /**
  15642.      * Serialize to file system in <var>file</var> the object <var>responseCachingConfigurazioneGenerale</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneGenerale}
  15643.      *
  15644.      * @param file Xml file to serialize the object <var>responseCachingConfigurazioneGenerale</var>
  15645.      * @param responseCachingConfigurazioneGenerale Object to be serialized in xml file <var>fileName</var>
  15646.      * @param prettyPrint if true output the XML with indenting
  15647.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15648.      */
  15649.     public void write(File file,ResponseCachingConfigurazioneGenerale responseCachingConfigurazioneGenerale,boolean prettyPrint) throws SerializerException {
  15650.         this.objToXml(file, ResponseCachingConfigurazioneGenerale.class, responseCachingConfigurazioneGenerale, prettyPrint);
  15651.     }
  15652.    
  15653.     /**
  15654.      * Serialize to output stream <var>out</var> the object <var>responseCachingConfigurazioneGenerale</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneGenerale}
  15655.      *
  15656.      * @param out OutputStream to serialize the object <var>responseCachingConfigurazioneGenerale</var>
  15657.      * @param responseCachingConfigurazioneGenerale Object to be serialized in xml file <var>fileName</var>
  15658.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15659.      */
  15660.     public void write(OutputStream out,ResponseCachingConfigurazioneGenerale responseCachingConfigurazioneGenerale) throws SerializerException {
  15661.         this.objToXml(out, ResponseCachingConfigurazioneGenerale.class, responseCachingConfigurazioneGenerale, false);
  15662.     }
  15663.     /**
  15664.      * Serialize to output stream <var>out</var> the object <var>responseCachingConfigurazioneGenerale</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneGenerale}
  15665.      *
  15666.      * @param out OutputStream to serialize the object <var>responseCachingConfigurazioneGenerale</var>
  15667.      * @param responseCachingConfigurazioneGenerale Object to be serialized in xml file <var>fileName</var>
  15668.      * @param prettyPrint if true output the XML with indenting
  15669.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15670.      */
  15671.     public void write(OutputStream out,ResponseCachingConfigurazioneGenerale responseCachingConfigurazioneGenerale,boolean prettyPrint) throws SerializerException {
  15672.         this.objToXml(out, ResponseCachingConfigurazioneGenerale.class, responseCachingConfigurazioneGenerale, prettyPrint);
  15673.     }
  15674.            
  15675.     /**
  15676.      * Serialize to byte array the object <var>responseCachingConfigurazioneGenerale</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneGenerale}
  15677.      *
  15678.      * @param responseCachingConfigurazioneGenerale Object to be serialized
  15679.      * @return Object to be serialized in byte array
  15680.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15681.      */
  15682.     public byte[] toByteArray(ResponseCachingConfigurazioneGenerale responseCachingConfigurazioneGenerale) throws SerializerException {
  15683.         return this.objToXml(ResponseCachingConfigurazioneGenerale.class, responseCachingConfigurazioneGenerale, false).toByteArray();
  15684.     }
  15685.     /**
  15686.      * Serialize to byte array the object <var>responseCachingConfigurazioneGenerale</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneGenerale}
  15687.      *
  15688.      * @param responseCachingConfigurazioneGenerale Object to be serialized
  15689.      * @param prettyPrint if true output the XML with indenting
  15690.      * @return Object to be serialized in byte array
  15691.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15692.      */
  15693.     public byte[] toByteArray(ResponseCachingConfigurazioneGenerale responseCachingConfigurazioneGenerale,boolean prettyPrint) throws SerializerException {
  15694.         return this.objToXml(ResponseCachingConfigurazioneGenerale.class, responseCachingConfigurazioneGenerale, prettyPrint).toByteArray();
  15695.     }
  15696.    
  15697.     /**
  15698.      * Serialize to String the object <var>responseCachingConfigurazioneGenerale</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneGenerale}
  15699.      *
  15700.      * @param responseCachingConfigurazioneGenerale Object to be serialized
  15701.      * @return Object to be serialized as String
  15702.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15703.      */
  15704.     public String toString(ResponseCachingConfigurazioneGenerale responseCachingConfigurazioneGenerale) throws SerializerException {
  15705.         return this.objToXml(ResponseCachingConfigurazioneGenerale.class, responseCachingConfigurazioneGenerale, false).toString();
  15706.     }
  15707.     /**
  15708.      * Serialize to String the object <var>responseCachingConfigurazioneGenerale</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneGenerale}
  15709.      *
  15710.      * @param responseCachingConfigurazioneGenerale Object to be serialized
  15711.      * @param prettyPrint if true output the XML with indenting
  15712.      * @return Object to be serialized as String
  15713.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15714.      */
  15715.     public String toString(ResponseCachingConfigurazioneGenerale responseCachingConfigurazioneGenerale,boolean prettyPrint) throws SerializerException {
  15716.         return this.objToXml(ResponseCachingConfigurazioneGenerale.class, responseCachingConfigurazioneGenerale, prettyPrint).toString();
  15717.     }
  15718.    
  15719.    
  15720.    
  15721.     /*
  15722.      =================================================================================
  15723.      Object: response-caching-configurazione-hash-generator
  15724.      =================================================================================
  15725.     */
  15726.    
  15727.     /**
  15728.      * Serialize to file system in <var>fileName</var> the object <var>responseCachingConfigurazioneHashGenerator</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneHashGenerator}
  15729.      *
  15730.      * @param fileName Xml file to serialize the object <var>responseCachingConfigurazioneHashGenerator</var>
  15731.      * @param responseCachingConfigurazioneHashGenerator Object to be serialized in xml file <var>fileName</var>
  15732.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15733.      */
  15734.     public void write(String fileName,ResponseCachingConfigurazioneHashGenerator responseCachingConfigurazioneHashGenerator) throws SerializerException {
  15735.         this.objToXml(fileName, ResponseCachingConfigurazioneHashGenerator.class, responseCachingConfigurazioneHashGenerator, false);
  15736.     }
  15737.     /**
  15738.      * Serialize to file system in <var>fileName</var> the object <var>responseCachingConfigurazioneHashGenerator</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneHashGenerator}
  15739.      *
  15740.      * @param fileName Xml file to serialize the object <var>responseCachingConfigurazioneHashGenerator</var>
  15741.      * @param responseCachingConfigurazioneHashGenerator Object to be serialized in xml file <var>fileName</var>
  15742.      * @param prettyPrint if true output the XML with indenting
  15743.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15744.      */
  15745.     public void write(String fileName,ResponseCachingConfigurazioneHashGenerator responseCachingConfigurazioneHashGenerator,boolean prettyPrint) throws SerializerException {
  15746.         this.objToXml(fileName, ResponseCachingConfigurazioneHashGenerator.class, responseCachingConfigurazioneHashGenerator, prettyPrint);
  15747.     }
  15748.    
  15749.     /**
  15750.      * Serialize to file system in <var>file</var> the object <var>responseCachingConfigurazioneHashGenerator</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneHashGenerator}
  15751.      *
  15752.      * @param file Xml file to serialize the object <var>responseCachingConfigurazioneHashGenerator</var>
  15753.      * @param responseCachingConfigurazioneHashGenerator Object to be serialized in xml file <var>fileName</var>
  15754.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15755.      */
  15756.     public void write(File file,ResponseCachingConfigurazioneHashGenerator responseCachingConfigurazioneHashGenerator) throws SerializerException {
  15757.         this.objToXml(file, ResponseCachingConfigurazioneHashGenerator.class, responseCachingConfigurazioneHashGenerator, false);
  15758.     }
  15759.     /**
  15760.      * Serialize to file system in <var>file</var> the object <var>responseCachingConfigurazioneHashGenerator</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneHashGenerator}
  15761.      *
  15762.      * @param file Xml file to serialize the object <var>responseCachingConfigurazioneHashGenerator</var>
  15763.      * @param responseCachingConfigurazioneHashGenerator Object to be serialized in xml file <var>fileName</var>
  15764.      * @param prettyPrint if true output the XML with indenting
  15765.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15766.      */
  15767.     public void write(File file,ResponseCachingConfigurazioneHashGenerator responseCachingConfigurazioneHashGenerator,boolean prettyPrint) throws SerializerException {
  15768.         this.objToXml(file, ResponseCachingConfigurazioneHashGenerator.class, responseCachingConfigurazioneHashGenerator, prettyPrint);
  15769.     }
  15770.    
  15771.     /**
  15772.      * Serialize to output stream <var>out</var> the object <var>responseCachingConfigurazioneHashGenerator</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneHashGenerator}
  15773.      *
  15774.      * @param out OutputStream to serialize the object <var>responseCachingConfigurazioneHashGenerator</var>
  15775.      * @param responseCachingConfigurazioneHashGenerator Object to be serialized in xml file <var>fileName</var>
  15776.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15777.      */
  15778.     public void write(OutputStream out,ResponseCachingConfigurazioneHashGenerator responseCachingConfigurazioneHashGenerator) throws SerializerException {
  15779.         this.objToXml(out, ResponseCachingConfigurazioneHashGenerator.class, responseCachingConfigurazioneHashGenerator, false);
  15780.     }
  15781.     /**
  15782.      * Serialize to output stream <var>out</var> the object <var>responseCachingConfigurazioneHashGenerator</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneHashGenerator}
  15783.      *
  15784.      * @param out OutputStream to serialize the object <var>responseCachingConfigurazioneHashGenerator</var>
  15785.      * @param responseCachingConfigurazioneHashGenerator Object to be serialized in xml file <var>fileName</var>
  15786.      * @param prettyPrint if true output the XML with indenting
  15787.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15788.      */
  15789.     public void write(OutputStream out,ResponseCachingConfigurazioneHashGenerator responseCachingConfigurazioneHashGenerator,boolean prettyPrint) throws SerializerException {
  15790.         this.objToXml(out, ResponseCachingConfigurazioneHashGenerator.class, responseCachingConfigurazioneHashGenerator, prettyPrint);
  15791.     }
  15792.            
  15793.     /**
  15794.      * Serialize to byte array the object <var>responseCachingConfigurazioneHashGenerator</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneHashGenerator}
  15795.      *
  15796.      * @param responseCachingConfigurazioneHashGenerator Object to be serialized
  15797.      * @return Object to be serialized in byte array
  15798.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15799.      */
  15800.     public byte[] toByteArray(ResponseCachingConfigurazioneHashGenerator responseCachingConfigurazioneHashGenerator) throws SerializerException {
  15801.         return this.objToXml(ResponseCachingConfigurazioneHashGenerator.class, responseCachingConfigurazioneHashGenerator, false).toByteArray();
  15802.     }
  15803.     /**
  15804.      * Serialize to byte array the object <var>responseCachingConfigurazioneHashGenerator</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneHashGenerator}
  15805.      *
  15806.      * @param responseCachingConfigurazioneHashGenerator Object to be serialized
  15807.      * @param prettyPrint if true output the XML with indenting
  15808.      * @return Object to be serialized in byte array
  15809.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15810.      */
  15811.     public byte[] toByteArray(ResponseCachingConfigurazioneHashGenerator responseCachingConfigurazioneHashGenerator,boolean prettyPrint) throws SerializerException {
  15812.         return this.objToXml(ResponseCachingConfigurazioneHashGenerator.class, responseCachingConfigurazioneHashGenerator, prettyPrint).toByteArray();
  15813.     }
  15814.    
  15815.     /**
  15816.      * Serialize to String the object <var>responseCachingConfigurazioneHashGenerator</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneHashGenerator}
  15817.      *
  15818.      * @param responseCachingConfigurazioneHashGenerator Object to be serialized
  15819.      * @return Object to be serialized as String
  15820.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15821.      */
  15822.     public String toString(ResponseCachingConfigurazioneHashGenerator responseCachingConfigurazioneHashGenerator) throws SerializerException {
  15823.         return this.objToXml(ResponseCachingConfigurazioneHashGenerator.class, responseCachingConfigurazioneHashGenerator, false).toString();
  15824.     }
  15825.     /**
  15826.      * Serialize to String the object <var>responseCachingConfigurazioneHashGenerator</var> of type {@link org.openspcoop2.core.config.ResponseCachingConfigurazioneHashGenerator}
  15827.      *
  15828.      * @param responseCachingConfigurazioneHashGenerator Object to be serialized
  15829.      * @param prettyPrint if true output the XML with indenting
  15830.      * @return Object to be serialized as String
  15831.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15832.      */
  15833.     public String toString(ResponseCachingConfigurazioneHashGenerator responseCachingConfigurazioneHashGenerator,boolean prettyPrint) throws SerializerException {
  15834.         return this.objToXml(ResponseCachingConfigurazioneHashGenerator.class, responseCachingConfigurazioneHashGenerator, prettyPrint).toString();
  15835.     }
  15836.    
  15837.    
  15838.    
  15839.     /*
  15840.      =================================================================================
  15841.      Object: mtom-processor-flow-parameter
  15842.      =================================================================================
  15843.     */
  15844.    
  15845.     /**
  15846.      * Serialize to file system in <var>fileName</var> the object <var>mtomProcessorFlowParameter</var> of type {@link org.openspcoop2.core.config.MtomProcessorFlowParameter}
  15847.      *
  15848.      * @param fileName Xml file to serialize the object <var>mtomProcessorFlowParameter</var>
  15849.      * @param mtomProcessorFlowParameter Object to be serialized in xml file <var>fileName</var>
  15850.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15851.      */
  15852.     public void write(String fileName,MtomProcessorFlowParameter mtomProcessorFlowParameter) throws SerializerException {
  15853.         this.objToXml(fileName, MtomProcessorFlowParameter.class, mtomProcessorFlowParameter, false);
  15854.     }
  15855.     /**
  15856.      * Serialize to file system in <var>fileName</var> the object <var>mtomProcessorFlowParameter</var> of type {@link org.openspcoop2.core.config.MtomProcessorFlowParameter}
  15857.      *
  15858.      * @param fileName Xml file to serialize the object <var>mtomProcessorFlowParameter</var>
  15859.      * @param mtomProcessorFlowParameter Object to be serialized in xml file <var>fileName</var>
  15860.      * @param prettyPrint if true output the XML with indenting
  15861.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15862.      */
  15863.     public void write(String fileName,MtomProcessorFlowParameter mtomProcessorFlowParameter,boolean prettyPrint) throws SerializerException {
  15864.         this.objToXml(fileName, MtomProcessorFlowParameter.class, mtomProcessorFlowParameter, prettyPrint);
  15865.     }
  15866.    
  15867.     /**
  15868.      * Serialize to file system in <var>file</var> the object <var>mtomProcessorFlowParameter</var> of type {@link org.openspcoop2.core.config.MtomProcessorFlowParameter}
  15869.      *
  15870.      * @param file Xml file to serialize the object <var>mtomProcessorFlowParameter</var>
  15871.      * @param mtomProcessorFlowParameter Object to be serialized in xml file <var>fileName</var>
  15872.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15873.      */
  15874.     public void write(File file,MtomProcessorFlowParameter mtomProcessorFlowParameter) throws SerializerException {
  15875.         this.objToXml(file, MtomProcessorFlowParameter.class, mtomProcessorFlowParameter, false);
  15876.     }
  15877.     /**
  15878.      * Serialize to file system in <var>file</var> the object <var>mtomProcessorFlowParameter</var> of type {@link org.openspcoop2.core.config.MtomProcessorFlowParameter}
  15879.      *
  15880.      * @param file Xml file to serialize the object <var>mtomProcessorFlowParameter</var>
  15881.      * @param mtomProcessorFlowParameter Object to be serialized in xml file <var>fileName</var>
  15882.      * @param prettyPrint if true output the XML with indenting
  15883.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15884.      */
  15885.     public void write(File file,MtomProcessorFlowParameter mtomProcessorFlowParameter,boolean prettyPrint) throws SerializerException {
  15886.         this.objToXml(file, MtomProcessorFlowParameter.class, mtomProcessorFlowParameter, prettyPrint);
  15887.     }
  15888.    
  15889.     /**
  15890.      * Serialize to output stream <var>out</var> the object <var>mtomProcessorFlowParameter</var> of type {@link org.openspcoop2.core.config.MtomProcessorFlowParameter}
  15891.      *
  15892.      * @param out OutputStream to serialize the object <var>mtomProcessorFlowParameter</var>
  15893.      * @param mtomProcessorFlowParameter Object to be serialized in xml file <var>fileName</var>
  15894.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15895.      */
  15896.     public void write(OutputStream out,MtomProcessorFlowParameter mtomProcessorFlowParameter) throws SerializerException {
  15897.         this.objToXml(out, MtomProcessorFlowParameter.class, mtomProcessorFlowParameter, false);
  15898.     }
  15899.     /**
  15900.      * Serialize to output stream <var>out</var> the object <var>mtomProcessorFlowParameter</var> of type {@link org.openspcoop2.core.config.MtomProcessorFlowParameter}
  15901.      *
  15902.      * @param out OutputStream to serialize the object <var>mtomProcessorFlowParameter</var>
  15903.      * @param mtomProcessorFlowParameter Object to be serialized in xml file <var>fileName</var>
  15904.      * @param prettyPrint if true output the XML with indenting
  15905.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15906.      */
  15907.     public void write(OutputStream out,MtomProcessorFlowParameter mtomProcessorFlowParameter,boolean prettyPrint) throws SerializerException {
  15908.         this.objToXml(out, MtomProcessorFlowParameter.class, mtomProcessorFlowParameter, prettyPrint);
  15909.     }
  15910.            
  15911.     /**
  15912.      * Serialize to byte array the object <var>mtomProcessorFlowParameter</var> of type {@link org.openspcoop2.core.config.MtomProcessorFlowParameter}
  15913.      *
  15914.      * @param mtomProcessorFlowParameter Object to be serialized
  15915.      * @return Object to be serialized in byte array
  15916.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15917.      */
  15918.     public byte[] toByteArray(MtomProcessorFlowParameter mtomProcessorFlowParameter) throws SerializerException {
  15919.         return this.objToXml(MtomProcessorFlowParameter.class, mtomProcessorFlowParameter, false).toByteArray();
  15920.     }
  15921.     /**
  15922.      * Serialize to byte array the object <var>mtomProcessorFlowParameter</var> of type {@link org.openspcoop2.core.config.MtomProcessorFlowParameter}
  15923.      *
  15924.      * @param mtomProcessorFlowParameter Object to be serialized
  15925.      * @param prettyPrint if true output the XML with indenting
  15926.      * @return Object to be serialized in byte array
  15927.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15928.      */
  15929.     public byte[] toByteArray(MtomProcessorFlowParameter mtomProcessorFlowParameter,boolean prettyPrint) throws SerializerException {
  15930.         return this.objToXml(MtomProcessorFlowParameter.class, mtomProcessorFlowParameter, prettyPrint).toByteArray();
  15931.     }
  15932.    
  15933.     /**
  15934.      * Serialize to String the object <var>mtomProcessorFlowParameter</var> of type {@link org.openspcoop2.core.config.MtomProcessorFlowParameter}
  15935.      *
  15936.      * @param mtomProcessorFlowParameter Object to be serialized
  15937.      * @return Object to be serialized as String
  15938.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15939.      */
  15940.     public String toString(MtomProcessorFlowParameter mtomProcessorFlowParameter) throws SerializerException {
  15941.         return this.objToXml(MtomProcessorFlowParameter.class, mtomProcessorFlowParameter, false).toString();
  15942.     }
  15943.     /**
  15944.      * Serialize to String the object <var>mtomProcessorFlowParameter</var> of type {@link org.openspcoop2.core.config.MtomProcessorFlowParameter}
  15945.      *
  15946.      * @param mtomProcessorFlowParameter Object to be serialized
  15947.      * @param prettyPrint if true output the XML with indenting
  15948.      * @return Object to be serialized as String
  15949.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15950.      */
  15951.     public String toString(MtomProcessorFlowParameter mtomProcessorFlowParameter,boolean prettyPrint) throws SerializerException {
  15952.         return this.objToXml(MtomProcessorFlowParameter.class, mtomProcessorFlowParameter, prettyPrint).toString();
  15953.     }
  15954.    
  15955.    
  15956.    
  15957.     /*
  15958.      =================================================================================
  15959.      Object: routing-table-destinazione
  15960.      =================================================================================
  15961.     */
  15962.    
  15963.     /**
  15964.      * Serialize to file system in <var>fileName</var> the object <var>routingTableDestinazione</var> of type {@link org.openspcoop2.core.config.RoutingTableDestinazione}
  15965.      *
  15966.      * @param fileName Xml file to serialize the object <var>routingTableDestinazione</var>
  15967.      * @param routingTableDestinazione Object to be serialized in xml file <var>fileName</var>
  15968.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15969.      */
  15970.     public void write(String fileName,RoutingTableDestinazione routingTableDestinazione) throws SerializerException {
  15971.         this.objToXml(fileName, RoutingTableDestinazione.class, routingTableDestinazione, false);
  15972.     }
  15973.     /**
  15974.      * Serialize to file system in <var>fileName</var> the object <var>routingTableDestinazione</var> of type {@link org.openspcoop2.core.config.RoutingTableDestinazione}
  15975.      *
  15976.      * @param fileName Xml file to serialize the object <var>routingTableDestinazione</var>
  15977.      * @param routingTableDestinazione Object to be serialized in xml file <var>fileName</var>
  15978.      * @param prettyPrint if true output the XML with indenting
  15979.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15980.      */
  15981.     public void write(String fileName,RoutingTableDestinazione routingTableDestinazione,boolean prettyPrint) throws SerializerException {
  15982.         this.objToXml(fileName, RoutingTableDestinazione.class, routingTableDestinazione, prettyPrint);
  15983.     }
  15984.    
  15985.     /**
  15986.      * Serialize to file system in <var>file</var> the object <var>routingTableDestinazione</var> of type {@link org.openspcoop2.core.config.RoutingTableDestinazione}
  15987.      *
  15988.      * @param file Xml file to serialize the object <var>routingTableDestinazione</var>
  15989.      * @param routingTableDestinazione Object to be serialized in xml file <var>fileName</var>
  15990.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  15991.      */
  15992.     public void write(File file,RoutingTableDestinazione routingTableDestinazione) throws SerializerException {
  15993.         this.objToXml(file, RoutingTableDestinazione.class, routingTableDestinazione, false);
  15994.     }
  15995.     /**
  15996.      * Serialize to file system in <var>file</var> the object <var>routingTableDestinazione</var> of type {@link org.openspcoop2.core.config.RoutingTableDestinazione}
  15997.      *
  15998.      * @param file Xml file to serialize the object <var>routingTableDestinazione</var>
  15999.      * @param routingTableDestinazione Object to be serialized in xml file <var>fileName</var>
  16000.      * @param prettyPrint if true output the XML with indenting
  16001.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16002.      */
  16003.     public void write(File file,RoutingTableDestinazione routingTableDestinazione,boolean prettyPrint) throws SerializerException {
  16004.         this.objToXml(file, RoutingTableDestinazione.class, routingTableDestinazione, prettyPrint);
  16005.     }
  16006.    
  16007.     /**
  16008.      * Serialize to output stream <var>out</var> the object <var>routingTableDestinazione</var> of type {@link org.openspcoop2.core.config.RoutingTableDestinazione}
  16009.      *
  16010.      * @param out OutputStream to serialize the object <var>routingTableDestinazione</var>
  16011.      * @param routingTableDestinazione Object to be serialized in xml file <var>fileName</var>
  16012.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16013.      */
  16014.     public void write(OutputStream out,RoutingTableDestinazione routingTableDestinazione) throws SerializerException {
  16015.         this.objToXml(out, RoutingTableDestinazione.class, routingTableDestinazione, false);
  16016.     }
  16017.     /**
  16018.      * Serialize to output stream <var>out</var> the object <var>routingTableDestinazione</var> of type {@link org.openspcoop2.core.config.RoutingTableDestinazione}
  16019.      *
  16020.      * @param out OutputStream to serialize the object <var>routingTableDestinazione</var>
  16021.      * @param routingTableDestinazione Object to be serialized in xml file <var>fileName</var>
  16022.      * @param prettyPrint if true output the XML with indenting
  16023.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16024.      */
  16025.     public void write(OutputStream out,RoutingTableDestinazione routingTableDestinazione,boolean prettyPrint) throws SerializerException {
  16026.         this.objToXml(out, RoutingTableDestinazione.class, routingTableDestinazione, prettyPrint);
  16027.     }
  16028.            
  16029.     /**
  16030.      * Serialize to byte array the object <var>routingTableDestinazione</var> of type {@link org.openspcoop2.core.config.RoutingTableDestinazione}
  16031.      *
  16032.      * @param routingTableDestinazione Object to be serialized
  16033.      * @return Object to be serialized in byte array
  16034.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16035.      */
  16036.     public byte[] toByteArray(RoutingTableDestinazione routingTableDestinazione) throws SerializerException {
  16037.         return this.objToXml(RoutingTableDestinazione.class, routingTableDestinazione, false).toByteArray();
  16038.     }
  16039.     /**
  16040.      * Serialize to byte array the object <var>routingTableDestinazione</var> of type {@link org.openspcoop2.core.config.RoutingTableDestinazione}
  16041.      *
  16042.      * @param routingTableDestinazione Object to be serialized
  16043.      * @param prettyPrint if true output the XML with indenting
  16044.      * @return Object to be serialized in byte array
  16045.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16046.      */
  16047.     public byte[] toByteArray(RoutingTableDestinazione routingTableDestinazione,boolean prettyPrint) throws SerializerException {
  16048.         return this.objToXml(RoutingTableDestinazione.class, routingTableDestinazione, prettyPrint).toByteArray();
  16049.     }
  16050.    
  16051.     /**
  16052.      * Serialize to String the object <var>routingTableDestinazione</var> of type {@link org.openspcoop2.core.config.RoutingTableDestinazione}
  16053.      *
  16054.      * @param routingTableDestinazione Object to be serialized
  16055.      * @return Object to be serialized as String
  16056.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16057.      */
  16058.     public String toString(RoutingTableDestinazione routingTableDestinazione) throws SerializerException {
  16059.         return this.objToXml(RoutingTableDestinazione.class, routingTableDestinazione, false).toString();
  16060.     }
  16061.     /**
  16062.      * Serialize to String the object <var>routingTableDestinazione</var> of type {@link org.openspcoop2.core.config.RoutingTableDestinazione}
  16063.      *
  16064.      * @param routingTableDestinazione Object to be serialized
  16065.      * @param prettyPrint if true output the XML with indenting
  16066.      * @return Object to be serialized as String
  16067.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16068.      */
  16069.     public String toString(RoutingTableDestinazione routingTableDestinazione,boolean prettyPrint) throws SerializerException {
  16070.         return this.objToXml(RoutingTableDestinazione.class, routingTableDestinazione, prettyPrint).toString();
  16071.     }
  16072.    
  16073.    
  16074.    
  16075.     /*
  16076.      =================================================================================
  16077.      Object: invocazione-servizio
  16078.      =================================================================================
  16079.     */
  16080.    
  16081.     /**
  16082.      * Serialize to file system in <var>fileName</var> the object <var>invocazioneServizio</var> of type {@link org.openspcoop2.core.config.InvocazioneServizio}
  16083.      *
  16084.      * @param fileName Xml file to serialize the object <var>invocazioneServizio</var>
  16085.      * @param invocazioneServizio Object to be serialized in xml file <var>fileName</var>
  16086.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16087.      */
  16088.     public void write(String fileName,InvocazioneServizio invocazioneServizio) throws SerializerException {
  16089.         this.objToXml(fileName, InvocazioneServizio.class, invocazioneServizio, false);
  16090.     }
  16091.     /**
  16092.      * Serialize to file system in <var>fileName</var> the object <var>invocazioneServizio</var> of type {@link org.openspcoop2.core.config.InvocazioneServizio}
  16093.      *
  16094.      * @param fileName Xml file to serialize the object <var>invocazioneServizio</var>
  16095.      * @param invocazioneServizio Object to be serialized in xml file <var>fileName</var>
  16096.      * @param prettyPrint if true output the XML with indenting
  16097.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16098.      */
  16099.     public void write(String fileName,InvocazioneServizio invocazioneServizio,boolean prettyPrint) throws SerializerException {
  16100.         this.objToXml(fileName, InvocazioneServizio.class, invocazioneServizio, prettyPrint);
  16101.     }
  16102.    
  16103.     /**
  16104.      * Serialize to file system in <var>file</var> the object <var>invocazioneServizio</var> of type {@link org.openspcoop2.core.config.InvocazioneServizio}
  16105.      *
  16106.      * @param file Xml file to serialize the object <var>invocazioneServizio</var>
  16107.      * @param invocazioneServizio Object to be serialized in xml file <var>fileName</var>
  16108.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16109.      */
  16110.     public void write(File file,InvocazioneServizio invocazioneServizio) throws SerializerException {
  16111.         this.objToXml(file, InvocazioneServizio.class, invocazioneServizio, false);
  16112.     }
  16113.     /**
  16114.      * Serialize to file system in <var>file</var> the object <var>invocazioneServizio</var> of type {@link org.openspcoop2.core.config.InvocazioneServizio}
  16115.      *
  16116.      * @param file Xml file to serialize the object <var>invocazioneServizio</var>
  16117.      * @param invocazioneServizio Object to be serialized in xml file <var>fileName</var>
  16118.      * @param prettyPrint if true output the XML with indenting
  16119.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16120.      */
  16121.     public void write(File file,InvocazioneServizio invocazioneServizio,boolean prettyPrint) throws SerializerException {
  16122.         this.objToXml(file, InvocazioneServizio.class, invocazioneServizio, prettyPrint);
  16123.     }
  16124.    
  16125.     /**
  16126.      * Serialize to output stream <var>out</var> the object <var>invocazioneServizio</var> of type {@link org.openspcoop2.core.config.InvocazioneServizio}
  16127.      *
  16128.      * @param out OutputStream to serialize the object <var>invocazioneServizio</var>
  16129.      * @param invocazioneServizio Object to be serialized in xml file <var>fileName</var>
  16130.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16131.      */
  16132.     public void write(OutputStream out,InvocazioneServizio invocazioneServizio) throws SerializerException {
  16133.         this.objToXml(out, InvocazioneServizio.class, invocazioneServizio, false);
  16134.     }
  16135.     /**
  16136.      * Serialize to output stream <var>out</var> the object <var>invocazioneServizio</var> of type {@link org.openspcoop2.core.config.InvocazioneServizio}
  16137.      *
  16138.      * @param out OutputStream to serialize the object <var>invocazioneServizio</var>
  16139.      * @param invocazioneServizio Object to be serialized in xml file <var>fileName</var>
  16140.      * @param prettyPrint if true output the XML with indenting
  16141.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16142.      */
  16143.     public void write(OutputStream out,InvocazioneServizio invocazioneServizio,boolean prettyPrint) throws SerializerException {
  16144.         this.objToXml(out, InvocazioneServizio.class, invocazioneServizio, prettyPrint);
  16145.     }
  16146.            
  16147.     /**
  16148.      * Serialize to byte array the object <var>invocazioneServizio</var> of type {@link org.openspcoop2.core.config.InvocazioneServizio}
  16149.      *
  16150.      * @param invocazioneServizio Object to be serialized
  16151.      * @return Object to be serialized in byte array
  16152.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16153.      */
  16154.     public byte[] toByteArray(InvocazioneServizio invocazioneServizio) throws SerializerException {
  16155.         return this.objToXml(InvocazioneServizio.class, invocazioneServizio, false).toByteArray();
  16156.     }
  16157.     /**
  16158.      * Serialize to byte array the object <var>invocazioneServizio</var> of type {@link org.openspcoop2.core.config.InvocazioneServizio}
  16159.      *
  16160.      * @param invocazioneServizio Object to be serialized
  16161.      * @param prettyPrint if true output the XML with indenting
  16162.      * @return Object to be serialized in byte array
  16163.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16164.      */
  16165.     public byte[] toByteArray(InvocazioneServizio invocazioneServizio,boolean prettyPrint) throws SerializerException {
  16166.         return this.objToXml(InvocazioneServizio.class, invocazioneServizio, prettyPrint).toByteArray();
  16167.     }
  16168.    
  16169.     /**
  16170.      * Serialize to String the object <var>invocazioneServizio</var> of type {@link org.openspcoop2.core.config.InvocazioneServizio}
  16171.      *
  16172.      * @param invocazioneServizio Object to be serialized
  16173.      * @return Object to be serialized as String
  16174.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16175.      */
  16176.     public String toString(InvocazioneServizio invocazioneServizio) throws SerializerException {
  16177.         return this.objToXml(InvocazioneServizio.class, invocazioneServizio, false).toString();
  16178.     }
  16179.     /**
  16180.      * Serialize to String the object <var>invocazioneServizio</var> of type {@link org.openspcoop2.core.config.InvocazioneServizio}
  16181.      *
  16182.      * @param invocazioneServizio Object to be serialized
  16183.      * @param prettyPrint if true output the XML with indenting
  16184.      * @return Object to be serialized as String
  16185.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16186.      */
  16187.     public String toString(InvocazioneServizio invocazioneServizio,boolean prettyPrint) throws SerializerException {
  16188.         return this.objToXml(InvocazioneServizio.class, invocazioneServizio, prettyPrint).toString();
  16189.     }
  16190.    
  16191.    
  16192.    
  16193.     /*
  16194.      =================================================================================
  16195.      Object: protocol-property
  16196.      =================================================================================
  16197.     */
  16198.    
  16199.     /**
  16200.      * Serialize to file system in <var>fileName</var> the object <var>protocolProperty</var> of type {@link org.openspcoop2.core.config.ProtocolProperty}
  16201.      *
  16202.      * @param fileName Xml file to serialize the object <var>protocolProperty</var>
  16203.      * @param protocolProperty Object to be serialized in xml file <var>fileName</var>
  16204.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16205.      */
  16206.     public void write(String fileName,ProtocolProperty protocolProperty) throws SerializerException {
  16207.         this.objToXml(fileName, ProtocolProperty.class, protocolProperty, false);
  16208.     }
  16209.     /**
  16210.      * Serialize to file system in <var>fileName</var> the object <var>protocolProperty</var> of type {@link org.openspcoop2.core.config.ProtocolProperty}
  16211.      *
  16212.      * @param fileName Xml file to serialize the object <var>protocolProperty</var>
  16213.      * @param protocolProperty Object to be serialized in xml file <var>fileName</var>
  16214.      * @param prettyPrint if true output the XML with indenting
  16215.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16216.      */
  16217.     public void write(String fileName,ProtocolProperty protocolProperty,boolean prettyPrint) throws SerializerException {
  16218.         this.objToXml(fileName, ProtocolProperty.class, protocolProperty, prettyPrint);
  16219.     }
  16220.    
  16221.     /**
  16222.      * Serialize to file system in <var>file</var> the object <var>protocolProperty</var> of type {@link org.openspcoop2.core.config.ProtocolProperty}
  16223.      *
  16224.      * @param file Xml file to serialize the object <var>protocolProperty</var>
  16225.      * @param protocolProperty Object to be serialized in xml file <var>fileName</var>
  16226.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16227.      */
  16228.     public void write(File file,ProtocolProperty protocolProperty) throws SerializerException {
  16229.         this.objToXml(file, ProtocolProperty.class, protocolProperty, false);
  16230.     }
  16231.     /**
  16232.      * Serialize to file system in <var>file</var> the object <var>protocolProperty</var> of type {@link org.openspcoop2.core.config.ProtocolProperty}
  16233.      *
  16234.      * @param file Xml file to serialize the object <var>protocolProperty</var>
  16235.      * @param protocolProperty Object to be serialized in xml file <var>fileName</var>
  16236.      * @param prettyPrint if true output the XML with indenting
  16237.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16238.      */
  16239.     public void write(File file,ProtocolProperty protocolProperty,boolean prettyPrint) throws SerializerException {
  16240.         this.objToXml(file, ProtocolProperty.class, protocolProperty, prettyPrint);
  16241.     }
  16242.    
  16243.     /**
  16244.      * Serialize to output stream <var>out</var> the object <var>protocolProperty</var> of type {@link org.openspcoop2.core.config.ProtocolProperty}
  16245.      *
  16246.      * @param out OutputStream to serialize the object <var>protocolProperty</var>
  16247.      * @param protocolProperty Object to be serialized in xml file <var>fileName</var>
  16248.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16249.      */
  16250.     public void write(OutputStream out,ProtocolProperty protocolProperty) throws SerializerException {
  16251.         this.objToXml(out, ProtocolProperty.class, protocolProperty, false);
  16252.     }
  16253.     /**
  16254.      * Serialize to output stream <var>out</var> the object <var>protocolProperty</var> of type {@link org.openspcoop2.core.config.ProtocolProperty}
  16255.      *
  16256.      * @param out OutputStream to serialize the object <var>protocolProperty</var>
  16257.      * @param protocolProperty Object to be serialized in xml file <var>fileName</var>
  16258.      * @param prettyPrint if true output the XML with indenting
  16259.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16260.      */
  16261.     public void write(OutputStream out,ProtocolProperty protocolProperty,boolean prettyPrint) throws SerializerException {
  16262.         this.objToXml(out, ProtocolProperty.class, protocolProperty, prettyPrint);
  16263.     }
  16264.            
  16265.     /**
  16266.      * Serialize to byte array the object <var>protocolProperty</var> of type {@link org.openspcoop2.core.config.ProtocolProperty}
  16267.      *
  16268.      * @param protocolProperty Object to be serialized
  16269.      * @return Object to be serialized in byte array
  16270.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16271.      */
  16272.     public byte[] toByteArray(ProtocolProperty protocolProperty) throws SerializerException {
  16273.         return this.objToXml(ProtocolProperty.class, protocolProperty, false).toByteArray();
  16274.     }
  16275.     /**
  16276.      * Serialize to byte array the object <var>protocolProperty</var> of type {@link org.openspcoop2.core.config.ProtocolProperty}
  16277.      *
  16278.      * @param protocolProperty Object to be serialized
  16279.      * @param prettyPrint if true output the XML with indenting
  16280.      * @return Object to be serialized in byte array
  16281.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16282.      */
  16283.     public byte[] toByteArray(ProtocolProperty protocolProperty,boolean prettyPrint) throws SerializerException {
  16284.         return this.objToXml(ProtocolProperty.class, protocolProperty, prettyPrint).toByteArray();
  16285.     }
  16286.    
  16287.     /**
  16288.      * Serialize to String the object <var>protocolProperty</var> of type {@link org.openspcoop2.core.config.ProtocolProperty}
  16289.      *
  16290.      * @param protocolProperty Object to be serialized
  16291.      * @return Object to be serialized as String
  16292.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16293.      */
  16294.     public String toString(ProtocolProperty protocolProperty) throws SerializerException {
  16295.         return this.objToXml(ProtocolProperty.class, protocolProperty, false).toString();
  16296.     }
  16297.     /**
  16298.      * Serialize to String the object <var>protocolProperty</var> of type {@link org.openspcoop2.core.config.ProtocolProperty}
  16299.      *
  16300.      * @param protocolProperty Object to be serialized
  16301.      * @param prettyPrint if true output the XML with indenting
  16302.      * @return Object to be serialized as String
  16303.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16304.      */
  16305.     public String toString(ProtocolProperty protocolProperty,boolean prettyPrint) throws SerializerException {
  16306.         return this.objToXml(ProtocolProperty.class, protocolProperty, prettyPrint).toString();
  16307.     }
  16308.    
  16309.    
  16310.    
  16311.     /*
  16312.      =================================================================================
  16313.      Object: stato-servizi-pdd-porta-delegata
  16314.      =================================================================================
  16315.     */
  16316.    
  16317.     /**
  16318.      * Serialize to file system in <var>fileName</var> the object <var>statoServiziPddPortaDelegata</var> of type {@link org.openspcoop2.core.config.StatoServiziPddPortaDelegata}
  16319.      *
  16320.      * @param fileName Xml file to serialize the object <var>statoServiziPddPortaDelegata</var>
  16321.      * @param statoServiziPddPortaDelegata Object to be serialized in xml file <var>fileName</var>
  16322.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16323.      */
  16324.     public void write(String fileName,StatoServiziPddPortaDelegata statoServiziPddPortaDelegata) throws SerializerException {
  16325.         this.objToXml(fileName, StatoServiziPddPortaDelegata.class, statoServiziPddPortaDelegata, false);
  16326.     }
  16327.     /**
  16328.      * Serialize to file system in <var>fileName</var> the object <var>statoServiziPddPortaDelegata</var> of type {@link org.openspcoop2.core.config.StatoServiziPddPortaDelegata}
  16329.      *
  16330.      * @param fileName Xml file to serialize the object <var>statoServiziPddPortaDelegata</var>
  16331.      * @param statoServiziPddPortaDelegata Object to be serialized in xml file <var>fileName</var>
  16332.      * @param prettyPrint if true output the XML with indenting
  16333.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16334.      */
  16335.     public void write(String fileName,StatoServiziPddPortaDelegata statoServiziPddPortaDelegata,boolean prettyPrint) throws SerializerException {
  16336.         this.objToXml(fileName, StatoServiziPddPortaDelegata.class, statoServiziPddPortaDelegata, prettyPrint);
  16337.     }
  16338.    
  16339.     /**
  16340.      * Serialize to file system in <var>file</var> the object <var>statoServiziPddPortaDelegata</var> of type {@link org.openspcoop2.core.config.StatoServiziPddPortaDelegata}
  16341.      *
  16342.      * @param file Xml file to serialize the object <var>statoServiziPddPortaDelegata</var>
  16343.      * @param statoServiziPddPortaDelegata Object to be serialized in xml file <var>fileName</var>
  16344.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16345.      */
  16346.     public void write(File file,StatoServiziPddPortaDelegata statoServiziPddPortaDelegata) throws SerializerException {
  16347.         this.objToXml(file, StatoServiziPddPortaDelegata.class, statoServiziPddPortaDelegata, false);
  16348.     }
  16349.     /**
  16350.      * Serialize to file system in <var>file</var> the object <var>statoServiziPddPortaDelegata</var> of type {@link org.openspcoop2.core.config.StatoServiziPddPortaDelegata}
  16351.      *
  16352.      * @param file Xml file to serialize the object <var>statoServiziPddPortaDelegata</var>
  16353.      * @param statoServiziPddPortaDelegata Object to be serialized in xml file <var>fileName</var>
  16354.      * @param prettyPrint if true output the XML with indenting
  16355.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16356.      */
  16357.     public void write(File file,StatoServiziPddPortaDelegata statoServiziPddPortaDelegata,boolean prettyPrint) throws SerializerException {
  16358.         this.objToXml(file, StatoServiziPddPortaDelegata.class, statoServiziPddPortaDelegata, prettyPrint);
  16359.     }
  16360.    
  16361.     /**
  16362.      * Serialize to output stream <var>out</var> the object <var>statoServiziPddPortaDelegata</var> of type {@link org.openspcoop2.core.config.StatoServiziPddPortaDelegata}
  16363.      *
  16364.      * @param out OutputStream to serialize the object <var>statoServiziPddPortaDelegata</var>
  16365.      * @param statoServiziPddPortaDelegata Object to be serialized in xml file <var>fileName</var>
  16366.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16367.      */
  16368.     public void write(OutputStream out,StatoServiziPddPortaDelegata statoServiziPddPortaDelegata) throws SerializerException {
  16369.         this.objToXml(out, StatoServiziPddPortaDelegata.class, statoServiziPddPortaDelegata, false);
  16370.     }
  16371.     /**
  16372.      * Serialize to output stream <var>out</var> the object <var>statoServiziPddPortaDelegata</var> of type {@link org.openspcoop2.core.config.StatoServiziPddPortaDelegata}
  16373.      *
  16374.      * @param out OutputStream to serialize the object <var>statoServiziPddPortaDelegata</var>
  16375.      * @param statoServiziPddPortaDelegata Object to be serialized in xml file <var>fileName</var>
  16376.      * @param prettyPrint if true output the XML with indenting
  16377.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16378.      */
  16379.     public void write(OutputStream out,StatoServiziPddPortaDelegata statoServiziPddPortaDelegata,boolean prettyPrint) throws SerializerException {
  16380.         this.objToXml(out, StatoServiziPddPortaDelegata.class, statoServiziPddPortaDelegata, prettyPrint);
  16381.     }
  16382.            
  16383.     /**
  16384.      * Serialize to byte array the object <var>statoServiziPddPortaDelegata</var> of type {@link org.openspcoop2.core.config.StatoServiziPddPortaDelegata}
  16385.      *
  16386.      * @param statoServiziPddPortaDelegata Object to be serialized
  16387.      * @return Object to be serialized in byte array
  16388.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16389.      */
  16390.     public byte[] toByteArray(StatoServiziPddPortaDelegata statoServiziPddPortaDelegata) throws SerializerException {
  16391.         return this.objToXml(StatoServiziPddPortaDelegata.class, statoServiziPddPortaDelegata, false).toByteArray();
  16392.     }
  16393.     /**
  16394.      * Serialize to byte array the object <var>statoServiziPddPortaDelegata</var> of type {@link org.openspcoop2.core.config.StatoServiziPddPortaDelegata}
  16395.      *
  16396.      * @param statoServiziPddPortaDelegata Object to be serialized
  16397.      * @param prettyPrint if true output the XML with indenting
  16398.      * @return Object to be serialized in byte array
  16399.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16400.      */
  16401.     public byte[] toByteArray(StatoServiziPddPortaDelegata statoServiziPddPortaDelegata,boolean prettyPrint) throws SerializerException {
  16402.         return this.objToXml(StatoServiziPddPortaDelegata.class, statoServiziPddPortaDelegata, prettyPrint).toByteArray();
  16403.     }
  16404.    
  16405.     /**
  16406.      * Serialize to String the object <var>statoServiziPddPortaDelegata</var> of type {@link org.openspcoop2.core.config.StatoServiziPddPortaDelegata}
  16407.      *
  16408.      * @param statoServiziPddPortaDelegata Object to be serialized
  16409.      * @return Object to be serialized as String
  16410.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16411.      */
  16412.     public String toString(StatoServiziPddPortaDelegata statoServiziPddPortaDelegata) throws SerializerException {
  16413.         return this.objToXml(StatoServiziPddPortaDelegata.class, statoServiziPddPortaDelegata, false).toString();
  16414.     }
  16415.     /**
  16416.      * Serialize to String the object <var>statoServiziPddPortaDelegata</var> of type {@link org.openspcoop2.core.config.StatoServiziPddPortaDelegata}
  16417.      *
  16418.      * @param statoServiziPddPortaDelegata Object to be serialized
  16419.      * @param prettyPrint if true output the XML with indenting
  16420.      * @return Object to be serialized as String
  16421.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16422.      */
  16423.     public String toString(StatoServiziPddPortaDelegata statoServiziPddPortaDelegata,boolean prettyPrint) throws SerializerException {
  16424.         return this.objToXml(StatoServiziPddPortaDelegata.class, statoServiziPddPortaDelegata, prettyPrint).toString();
  16425.     }
  16426.    
  16427.    
  16428.    
  16429.     /*
  16430.      =================================================================================
  16431.      Object: stato-servizi-pdd-integration-manager
  16432.      =================================================================================
  16433.     */
  16434.    
  16435.     /**
  16436.      * Serialize to file system in <var>fileName</var> the object <var>statoServiziPddIntegrationManager</var> of type {@link org.openspcoop2.core.config.StatoServiziPddIntegrationManager}
  16437.      *
  16438.      * @param fileName Xml file to serialize the object <var>statoServiziPddIntegrationManager</var>
  16439.      * @param statoServiziPddIntegrationManager Object to be serialized in xml file <var>fileName</var>
  16440.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16441.      */
  16442.     public void write(String fileName,StatoServiziPddIntegrationManager statoServiziPddIntegrationManager) throws SerializerException {
  16443.         this.objToXml(fileName, StatoServiziPddIntegrationManager.class, statoServiziPddIntegrationManager, false);
  16444.     }
  16445.     /**
  16446.      * Serialize to file system in <var>fileName</var> the object <var>statoServiziPddIntegrationManager</var> of type {@link org.openspcoop2.core.config.StatoServiziPddIntegrationManager}
  16447.      *
  16448.      * @param fileName Xml file to serialize the object <var>statoServiziPddIntegrationManager</var>
  16449.      * @param statoServiziPddIntegrationManager Object to be serialized in xml file <var>fileName</var>
  16450.      * @param prettyPrint if true output the XML with indenting
  16451.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16452.      */
  16453.     public void write(String fileName,StatoServiziPddIntegrationManager statoServiziPddIntegrationManager,boolean prettyPrint) throws SerializerException {
  16454.         this.objToXml(fileName, StatoServiziPddIntegrationManager.class, statoServiziPddIntegrationManager, prettyPrint);
  16455.     }
  16456.    
  16457.     /**
  16458.      * Serialize to file system in <var>file</var> the object <var>statoServiziPddIntegrationManager</var> of type {@link org.openspcoop2.core.config.StatoServiziPddIntegrationManager}
  16459.      *
  16460.      * @param file Xml file to serialize the object <var>statoServiziPddIntegrationManager</var>
  16461.      * @param statoServiziPddIntegrationManager Object to be serialized in xml file <var>fileName</var>
  16462.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16463.      */
  16464.     public void write(File file,StatoServiziPddIntegrationManager statoServiziPddIntegrationManager) throws SerializerException {
  16465.         this.objToXml(file, StatoServiziPddIntegrationManager.class, statoServiziPddIntegrationManager, false);
  16466.     }
  16467.     /**
  16468.      * Serialize to file system in <var>file</var> the object <var>statoServiziPddIntegrationManager</var> of type {@link org.openspcoop2.core.config.StatoServiziPddIntegrationManager}
  16469.      *
  16470.      * @param file Xml file to serialize the object <var>statoServiziPddIntegrationManager</var>
  16471.      * @param statoServiziPddIntegrationManager Object to be serialized in xml file <var>fileName</var>
  16472.      * @param prettyPrint if true output the XML with indenting
  16473.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16474.      */
  16475.     public void write(File file,StatoServiziPddIntegrationManager statoServiziPddIntegrationManager,boolean prettyPrint) throws SerializerException {
  16476.         this.objToXml(file, StatoServiziPddIntegrationManager.class, statoServiziPddIntegrationManager, prettyPrint);
  16477.     }
  16478.    
  16479.     /**
  16480.      * Serialize to output stream <var>out</var> the object <var>statoServiziPddIntegrationManager</var> of type {@link org.openspcoop2.core.config.StatoServiziPddIntegrationManager}
  16481.      *
  16482.      * @param out OutputStream to serialize the object <var>statoServiziPddIntegrationManager</var>
  16483.      * @param statoServiziPddIntegrationManager Object to be serialized in xml file <var>fileName</var>
  16484.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16485.      */
  16486.     public void write(OutputStream out,StatoServiziPddIntegrationManager statoServiziPddIntegrationManager) throws SerializerException {
  16487.         this.objToXml(out, StatoServiziPddIntegrationManager.class, statoServiziPddIntegrationManager, false);
  16488.     }
  16489.     /**
  16490.      * Serialize to output stream <var>out</var> the object <var>statoServiziPddIntegrationManager</var> of type {@link org.openspcoop2.core.config.StatoServiziPddIntegrationManager}
  16491.      *
  16492.      * @param out OutputStream to serialize the object <var>statoServiziPddIntegrationManager</var>
  16493.      * @param statoServiziPddIntegrationManager Object to be serialized in xml file <var>fileName</var>
  16494.      * @param prettyPrint if true output the XML with indenting
  16495.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16496.      */
  16497.     public void write(OutputStream out,StatoServiziPddIntegrationManager statoServiziPddIntegrationManager,boolean prettyPrint) throws SerializerException {
  16498.         this.objToXml(out, StatoServiziPddIntegrationManager.class, statoServiziPddIntegrationManager, prettyPrint);
  16499.     }
  16500.            
  16501.     /**
  16502.      * Serialize to byte array the object <var>statoServiziPddIntegrationManager</var> of type {@link org.openspcoop2.core.config.StatoServiziPddIntegrationManager}
  16503.      *
  16504.      * @param statoServiziPddIntegrationManager Object to be serialized
  16505.      * @return Object to be serialized in byte array
  16506.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16507.      */
  16508.     public byte[] toByteArray(StatoServiziPddIntegrationManager statoServiziPddIntegrationManager) throws SerializerException {
  16509.         return this.objToXml(StatoServiziPddIntegrationManager.class, statoServiziPddIntegrationManager, false).toByteArray();
  16510.     }
  16511.     /**
  16512.      * Serialize to byte array the object <var>statoServiziPddIntegrationManager</var> of type {@link org.openspcoop2.core.config.StatoServiziPddIntegrationManager}
  16513.      *
  16514.      * @param statoServiziPddIntegrationManager Object to be serialized
  16515.      * @param prettyPrint if true output the XML with indenting
  16516.      * @return Object to be serialized in byte array
  16517.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16518.      */
  16519.     public byte[] toByteArray(StatoServiziPddIntegrationManager statoServiziPddIntegrationManager,boolean prettyPrint) throws SerializerException {
  16520.         return this.objToXml(StatoServiziPddIntegrationManager.class, statoServiziPddIntegrationManager, prettyPrint).toByteArray();
  16521.     }
  16522.    
  16523.     /**
  16524.      * Serialize to String the object <var>statoServiziPddIntegrationManager</var> of type {@link org.openspcoop2.core.config.StatoServiziPddIntegrationManager}
  16525.      *
  16526.      * @param statoServiziPddIntegrationManager Object to be serialized
  16527.      * @return Object to be serialized as String
  16528.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16529.      */
  16530.     public String toString(StatoServiziPddIntegrationManager statoServiziPddIntegrationManager) throws SerializerException {
  16531.         return this.objToXml(StatoServiziPddIntegrationManager.class, statoServiziPddIntegrationManager, false).toString();
  16532.     }
  16533.     /**
  16534.      * Serialize to String the object <var>statoServiziPddIntegrationManager</var> of type {@link org.openspcoop2.core.config.StatoServiziPddIntegrationManager}
  16535.      *
  16536.      * @param statoServiziPddIntegrationManager Object to be serialized
  16537.      * @param prettyPrint if true output the XML with indenting
  16538.      * @return Object to be serialized as String
  16539.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16540.      */
  16541.     public String toString(StatoServiziPddIntegrationManager statoServiziPddIntegrationManager,boolean prettyPrint) throws SerializerException {
  16542.         return this.objToXml(StatoServiziPddIntegrationManager.class, statoServiziPddIntegrationManager, prettyPrint).toString();
  16543.     }
  16544.    
  16545.    
  16546.    
  16547.     /*
  16548.      =================================================================================
  16549.      Object: dump-configurazione-regola
  16550.      =================================================================================
  16551.     */
  16552.    
  16553.     /**
  16554.      * Serialize to file system in <var>fileName</var> the object <var>dumpConfigurazioneRegola</var> of type {@link org.openspcoop2.core.config.DumpConfigurazioneRegola}
  16555.      *
  16556.      * @param fileName Xml file to serialize the object <var>dumpConfigurazioneRegola</var>
  16557.      * @param dumpConfigurazioneRegola Object to be serialized in xml file <var>fileName</var>
  16558.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16559.      */
  16560.     public void write(String fileName,DumpConfigurazioneRegola dumpConfigurazioneRegola) throws SerializerException {
  16561.         this.objToXml(fileName, DumpConfigurazioneRegola.class, dumpConfigurazioneRegola, false);
  16562.     }
  16563.     /**
  16564.      * Serialize to file system in <var>fileName</var> the object <var>dumpConfigurazioneRegola</var> of type {@link org.openspcoop2.core.config.DumpConfigurazioneRegola}
  16565.      *
  16566.      * @param fileName Xml file to serialize the object <var>dumpConfigurazioneRegola</var>
  16567.      * @param dumpConfigurazioneRegola Object to be serialized in xml file <var>fileName</var>
  16568.      * @param prettyPrint if true output the XML with indenting
  16569.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16570.      */
  16571.     public void write(String fileName,DumpConfigurazioneRegola dumpConfigurazioneRegola,boolean prettyPrint) throws SerializerException {
  16572.         this.objToXml(fileName, DumpConfigurazioneRegola.class, dumpConfigurazioneRegola, prettyPrint);
  16573.     }
  16574.    
  16575.     /**
  16576.      * Serialize to file system in <var>file</var> the object <var>dumpConfigurazioneRegola</var> of type {@link org.openspcoop2.core.config.DumpConfigurazioneRegola}
  16577.      *
  16578.      * @param file Xml file to serialize the object <var>dumpConfigurazioneRegola</var>
  16579.      * @param dumpConfigurazioneRegola Object to be serialized in xml file <var>fileName</var>
  16580.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16581.      */
  16582.     public void write(File file,DumpConfigurazioneRegola dumpConfigurazioneRegola) throws SerializerException {
  16583.         this.objToXml(file, DumpConfigurazioneRegola.class, dumpConfigurazioneRegola, false);
  16584.     }
  16585.     /**
  16586.      * Serialize to file system in <var>file</var> the object <var>dumpConfigurazioneRegola</var> of type {@link org.openspcoop2.core.config.DumpConfigurazioneRegola}
  16587.      *
  16588.      * @param file Xml file to serialize the object <var>dumpConfigurazioneRegola</var>
  16589.      * @param dumpConfigurazioneRegola Object to be serialized in xml file <var>fileName</var>
  16590.      * @param prettyPrint if true output the XML with indenting
  16591.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16592.      */
  16593.     public void write(File file,DumpConfigurazioneRegola dumpConfigurazioneRegola,boolean prettyPrint) throws SerializerException {
  16594.         this.objToXml(file, DumpConfigurazioneRegola.class, dumpConfigurazioneRegola, prettyPrint);
  16595.     }
  16596.    
  16597.     /**
  16598.      * Serialize to output stream <var>out</var> the object <var>dumpConfigurazioneRegola</var> of type {@link org.openspcoop2.core.config.DumpConfigurazioneRegola}
  16599.      *
  16600.      * @param out OutputStream to serialize the object <var>dumpConfigurazioneRegola</var>
  16601.      * @param dumpConfigurazioneRegola Object to be serialized in xml file <var>fileName</var>
  16602.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16603.      */
  16604.     public void write(OutputStream out,DumpConfigurazioneRegola dumpConfigurazioneRegola) throws SerializerException {
  16605.         this.objToXml(out, DumpConfigurazioneRegola.class, dumpConfigurazioneRegola, false);
  16606.     }
  16607.     /**
  16608.      * Serialize to output stream <var>out</var> the object <var>dumpConfigurazioneRegola</var> of type {@link org.openspcoop2.core.config.DumpConfigurazioneRegola}
  16609.      *
  16610.      * @param out OutputStream to serialize the object <var>dumpConfigurazioneRegola</var>
  16611.      * @param dumpConfigurazioneRegola Object to be serialized in xml file <var>fileName</var>
  16612.      * @param prettyPrint if true output the XML with indenting
  16613.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16614.      */
  16615.     public void write(OutputStream out,DumpConfigurazioneRegola dumpConfigurazioneRegola,boolean prettyPrint) throws SerializerException {
  16616.         this.objToXml(out, DumpConfigurazioneRegola.class, dumpConfigurazioneRegola, prettyPrint);
  16617.     }
  16618.            
  16619.     /**
  16620.      * Serialize to byte array the object <var>dumpConfigurazioneRegola</var> of type {@link org.openspcoop2.core.config.DumpConfigurazioneRegola}
  16621.      *
  16622.      * @param dumpConfigurazioneRegola Object to be serialized
  16623.      * @return Object to be serialized in byte array
  16624.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16625.      */
  16626.     public byte[] toByteArray(DumpConfigurazioneRegola dumpConfigurazioneRegola) throws SerializerException {
  16627.         return this.objToXml(DumpConfigurazioneRegola.class, dumpConfigurazioneRegola, false).toByteArray();
  16628.     }
  16629.     /**
  16630.      * Serialize to byte array the object <var>dumpConfigurazioneRegola</var> of type {@link org.openspcoop2.core.config.DumpConfigurazioneRegola}
  16631.      *
  16632.      * @param dumpConfigurazioneRegola Object to be serialized
  16633.      * @param prettyPrint if true output the XML with indenting
  16634.      * @return Object to be serialized in byte array
  16635.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16636.      */
  16637.     public byte[] toByteArray(DumpConfigurazioneRegola dumpConfigurazioneRegola,boolean prettyPrint) throws SerializerException {
  16638.         return this.objToXml(DumpConfigurazioneRegola.class, dumpConfigurazioneRegola, prettyPrint).toByteArray();
  16639.     }
  16640.    
  16641.     /**
  16642.      * Serialize to String the object <var>dumpConfigurazioneRegola</var> of type {@link org.openspcoop2.core.config.DumpConfigurazioneRegola}
  16643.      *
  16644.      * @param dumpConfigurazioneRegola Object to be serialized
  16645.      * @return Object to be serialized as String
  16646.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16647.      */
  16648.     public String toString(DumpConfigurazioneRegola dumpConfigurazioneRegola) throws SerializerException {
  16649.         return this.objToXml(DumpConfigurazioneRegola.class, dumpConfigurazioneRegola, false).toString();
  16650.     }
  16651.     /**
  16652.      * Serialize to String the object <var>dumpConfigurazioneRegola</var> of type {@link org.openspcoop2.core.config.DumpConfigurazioneRegola}
  16653.      *
  16654.      * @param dumpConfigurazioneRegola Object to be serialized
  16655.      * @param prettyPrint if true output the XML with indenting
  16656.      * @return Object to be serialized as String
  16657.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16658.      */
  16659.     public String toString(DumpConfigurazioneRegola dumpConfigurazioneRegola,boolean prettyPrint) throws SerializerException {
  16660.         return this.objToXml(DumpConfigurazioneRegola.class, dumpConfigurazioneRegola, prettyPrint).toString();
  16661.     }
  16662.    
  16663.    
  16664.    
  16665.     /*
  16666.      =================================================================================
  16667.      Object: message-security-flow
  16668.      =================================================================================
  16669.     */
  16670.    
  16671.     /**
  16672.      * Serialize to file system in <var>fileName</var> the object <var>messageSecurityFlow</var> of type {@link org.openspcoop2.core.config.MessageSecurityFlow}
  16673.      *
  16674.      * @param fileName Xml file to serialize the object <var>messageSecurityFlow</var>
  16675.      * @param messageSecurityFlow Object to be serialized in xml file <var>fileName</var>
  16676.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16677.      */
  16678.     public void write(String fileName,MessageSecurityFlow messageSecurityFlow) throws SerializerException {
  16679.         this.objToXml(fileName, MessageSecurityFlow.class, messageSecurityFlow, false);
  16680.     }
  16681.     /**
  16682.      * Serialize to file system in <var>fileName</var> the object <var>messageSecurityFlow</var> of type {@link org.openspcoop2.core.config.MessageSecurityFlow}
  16683.      *
  16684.      * @param fileName Xml file to serialize the object <var>messageSecurityFlow</var>
  16685.      * @param messageSecurityFlow Object to be serialized in xml file <var>fileName</var>
  16686.      * @param prettyPrint if true output the XML with indenting
  16687.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16688.      */
  16689.     public void write(String fileName,MessageSecurityFlow messageSecurityFlow,boolean prettyPrint) throws SerializerException {
  16690.         this.objToXml(fileName, MessageSecurityFlow.class, messageSecurityFlow, prettyPrint);
  16691.     }
  16692.    
  16693.     /**
  16694.      * Serialize to file system in <var>file</var> the object <var>messageSecurityFlow</var> of type {@link org.openspcoop2.core.config.MessageSecurityFlow}
  16695.      *
  16696.      * @param file Xml file to serialize the object <var>messageSecurityFlow</var>
  16697.      * @param messageSecurityFlow Object to be serialized in xml file <var>fileName</var>
  16698.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16699.      */
  16700.     public void write(File file,MessageSecurityFlow messageSecurityFlow) throws SerializerException {
  16701.         this.objToXml(file, MessageSecurityFlow.class, messageSecurityFlow, false);
  16702.     }
  16703.     /**
  16704.      * Serialize to file system in <var>file</var> the object <var>messageSecurityFlow</var> of type {@link org.openspcoop2.core.config.MessageSecurityFlow}
  16705.      *
  16706.      * @param file Xml file to serialize the object <var>messageSecurityFlow</var>
  16707.      * @param messageSecurityFlow Object to be serialized in xml file <var>fileName</var>
  16708.      * @param prettyPrint if true output the XML with indenting
  16709.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16710.      */
  16711.     public void write(File file,MessageSecurityFlow messageSecurityFlow,boolean prettyPrint) throws SerializerException {
  16712.         this.objToXml(file, MessageSecurityFlow.class, messageSecurityFlow, prettyPrint);
  16713.     }
  16714.    
  16715.     /**
  16716.      * Serialize to output stream <var>out</var> the object <var>messageSecurityFlow</var> of type {@link org.openspcoop2.core.config.MessageSecurityFlow}
  16717.      *
  16718.      * @param out OutputStream to serialize the object <var>messageSecurityFlow</var>
  16719.      * @param messageSecurityFlow Object to be serialized in xml file <var>fileName</var>
  16720.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16721.      */
  16722.     public void write(OutputStream out,MessageSecurityFlow messageSecurityFlow) throws SerializerException {
  16723.         this.objToXml(out, MessageSecurityFlow.class, messageSecurityFlow, false);
  16724.     }
  16725.     /**
  16726.      * Serialize to output stream <var>out</var> the object <var>messageSecurityFlow</var> of type {@link org.openspcoop2.core.config.MessageSecurityFlow}
  16727.      *
  16728.      * @param out OutputStream to serialize the object <var>messageSecurityFlow</var>
  16729.      * @param messageSecurityFlow Object to be serialized in xml file <var>fileName</var>
  16730.      * @param prettyPrint if true output the XML with indenting
  16731.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16732.      */
  16733.     public void write(OutputStream out,MessageSecurityFlow messageSecurityFlow,boolean prettyPrint) throws SerializerException {
  16734.         this.objToXml(out, MessageSecurityFlow.class, messageSecurityFlow, prettyPrint);
  16735.     }
  16736.            
  16737.     /**
  16738.      * Serialize to byte array the object <var>messageSecurityFlow</var> of type {@link org.openspcoop2.core.config.MessageSecurityFlow}
  16739.      *
  16740.      * @param messageSecurityFlow Object to be serialized
  16741.      * @return Object to be serialized in byte array
  16742.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16743.      */
  16744.     public byte[] toByteArray(MessageSecurityFlow messageSecurityFlow) throws SerializerException {
  16745.         return this.objToXml(MessageSecurityFlow.class, messageSecurityFlow, false).toByteArray();
  16746.     }
  16747.     /**
  16748.      * Serialize to byte array the object <var>messageSecurityFlow</var> of type {@link org.openspcoop2.core.config.MessageSecurityFlow}
  16749.      *
  16750.      * @param messageSecurityFlow Object to be serialized
  16751.      * @param prettyPrint if true output the XML with indenting
  16752.      * @return Object to be serialized in byte array
  16753.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16754.      */
  16755.     public byte[] toByteArray(MessageSecurityFlow messageSecurityFlow,boolean prettyPrint) throws SerializerException {
  16756.         return this.objToXml(MessageSecurityFlow.class, messageSecurityFlow, prettyPrint).toByteArray();
  16757.     }
  16758.    
  16759.     /**
  16760.      * Serialize to String the object <var>messageSecurityFlow</var> of type {@link org.openspcoop2.core.config.MessageSecurityFlow}
  16761.      *
  16762.      * @param messageSecurityFlow Object to be serialized
  16763.      * @return Object to be serialized as String
  16764.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16765.      */
  16766.     public String toString(MessageSecurityFlow messageSecurityFlow) throws SerializerException {
  16767.         return this.objToXml(MessageSecurityFlow.class, messageSecurityFlow, false).toString();
  16768.     }
  16769.     /**
  16770.      * Serialize to String the object <var>messageSecurityFlow</var> of type {@link org.openspcoop2.core.config.MessageSecurityFlow}
  16771.      *
  16772.      * @param messageSecurityFlow Object to be serialized
  16773.      * @param prettyPrint if true output the XML with indenting
  16774.      * @return Object to be serialized as String
  16775.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  16776.      */
  16777.     public String toString(MessageSecurityFlow messageSecurityFlow,boolean prettyPrint) throws SerializerException {
  16778.         return this.objToXml(MessageSecurityFlow.class, messageSecurityFlow, prettyPrint).toString();
  16779.     }
  16780.    
  16781.    
  16782.    

  16783. }