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.protocol.information_missing.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.protocol.information_missing.ReplaceMatchFieldType;
  25. import org.openspcoop2.protocol.information_missing.ReplaceMatchType;
  26. import org.openspcoop2.protocol.information_missing.ConditionsType;
  27. import org.openspcoop2.protocol.information_missing.Fruitore;
  28. import org.openspcoop2.protocol.information_missing.ReplaceFruitoreMatchType;
  29. import org.openspcoop2.protocol.information_missing.PortaDelegata;
  30. import org.openspcoop2.protocol.information_missing.ProprietaRequisitoInput;
  31. import org.openspcoop2.protocol.information_missing.ProprietaDefault;
  32. import org.openspcoop2.protocol.information_missing.AccordoServizioParteSpecifica;
  33. import org.openspcoop2.protocol.information_missing.Default;
  34. import org.openspcoop2.protocol.information_missing.DescriptionType;
  35. import org.openspcoop2.protocol.information_missing.ConditionType;
  36. import org.openspcoop2.protocol.information_missing.AccordoServizioParteComune;
  37. import org.openspcoop2.protocol.information_missing.PortaApplicativa;
  38. import org.openspcoop2.protocol.information_missing.ServizioApplicativo;
  39. import org.openspcoop2.protocol.information_missing.RequisitoProtocollo;
  40. import org.openspcoop2.protocol.information_missing.AccordoCooperazione;
  41. import org.openspcoop2.protocol.information_missing.Requisiti;
  42. import org.openspcoop2.protocol.information_missing.RequisitoInput;
  43. import org.openspcoop2.protocol.information_missing.Openspcoop2;
  44. import org.openspcoop2.protocol.information_missing.Operazione;
  45. import org.openspcoop2.protocol.information_missing.Soggetto;
  46. import org.openspcoop2.protocol.information_missing.Input;
  47. import org.openspcoop2.protocol.information_missing.Proprieta;
  48. import org.openspcoop2.protocol.information_missing.Wizard;
  49. import org.openspcoop2.protocol.information_missing.Description;

  50. import java.io.ByteArrayOutputStream;
  51. import java.io.FileOutputStream;
  52. import java.io.OutputStream;
  53. import java.io.File;
  54. import java.lang.reflect.Method;

  55. import javax.xml.bind.JAXBElement;

  56. /**    
  57.  * XML Serializer of beans
  58.  *
  59.  * @author Poli Andrea (poli@link.it)
  60.  * @author $Author$
  61.  * @version $Rev$, $Date$
  62.  */
  63. public abstract class AbstractSerializer {


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




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

  3217. }