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.manifest.utils.serializer;

  21. import org.openspcoop2.generic_project.exception.SerializerException;
  22. import org.openspcoop2.utils.beans.WriteToSerializerType;
  23. import org.openspcoop2.utils.xml.JaxbUtils;

  24. import org.openspcoop2.protocol.manifest.Protocol;
  25. import org.openspcoop2.protocol.manifest.Openspcoop2;
  26. import org.openspcoop2.protocol.manifest.Binding;
  27. import org.openspcoop2.protocol.manifest.Web;
  28. import org.openspcoop2.protocol.manifest.Registry;
  29. import org.openspcoop2.protocol.manifest.UrlMapping;
  30. import org.openspcoop2.protocol.manifest.ServiceTypes;
  31. import org.openspcoop2.protocol.manifest.Service;
  32. import org.openspcoop2.protocol.manifest.SoapMediaTypeMapping;
  33. import org.openspcoop2.protocol.manifest.SoapMediaTypeCollection;
  34. import org.openspcoop2.protocol.manifest.SoapMediaTypeDefaultMapping;
  35. import org.openspcoop2.protocol.manifest.SoapMediaTypeUndefinedMapping;
  36. import org.openspcoop2.protocol.manifest.IntegrationErrorCode;
  37. import org.openspcoop2.protocol.manifest.Integration;
  38. import org.openspcoop2.protocol.manifest.RestConfiguration;
  39. import org.openspcoop2.protocol.manifest.IntegrationErrorConfiguration;
  40. import org.openspcoop2.protocol.manifest.RestMediaTypeCollection;
  41. import org.openspcoop2.protocol.manifest.InterfacesConfiguration;
  42. import org.openspcoop2.protocol.manifest.RestCollaborationProfile;
  43. import org.openspcoop2.protocol.manifest.Functionality;
  44. import org.openspcoop2.protocol.manifest.IntegrationErrorCollection;
  45. import org.openspcoop2.protocol.manifest.SoapConfiguration;
  46. import org.openspcoop2.protocol.manifest.IntegrationError;
  47. import org.openspcoop2.protocol.manifest.IntegrationConfigurationElementName;
  48. import org.openspcoop2.protocol.manifest.IntegrationConfigurationName;
  49. import org.openspcoop2.protocol.manifest.IntegrationConfiguration;
  50. import org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentification;
  51. import org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationModes;
  52. import org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationSpecificResource;
  53. import org.openspcoop2.protocol.manifest.SoapHeaderBypassMustUnderstandHeader;
  54. import org.openspcoop2.protocol.manifest.SoapHeaderBypassMustUnderstand;
  55. import org.openspcoop2.protocol.manifest.Organization;
  56. import org.openspcoop2.protocol.manifest.Versions;
  57. import org.openspcoop2.protocol.manifest.SubContextMapping;
  58. import org.openspcoop2.protocol.manifest.WebEmptyContext;
  59. import org.openspcoop2.protocol.manifest.EmptySubContextMapping;
  60. import org.openspcoop2.protocol.manifest.RestMediaTypeMapping;
  61. import org.openspcoop2.protocol.manifest.OrganizationTypes;
  62. import org.openspcoop2.protocol.manifest.InterfaceConfiguration;
  63. import org.openspcoop2.protocol.manifest.Version;
  64. import org.openspcoop2.protocol.manifest.CollaborationProfile;
  65. import org.openspcoop2.protocol.manifest.ServiceType;
  66. import org.openspcoop2.protocol.manifest.Transaction;
  67. import org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationMode;
  68. import org.openspcoop2.protocol.manifest.RFC7807;
  69. import org.openspcoop2.protocol.manifest.RestMediaTypeDefaultMapping;
  70. import org.openspcoop2.protocol.manifest.RestMediaTypeUndefinedMapping;
  71. import org.openspcoop2.protocol.manifest.OrganizationType;
  72. import org.openspcoop2.protocol.manifest.Context;
  73. import org.openspcoop2.protocol.manifest.DefaultIntegrationError;

  74. import java.io.ByteArrayOutputStream;
  75. import java.io.FileOutputStream;
  76. import java.io.OutputStream;
  77. import java.io.File;
  78. import java.lang.reflect.Method;

  79. import javax.xml.bind.JAXBElement;

  80. /**    
  81.  * XML Serializer of beans
  82.  *
  83.  * @author Poli Andrea (poli@link.it)
  84.  * @author $Author$
  85.  * @version $Rev$, $Date$
  86.  */
  87. public abstract class AbstractSerializer {


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




  173.     /*
  174.      =================================================================================
  175.      Object: protocol
  176.      =================================================================================
  177.     */
  178.    
  179.     /**
  180.      * Serialize to file system in <var>fileName</var> the object <var>protocol</var> of type {@link org.openspcoop2.protocol.manifest.Protocol}
  181.      *
  182.      * @param fileName Xml file to serialize the object <var>protocol</var>
  183.      * @param protocol Object to be serialized in xml file <var>fileName</var>
  184.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  185.      */
  186.     public void write(String fileName,Protocol protocol) throws SerializerException {
  187.         this.objToXml(fileName, Protocol.class, protocol, false);
  188.     }
  189.     /**
  190.      * Serialize to file system in <var>fileName</var> the object <var>protocol</var> of type {@link org.openspcoop2.protocol.manifest.Protocol}
  191.      *
  192.      * @param fileName Xml file to serialize the object <var>protocol</var>
  193.      * @param protocol Object to be serialized in xml file <var>fileName</var>
  194.      * @param prettyPrint if true output the XML with indenting
  195.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  196.      */
  197.     public void write(String fileName,Protocol protocol,boolean prettyPrint) throws SerializerException {
  198.         this.objToXml(fileName, Protocol.class, protocol, prettyPrint);
  199.     }
  200.    
  201.     /**
  202.      * Serialize to file system in <var>file</var> the object <var>protocol</var> of type {@link org.openspcoop2.protocol.manifest.Protocol}
  203.      *
  204.      * @param file Xml file to serialize the object <var>protocol</var>
  205.      * @param protocol Object to be serialized in xml file <var>fileName</var>
  206.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  207.      */
  208.     public void write(File file,Protocol protocol) throws SerializerException {
  209.         this.objToXml(file, Protocol.class, protocol, false);
  210.     }
  211.     /**
  212.      * Serialize to file system in <var>file</var> the object <var>protocol</var> of type {@link org.openspcoop2.protocol.manifest.Protocol}
  213.      *
  214.      * @param file Xml file to serialize the object <var>protocol</var>
  215.      * @param protocol Object to be serialized in xml file <var>fileName</var>
  216.      * @param prettyPrint if true output the XML with indenting
  217.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  218.      */
  219.     public void write(File file,Protocol protocol,boolean prettyPrint) throws SerializerException {
  220.         this.objToXml(file, Protocol.class, protocol, prettyPrint);
  221.     }
  222.    
  223.     /**
  224.      * Serialize to output stream <var>out</var> the object <var>protocol</var> of type {@link org.openspcoop2.protocol.manifest.Protocol}
  225.      *
  226.      * @param out OutputStream to serialize the object <var>protocol</var>
  227.      * @param protocol Object to be serialized in xml file <var>fileName</var>
  228.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  229.      */
  230.     public void write(OutputStream out,Protocol protocol) throws SerializerException {
  231.         this.objToXml(out, Protocol.class, protocol, false);
  232.     }
  233.     /**
  234.      * Serialize to output stream <var>out</var> the object <var>protocol</var> of type {@link org.openspcoop2.protocol.manifest.Protocol}
  235.      *
  236.      * @param out OutputStream to serialize the object <var>protocol</var>
  237.      * @param protocol Object to be serialized in xml file <var>fileName</var>
  238.      * @param prettyPrint if true output the XML with indenting
  239.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  240.      */
  241.     public void write(OutputStream out,Protocol protocol,boolean prettyPrint) throws SerializerException {
  242.         this.objToXml(out, Protocol.class, protocol, prettyPrint);
  243.     }
  244.            
  245.     /**
  246.      * Serialize to byte array the object <var>protocol</var> of type {@link org.openspcoop2.protocol.manifest.Protocol}
  247.      *
  248.      * @param protocol Object to be serialized
  249.      * @return Object to be serialized in byte array
  250.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  251.      */
  252.     public byte[] toByteArray(Protocol protocol) throws SerializerException {
  253.         return this.objToXml(Protocol.class, protocol, false).toByteArray();
  254.     }
  255.     /**
  256.      * Serialize to byte array the object <var>protocol</var> of type {@link org.openspcoop2.protocol.manifest.Protocol}
  257.      *
  258.      * @param protocol Object to be serialized
  259.      * @param prettyPrint if true output the XML with indenting
  260.      * @return Object to be serialized in byte array
  261.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  262.      */
  263.     public byte[] toByteArray(Protocol protocol,boolean prettyPrint) throws SerializerException {
  264.         return this.objToXml(Protocol.class, protocol, prettyPrint).toByteArray();
  265.     }
  266.    
  267.     /**
  268.      * Serialize to String the object <var>protocol</var> of type {@link org.openspcoop2.protocol.manifest.Protocol}
  269.      *
  270.      * @param protocol Object to be serialized
  271.      * @return Object to be serialized as String
  272.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  273.      */
  274.     public String toString(Protocol protocol) throws SerializerException {
  275.         return this.objToXml(Protocol.class, protocol, false).toString();
  276.     }
  277.     /**
  278.      * Serialize to String the object <var>protocol</var> of type {@link org.openspcoop2.protocol.manifest.Protocol}
  279.      *
  280.      * @param protocol Object to be serialized
  281.      * @param prettyPrint if true output the XML with indenting
  282.      * @return Object to be serialized as String
  283.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  284.      */
  285.     public String toString(Protocol protocol,boolean prettyPrint) throws SerializerException {
  286.         return this.objToXml(Protocol.class, protocol, prettyPrint).toString();
  287.     }
  288.    
  289.    
  290.    
  291.     /*
  292.      =================================================================================
  293.      Object: openspcoop2
  294.      =================================================================================
  295.     */
  296.    
  297.     /**
  298.      * Serialize to file system in <var>fileName</var> the object <var>openspcoop2</var> of type {@link org.openspcoop2.protocol.manifest.Openspcoop2}
  299.      *
  300.      * @param fileName Xml file to serialize the object <var>openspcoop2</var>
  301.      * @param openspcoop2 Object to be serialized in xml file <var>fileName</var>
  302.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  303.      */
  304.     public void write(String fileName,Openspcoop2 openspcoop2) throws SerializerException {
  305.         this.objToXml(fileName, Openspcoop2.class, openspcoop2, false);
  306.     }
  307.     /**
  308.      * Serialize to file system in <var>fileName</var> the object <var>openspcoop2</var> of type {@link org.openspcoop2.protocol.manifest.Openspcoop2}
  309.      *
  310.      * @param fileName Xml file to serialize the object <var>openspcoop2</var>
  311.      * @param openspcoop2 Object to be serialized in xml file <var>fileName</var>
  312.      * @param prettyPrint if true output the XML with indenting
  313.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  314.      */
  315.     public void write(String fileName,Openspcoop2 openspcoop2,boolean prettyPrint) throws SerializerException {
  316.         this.objToXml(fileName, Openspcoop2.class, openspcoop2, prettyPrint);
  317.     }
  318.    
  319.     /**
  320.      * Serialize to file system in <var>file</var> the object <var>openspcoop2</var> of type {@link org.openspcoop2.protocol.manifest.Openspcoop2}
  321.      *
  322.      * @param file Xml file to serialize the object <var>openspcoop2</var>
  323.      * @param openspcoop2 Object to be serialized in xml file <var>fileName</var>
  324.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  325.      */
  326.     public void write(File file,Openspcoop2 openspcoop2) throws SerializerException {
  327.         this.objToXml(file, Openspcoop2.class, openspcoop2, false);
  328.     }
  329.     /**
  330.      * Serialize to file system in <var>file</var> the object <var>openspcoop2</var> of type {@link org.openspcoop2.protocol.manifest.Openspcoop2}
  331.      *
  332.      * @param file Xml file to serialize the object <var>openspcoop2</var>
  333.      * @param openspcoop2 Object to be serialized in xml file <var>fileName</var>
  334.      * @param prettyPrint if true output the XML with indenting
  335.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  336.      */
  337.     public void write(File file,Openspcoop2 openspcoop2,boolean prettyPrint) throws SerializerException {
  338.         this.objToXml(file, Openspcoop2.class, openspcoop2, prettyPrint);
  339.     }
  340.    
  341.     /**
  342.      * Serialize to output stream <var>out</var> the object <var>openspcoop2</var> of type {@link org.openspcoop2.protocol.manifest.Openspcoop2}
  343.      *
  344.      * @param out OutputStream to serialize the object <var>openspcoop2</var>
  345.      * @param openspcoop2 Object to be serialized in xml file <var>fileName</var>
  346.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  347.      */
  348.     public void write(OutputStream out,Openspcoop2 openspcoop2) throws SerializerException {
  349.         this.objToXml(out, Openspcoop2.class, openspcoop2, false);
  350.     }
  351.     /**
  352.      * Serialize to output stream <var>out</var> the object <var>openspcoop2</var> of type {@link org.openspcoop2.protocol.manifest.Openspcoop2}
  353.      *
  354.      * @param out OutputStream to serialize the object <var>openspcoop2</var>
  355.      * @param openspcoop2 Object to be serialized in xml file <var>fileName</var>
  356.      * @param prettyPrint if true output the XML with indenting
  357.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  358.      */
  359.     public void write(OutputStream out,Openspcoop2 openspcoop2,boolean prettyPrint) throws SerializerException {
  360.         this.objToXml(out, Openspcoop2.class, openspcoop2, prettyPrint);
  361.     }
  362.            
  363.     /**
  364.      * Serialize to byte array the object <var>openspcoop2</var> of type {@link org.openspcoop2.protocol.manifest.Openspcoop2}
  365.      *
  366.      * @param openspcoop2 Object to be serialized
  367.      * @return Object to be serialized in byte array
  368.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  369.      */
  370.     public byte[] toByteArray(Openspcoop2 openspcoop2) throws SerializerException {
  371.         return this.objToXml(Openspcoop2.class, openspcoop2, false).toByteArray();
  372.     }
  373.     /**
  374.      * Serialize to byte array the object <var>openspcoop2</var> of type {@link org.openspcoop2.protocol.manifest.Openspcoop2}
  375.      *
  376.      * @param openspcoop2 Object to be serialized
  377.      * @param prettyPrint if true output the XML with indenting
  378.      * @return Object to be serialized in byte array
  379.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  380.      */
  381.     public byte[] toByteArray(Openspcoop2 openspcoop2,boolean prettyPrint) throws SerializerException {
  382.         return this.objToXml(Openspcoop2.class, openspcoop2, prettyPrint).toByteArray();
  383.     }
  384.    
  385.     /**
  386.      * Serialize to String the object <var>openspcoop2</var> of type {@link org.openspcoop2.protocol.manifest.Openspcoop2}
  387.      *
  388.      * @param openspcoop2 Object to be serialized
  389.      * @return Object to be serialized as String
  390.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  391.      */
  392.     public String toString(Openspcoop2 openspcoop2) throws SerializerException {
  393.         return this.objToXml(Openspcoop2.class, openspcoop2, false).toString();
  394.     }
  395.     /**
  396.      * Serialize to String the object <var>openspcoop2</var> of type {@link org.openspcoop2.protocol.manifest.Openspcoop2}
  397.      *
  398.      * @param openspcoop2 Object to be serialized
  399.      * @param prettyPrint if true output the XML with indenting
  400.      * @return Object to be serialized as String
  401.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  402.      */
  403.     public String toString(Openspcoop2 openspcoop2,boolean prettyPrint) throws SerializerException {
  404.         return this.objToXml(Openspcoop2.class, openspcoop2, prettyPrint).toString();
  405.     }
  406.    
  407.    
  408.    
  409.     /*
  410.      =================================================================================
  411.      Object: binding
  412.      =================================================================================
  413.     */
  414.    
  415.     /**
  416.      * Serialize to file system in <var>fileName</var> the object <var>binding</var> of type {@link org.openspcoop2.protocol.manifest.Binding}
  417.      *
  418.      * @param fileName Xml file to serialize the object <var>binding</var>
  419.      * @param binding Object to be serialized in xml file <var>fileName</var>
  420.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  421.      */
  422.     public void write(String fileName,Binding binding) throws SerializerException {
  423.         this.objToXml(fileName, Binding.class, binding, false);
  424.     }
  425.     /**
  426.      * Serialize to file system in <var>fileName</var> the object <var>binding</var> of type {@link org.openspcoop2.protocol.manifest.Binding}
  427.      *
  428.      * @param fileName Xml file to serialize the object <var>binding</var>
  429.      * @param binding Object to be serialized in xml file <var>fileName</var>
  430.      * @param prettyPrint if true output the XML with indenting
  431.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  432.      */
  433.     public void write(String fileName,Binding binding,boolean prettyPrint) throws SerializerException {
  434.         this.objToXml(fileName, Binding.class, binding, prettyPrint);
  435.     }
  436.    
  437.     /**
  438.      * Serialize to file system in <var>file</var> the object <var>binding</var> of type {@link org.openspcoop2.protocol.manifest.Binding}
  439.      *
  440.      * @param file Xml file to serialize the object <var>binding</var>
  441.      * @param binding Object to be serialized in xml file <var>fileName</var>
  442.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  443.      */
  444.     public void write(File file,Binding binding) throws SerializerException {
  445.         this.objToXml(file, Binding.class, binding, false);
  446.     }
  447.     /**
  448.      * Serialize to file system in <var>file</var> the object <var>binding</var> of type {@link org.openspcoop2.protocol.manifest.Binding}
  449.      *
  450.      * @param file Xml file to serialize the object <var>binding</var>
  451.      * @param binding Object to be serialized in xml file <var>fileName</var>
  452.      * @param prettyPrint if true output the XML with indenting
  453.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  454.      */
  455.     public void write(File file,Binding binding,boolean prettyPrint) throws SerializerException {
  456.         this.objToXml(file, Binding.class, binding, prettyPrint);
  457.     }
  458.    
  459.     /**
  460.      * Serialize to output stream <var>out</var> the object <var>binding</var> of type {@link org.openspcoop2.protocol.manifest.Binding}
  461.      *
  462.      * @param out OutputStream to serialize the object <var>binding</var>
  463.      * @param binding Object to be serialized in xml file <var>fileName</var>
  464.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  465.      */
  466.     public void write(OutputStream out,Binding binding) throws SerializerException {
  467.         this.objToXml(out, Binding.class, binding, false);
  468.     }
  469.     /**
  470.      * Serialize to output stream <var>out</var> the object <var>binding</var> of type {@link org.openspcoop2.protocol.manifest.Binding}
  471.      *
  472.      * @param out OutputStream to serialize the object <var>binding</var>
  473.      * @param binding Object to be serialized in xml file <var>fileName</var>
  474.      * @param prettyPrint if true output the XML with indenting
  475.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  476.      */
  477.     public void write(OutputStream out,Binding binding,boolean prettyPrint) throws SerializerException {
  478.         this.objToXml(out, Binding.class, binding, prettyPrint);
  479.     }
  480.            
  481.     /**
  482.      * Serialize to byte array the object <var>binding</var> of type {@link org.openspcoop2.protocol.manifest.Binding}
  483.      *
  484.      * @param binding Object to be serialized
  485.      * @return Object to be serialized in byte array
  486.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  487.      */
  488.     public byte[] toByteArray(Binding binding) throws SerializerException {
  489.         return this.objToXml(Binding.class, binding, false).toByteArray();
  490.     }
  491.     /**
  492.      * Serialize to byte array the object <var>binding</var> of type {@link org.openspcoop2.protocol.manifest.Binding}
  493.      *
  494.      * @param binding Object to be serialized
  495.      * @param prettyPrint if true output the XML with indenting
  496.      * @return Object to be serialized in byte array
  497.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  498.      */
  499.     public byte[] toByteArray(Binding binding,boolean prettyPrint) throws SerializerException {
  500.         return this.objToXml(Binding.class, binding, prettyPrint).toByteArray();
  501.     }
  502.    
  503.     /**
  504.      * Serialize to String the object <var>binding</var> of type {@link org.openspcoop2.protocol.manifest.Binding}
  505.      *
  506.      * @param binding Object to be serialized
  507.      * @return Object to be serialized as String
  508.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  509.      */
  510.     public String toString(Binding binding) throws SerializerException {
  511.         return this.objToXml(Binding.class, binding, false).toString();
  512.     }
  513.     /**
  514.      * Serialize to String the object <var>binding</var> of type {@link org.openspcoop2.protocol.manifest.Binding}
  515.      *
  516.      * @param binding Object to be serialized
  517.      * @param prettyPrint if true output the XML with indenting
  518.      * @return Object to be serialized as String
  519.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  520.      */
  521.     public String toString(Binding binding,boolean prettyPrint) throws SerializerException {
  522.         return this.objToXml(Binding.class, binding, prettyPrint).toString();
  523.     }
  524.    
  525.    
  526.    
  527.     /*
  528.      =================================================================================
  529.      Object: web
  530.      =================================================================================
  531.     */
  532.    
  533.     /**
  534.      * Serialize to file system in <var>fileName</var> the object <var>web</var> of type {@link org.openspcoop2.protocol.manifest.Web}
  535.      *
  536.      * @param fileName Xml file to serialize the object <var>web</var>
  537.      * @param web Object to be serialized in xml file <var>fileName</var>
  538.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  539.      */
  540.     public void write(String fileName,Web web) throws SerializerException {
  541.         this.objToXml(fileName, Web.class, web, false);
  542.     }
  543.     /**
  544.      * Serialize to file system in <var>fileName</var> the object <var>web</var> of type {@link org.openspcoop2.protocol.manifest.Web}
  545.      *
  546.      * @param fileName Xml file to serialize the object <var>web</var>
  547.      * @param web Object to be serialized in xml file <var>fileName</var>
  548.      * @param prettyPrint if true output the XML with indenting
  549.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  550.      */
  551.     public void write(String fileName,Web web,boolean prettyPrint) throws SerializerException {
  552.         this.objToXml(fileName, Web.class, web, prettyPrint);
  553.     }
  554.    
  555.     /**
  556.      * Serialize to file system in <var>file</var> the object <var>web</var> of type {@link org.openspcoop2.protocol.manifest.Web}
  557.      *
  558.      * @param file Xml file to serialize the object <var>web</var>
  559.      * @param web Object to be serialized in xml file <var>fileName</var>
  560.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  561.      */
  562.     public void write(File file,Web web) throws SerializerException {
  563.         this.objToXml(file, Web.class, web, false);
  564.     }
  565.     /**
  566.      * Serialize to file system in <var>file</var> the object <var>web</var> of type {@link org.openspcoop2.protocol.manifest.Web}
  567.      *
  568.      * @param file Xml file to serialize the object <var>web</var>
  569.      * @param web Object to be serialized in xml file <var>fileName</var>
  570.      * @param prettyPrint if true output the XML with indenting
  571.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  572.      */
  573.     public void write(File file,Web web,boolean prettyPrint) throws SerializerException {
  574.         this.objToXml(file, Web.class, web, prettyPrint);
  575.     }
  576.    
  577.     /**
  578.      * Serialize to output stream <var>out</var> the object <var>web</var> of type {@link org.openspcoop2.protocol.manifest.Web}
  579.      *
  580.      * @param out OutputStream to serialize the object <var>web</var>
  581.      * @param web Object to be serialized in xml file <var>fileName</var>
  582.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  583.      */
  584.     public void write(OutputStream out,Web web) throws SerializerException {
  585.         this.objToXml(out, Web.class, web, false);
  586.     }
  587.     /**
  588.      * Serialize to output stream <var>out</var> the object <var>web</var> of type {@link org.openspcoop2.protocol.manifest.Web}
  589.      *
  590.      * @param out OutputStream to serialize the object <var>web</var>
  591.      * @param web Object to be serialized in xml file <var>fileName</var>
  592.      * @param prettyPrint if true output the XML with indenting
  593.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  594.      */
  595.     public void write(OutputStream out,Web web,boolean prettyPrint) throws SerializerException {
  596.         this.objToXml(out, Web.class, web, prettyPrint);
  597.     }
  598.            
  599.     /**
  600.      * Serialize to byte array the object <var>web</var> of type {@link org.openspcoop2.protocol.manifest.Web}
  601.      *
  602.      * @param web Object to be serialized
  603.      * @return Object to be serialized in byte array
  604.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  605.      */
  606.     public byte[] toByteArray(Web web) throws SerializerException {
  607.         return this.objToXml(Web.class, web, false).toByteArray();
  608.     }
  609.     /**
  610.      * Serialize to byte array the object <var>web</var> of type {@link org.openspcoop2.protocol.manifest.Web}
  611.      *
  612.      * @param web Object to be serialized
  613.      * @param prettyPrint if true output the XML with indenting
  614.      * @return Object to be serialized in byte array
  615.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  616.      */
  617.     public byte[] toByteArray(Web web,boolean prettyPrint) throws SerializerException {
  618.         return this.objToXml(Web.class, web, prettyPrint).toByteArray();
  619.     }
  620.    
  621.     /**
  622.      * Serialize to String the object <var>web</var> of type {@link org.openspcoop2.protocol.manifest.Web}
  623.      *
  624.      * @param web Object to be serialized
  625.      * @return Object to be serialized as String
  626.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  627.      */
  628.     public String toString(Web web) throws SerializerException {
  629.         return this.objToXml(Web.class, web, false).toString();
  630.     }
  631.     /**
  632.      * Serialize to String the object <var>web</var> of type {@link org.openspcoop2.protocol.manifest.Web}
  633.      *
  634.      * @param web Object to be serialized
  635.      * @param prettyPrint if true output the XML with indenting
  636.      * @return Object to be serialized as String
  637.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  638.      */
  639.     public String toString(Web web,boolean prettyPrint) throws SerializerException {
  640.         return this.objToXml(Web.class, web, prettyPrint).toString();
  641.     }
  642.    
  643.    
  644.    
  645.     /*
  646.      =================================================================================
  647.      Object: registry
  648.      =================================================================================
  649.     */
  650.    
  651.     /**
  652.      * Serialize to file system in <var>fileName</var> the object <var>registry</var> of type {@link org.openspcoop2.protocol.manifest.Registry}
  653.      *
  654.      * @param fileName Xml file to serialize the object <var>registry</var>
  655.      * @param registry Object to be serialized in xml file <var>fileName</var>
  656.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  657.      */
  658.     public void write(String fileName,Registry registry) throws SerializerException {
  659.         this.objToXml(fileName, Registry.class, registry, false);
  660.     }
  661.     /**
  662.      * Serialize to file system in <var>fileName</var> the object <var>registry</var> of type {@link org.openspcoop2.protocol.manifest.Registry}
  663.      *
  664.      * @param fileName Xml file to serialize the object <var>registry</var>
  665.      * @param registry Object to be serialized in xml file <var>fileName</var>
  666.      * @param prettyPrint if true output the XML with indenting
  667.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  668.      */
  669.     public void write(String fileName,Registry registry,boolean prettyPrint) throws SerializerException {
  670.         this.objToXml(fileName, Registry.class, registry, prettyPrint);
  671.     }
  672.    
  673.     /**
  674.      * Serialize to file system in <var>file</var> the object <var>registry</var> of type {@link org.openspcoop2.protocol.manifest.Registry}
  675.      *
  676.      * @param file Xml file to serialize the object <var>registry</var>
  677.      * @param registry Object to be serialized in xml file <var>fileName</var>
  678.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  679.      */
  680.     public void write(File file,Registry registry) throws SerializerException {
  681.         this.objToXml(file, Registry.class, registry, false);
  682.     }
  683.     /**
  684.      * Serialize to file system in <var>file</var> the object <var>registry</var> of type {@link org.openspcoop2.protocol.manifest.Registry}
  685.      *
  686.      * @param file Xml file to serialize the object <var>registry</var>
  687.      * @param registry Object to be serialized in xml file <var>fileName</var>
  688.      * @param prettyPrint if true output the XML with indenting
  689.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  690.      */
  691.     public void write(File file,Registry registry,boolean prettyPrint) throws SerializerException {
  692.         this.objToXml(file, Registry.class, registry, prettyPrint);
  693.     }
  694.    
  695.     /**
  696.      * Serialize to output stream <var>out</var> the object <var>registry</var> of type {@link org.openspcoop2.protocol.manifest.Registry}
  697.      *
  698.      * @param out OutputStream to serialize the object <var>registry</var>
  699.      * @param registry Object to be serialized in xml file <var>fileName</var>
  700.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  701.      */
  702.     public void write(OutputStream out,Registry registry) throws SerializerException {
  703.         this.objToXml(out, Registry.class, registry, false);
  704.     }
  705.     /**
  706.      * Serialize to output stream <var>out</var> the object <var>registry</var> of type {@link org.openspcoop2.protocol.manifest.Registry}
  707.      *
  708.      * @param out OutputStream to serialize the object <var>registry</var>
  709.      * @param registry Object to be serialized in xml file <var>fileName</var>
  710.      * @param prettyPrint if true output the XML with indenting
  711.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  712.      */
  713.     public void write(OutputStream out,Registry registry,boolean prettyPrint) throws SerializerException {
  714.         this.objToXml(out, Registry.class, registry, prettyPrint);
  715.     }
  716.            
  717.     /**
  718.      * Serialize to byte array the object <var>registry</var> of type {@link org.openspcoop2.protocol.manifest.Registry}
  719.      *
  720.      * @param registry Object to be serialized
  721.      * @return Object to be serialized in byte array
  722.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  723.      */
  724.     public byte[] toByteArray(Registry registry) throws SerializerException {
  725.         return this.objToXml(Registry.class, registry, false).toByteArray();
  726.     }
  727.     /**
  728.      * Serialize to byte array the object <var>registry</var> of type {@link org.openspcoop2.protocol.manifest.Registry}
  729.      *
  730.      * @param registry Object to be serialized
  731.      * @param prettyPrint if true output the XML with indenting
  732.      * @return Object to be serialized in byte array
  733.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  734.      */
  735.     public byte[] toByteArray(Registry registry,boolean prettyPrint) throws SerializerException {
  736.         return this.objToXml(Registry.class, registry, prettyPrint).toByteArray();
  737.     }
  738.    
  739.     /**
  740.      * Serialize to String the object <var>registry</var> of type {@link org.openspcoop2.protocol.manifest.Registry}
  741.      *
  742.      * @param registry Object to be serialized
  743.      * @return Object to be serialized as String
  744.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  745.      */
  746.     public String toString(Registry registry) throws SerializerException {
  747.         return this.objToXml(Registry.class, registry, false).toString();
  748.     }
  749.     /**
  750.      * Serialize to String the object <var>registry</var> of type {@link org.openspcoop2.protocol.manifest.Registry}
  751.      *
  752.      * @param registry Object to be serialized
  753.      * @param prettyPrint if true output the XML with indenting
  754.      * @return Object to be serialized as String
  755.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  756.      */
  757.     public String toString(Registry registry,boolean prettyPrint) throws SerializerException {
  758.         return this.objToXml(Registry.class, registry, prettyPrint).toString();
  759.     }
  760.    
  761.    
  762.    
  763.     /*
  764.      =================================================================================
  765.      Object: urlMapping
  766.      =================================================================================
  767.     */
  768.    
  769.     /**
  770.      * Serialize to file system in <var>fileName</var> the object <var>urlMapping</var> of type {@link org.openspcoop2.protocol.manifest.UrlMapping}
  771.      *
  772.      * @param fileName Xml file to serialize the object <var>urlMapping</var>
  773.      * @param urlMapping Object to be serialized in xml file <var>fileName</var>
  774.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  775.      */
  776.     public void write(String fileName,UrlMapping urlMapping) throws SerializerException {
  777.         this.objToXml(fileName, UrlMapping.class, urlMapping, false);
  778.     }
  779.     /**
  780.      * Serialize to file system in <var>fileName</var> the object <var>urlMapping</var> of type {@link org.openspcoop2.protocol.manifest.UrlMapping}
  781.      *
  782.      * @param fileName Xml file to serialize the object <var>urlMapping</var>
  783.      * @param urlMapping Object to be serialized in xml file <var>fileName</var>
  784.      * @param prettyPrint if true output the XML with indenting
  785.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  786.      */
  787.     public void write(String fileName,UrlMapping urlMapping,boolean prettyPrint) throws SerializerException {
  788.         this.objToXml(fileName, UrlMapping.class, urlMapping, prettyPrint);
  789.     }
  790.    
  791.     /**
  792.      * Serialize to file system in <var>file</var> the object <var>urlMapping</var> of type {@link org.openspcoop2.protocol.manifest.UrlMapping}
  793.      *
  794.      * @param file Xml file to serialize the object <var>urlMapping</var>
  795.      * @param urlMapping Object to be serialized in xml file <var>fileName</var>
  796.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  797.      */
  798.     public void write(File file,UrlMapping urlMapping) throws SerializerException {
  799.         this.objToXml(file, UrlMapping.class, urlMapping, false);
  800.     }
  801.     /**
  802.      * Serialize to file system in <var>file</var> the object <var>urlMapping</var> of type {@link org.openspcoop2.protocol.manifest.UrlMapping}
  803.      *
  804.      * @param file Xml file to serialize the object <var>urlMapping</var>
  805.      * @param urlMapping Object to be serialized in xml file <var>fileName</var>
  806.      * @param prettyPrint if true output the XML with indenting
  807.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  808.      */
  809.     public void write(File file,UrlMapping urlMapping,boolean prettyPrint) throws SerializerException {
  810.         this.objToXml(file, UrlMapping.class, urlMapping, prettyPrint);
  811.     }
  812.    
  813.     /**
  814.      * Serialize to output stream <var>out</var> the object <var>urlMapping</var> of type {@link org.openspcoop2.protocol.manifest.UrlMapping}
  815.      *
  816.      * @param out OutputStream to serialize the object <var>urlMapping</var>
  817.      * @param urlMapping Object to be serialized in xml file <var>fileName</var>
  818.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  819.      */
  820.     public void write(OutputStream out,UrlMapping urlMapping) throws SerializerException {
  821.         this.objToXml(out, UrlMapping.class, urlMapping, false);
  822.     }
  823.     /**
  824.      * Serialize to output stream <var>out</var> the object <var>urlMapping</var> of type {@link org.openspcoop2.protocol.manifest.UrlMapping}
  825.      *
  826.      * @param out OutputStream to serialize the object <var>urlMapping</var>
  827.      * @param urlMapping Object to be serialized in xml file <var>fileName</var>
  828.      * @param prettyPrint if true output the XML with indenting
  829.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  830.      */
  831.     public void write(OutputStream out,UrlMapping urlMapping,boolean prettyPrint) throws SerializerException {
  832.         this.objToXml(out, UrlMapping.class, urlMapping, prettyPrint);
  833.     }
  834.            
  835.     /**
  836.      * Serialize to byte array the object <var>urlMapping</var> of type {@link org.openspcoop2.protocol.manifest.UrlMapping}
  837.      *
  838.      * @param urlMapping Object to be serialized
  839.      * @return Object to be serialized in byte array
  840.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  841.      */
  842.     public byte[] toByteArray(UrlMapping urlMapping) throws SerializerException {
  843.         return this.objToXml(UrlMapping.class, urlMapping, false).toByteArray();
  844.     }
  845.     /**
  846.      * Serialize to byte array the object <var>urlMapping</var> of type {@link org.openspcoop2.protocol.manifest.UrlMapping}
  847.      *
  848.      * @param urlMapping Object to be serialized
  849.      * @param prettyPrint if true output the XML with indenting
  850.      * @return Object to be serialized in byte array
  851.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  852.      */
  853.     public byte[] toByteArray(UrlMapping urlMapping,boolean prettyPrint) throws SerializerException {
  854.         return this.objToXml(UrlMapping.class, urlMapping, prettyPrint).toByteArray();
  855.     }
  856.    
  857.     /**
  858.      * Serialize to String the object <var>urlMapping</var> of type {@link org.openspcoop2.protocol.manifest.UrlMapping}
  859.      *
  860.      * @param urlMapping Object to be serialized
  861.      * @return Object to be serialized as String
  862.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  863.      */
  864.     public String toString(UrlMapping urlMapping) throws SerializerException {
  865.         return this.objToXml(UrlMapping.class, urlMapping, false).toString();
  866.     }
  867.     /**
  868.      * Serialize to String the object <var>urlMapping</var> of type {@link org.openspcoop2.protocol.manifest.UrlMapping}
  869.      *
  870.      * @param urlMapping Object to be serialized
  871.      * @param prettyPrint if true output the XML with indenting
  872.      * @return Object to be serialized as String
  873.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  874.      */
  875.     public String toString(UrlMapping urlMapping,boolean prettyPrint) throws SerializerException {
  876.         return this.objToXml(UrlMapping.class, urlMapping, prettyPrint).toString();
  877.     }
  878.    
  879.    
  880.    
  881.     /*
  882.      =================================================================================
  883.      Object: ServiceTypes
  884.      =================================================================================
  885.     */
  886.    
  887.     /**
  888.      * Serialize to file system in <var>fileName</var> the object <var>serviceTypes</var> of type {@link org.openspcoop2.protocol.manifest.ServiceTypes}
  889.      *
  890.      * @param fileName Xml file to serialize the object <var>serviceTypes</var>
  891.      * @param serviceTypes Object to be serialized in xml file <var>fileName</var>
  892.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  893.      */
  894.     public void write(String fileName,ServiceTypes serviceTypes) throws SerializerException {
  895.         this.objToXml(fileName, ServiceTypes.class, serviceTypes, false);
  896.     }
  897.     /**
  898.      * Serialize to file system in <var>fileName</var> the object <var>serviceTypes</var> of type {@link org.openspcoop2.protocol.manifest.ServiceTypes}
  899.      *
  900.      * @param fileName Xml file to serialize the object <var>serviceTypes</var>
  901.      * @param serviceTypes Object to be serialized in xml file <var>fileName</var>
  902.      * @param prettyPrint if true output the XML with indenting
  903.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  904.      */
  905.     public void write(String fileName,ServiceTypes serviceTypes,boolean prettyPrint) throws SerializerException {
  906.         this.objToXml(fileName, ServiceTypes.class, serviceTypes, prettyPrint);
  907.     }
  908.    
  909.     /**
  910.      * Serialize to file system in <var>file</var> the object <var>serviceTypes</var> of type {@link org.openspcoop2.protocol.manifest.ServiceTypes}
  911.      *
  912.      * @param file Xml file to serialize the object <var>serviceTypes</var>
  913.      * @param serviceTypes Object to be serialized in xml file <var>fileName</var>
  914.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  915.      */
  916.     public void write(File file,ServiceTypes serviceTypes) throws SerializerException {
  917.         this.objToXml(file, ServiceTypes.class, serviceTypes, false);
  918.     }
  919.     /**
  920.      * Serialize to file system in <var>file</var> the object <var>serviceTypes</var> of type {@link org.openspcoop2.protocol.manifest.ServiceTypes}
  921.      *
  922.      * @param file Xml file to serialize the object <var>serviceTypes</var>
  923.      * @param serviceTypes Object to be serialized in xml file <var>fileName</var>
  924.      * @param prettyPrint if true output the XML with indenting
  925.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  926.      */
  927.     public void write(File file,ServiceTypes serviceTypes,boolean prettyPrint) throws SerializerException {
  928.         this.objToXml(file, ServiceTypes.class, serviceTypes, prettyPrint);
  929.     }
  930.    
  931.     /**
  932.      * Serialize to output stream <var>out</var> the object <var>serviceTypes</var> of type {@link org.openspcoop2.protocol.manifest.ServiceTypes}
  933.      *
  934.      * @param out OutputStream to serialize the object <var>serviceTypes</var>
  935.      * @param serviceTypes Object to be serialized in xml file <var>fileName</var>
  936.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  937.      */
  938.     public void write(OutputStream out,ServiceTypes serviceTypes) throws SerializerException {
  939.         this.objToXml(out, ServiceTypes.class, serviceTypes, false);
  940.     }
  941.     /**
  942.      * Serialize to output stream <var>out</var> the object <var>serviceTypes</var> of type {@link org.openspcoop2.protocol.manifest.ServiceTypes}
  943.      *
  944.      * @param out OutputStream to serialize the object <var>serviceTypes</var>
  945.      * @param serviceTypes Object to be serialized in xml file <var>fileName</var>
  946.      * @param prettyPrint if true output the XML with indenting
  947.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  948.      */
  949.     public void write(OutputStream out,ServiceTypes serviceTypes,boolean prettyPrint) throws SerializerException {
  950.         this.objToXml(out, ServiceTypes.class, serviceTypes, prettyPrint);
  951.     }
  952.            
  953.     /**
  954.      * Serialize to byte array the object <var>serviceTypes</var> of type {@link org.openspcoop2.protocol.manifest.ServiceTypes}
  955.      *
  956.      * @param serviceTypes Object to be serialized
  957.      * @return Object to be serialized in byte array
  958.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  959.      */
  960.     public byte[] toByteArray(ServiceTypes serviceTypes) throws SerializerException {
  961.         return this.objToXml(ServiceTypes.class, serviceTypes, false).toByteArray();
  962.     }
  963.     /**
  964.      * Serialize to byte array the object <var>serviceTypes</var> of type {@link org.openspcoop2.protocol.manifest.ServiceTypes}
  965.      *
  966.      * @param serviceTypes Object to be serialized
  967.      * @param prettyPrint if true output the XML with indenting
  968.      * @return Object to be serialized in byte array
  969.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  970.      */
  971.     public byte[] toByteArray(ServiceTypes serviceTypes,boolean prettyPrint) throws SerializerException {
  972.         return this.objToXml(ServiceTypes.class, serviceTypes, prettyPrint).toByteArray();
  973.     }
  974.    
  975.     /**
  976.      * Serialize to String the object <var>serviceTypes</var> of type {@link org.openspcoop2.protocol.manifest.ServiceTypes}
  977.      *
  978.      * @param serviceTypes Object to be serialized
  979.      * @return Object to be serialized as String
  980.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  981.      */
  982.     public String toString(ServiceTypes serviceTypes) throws SerializerException {
  983.         return this.objToXml(ServiceTypes.class, serviceTypes, false).toString();
  984.     }
  985.     /**
  986.      * Serialize to String the object <var>serviceTypes</var> of type {@link org.openspcoop2.protocol.manifest.ServiceTypes}
  987.      *
  988.      * @param serviceTypes Object to be serialized
  989.      * @param prettyPrint if true output the XML with indenting
  990.      * @return Object to be serialized as String
  991.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  992.      */
  993.     public String toString(ServiceTypes serviceTypes,boolean prettyPrint) throws SerializerException {
  994.         return this.objToXml(ServiceTypes.class, serviceTypes, prettyPrint).toString();
  995.     }
  996.    
  997.    
  998.    
  999.     /*
  1000.      =================================================================================
  1001.      Object: Service
  1002.      =================================================================================
  1003.     */
  1004.    
  1005.     /**
  1006.      * Serialize to file system in <var>fileName</var> the object <var>service</var> of type {@link org.openspcoop2.protocol.manifest.Service}
  1007.      *
  1008.      * @param fileName Xml file to serialize the object <var>service</var>
  1009.      * @param service Object to be serialized in xml file <var>fileName</var>
  1010.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1011.      */
  1012.     public void write(String fileName,Service service) throws SerializerException {
  1013.         this.objToXml(fileName, Service.class, service, false);
  1014.     }
  1015.     /**
  1016.      * Serialize to file system in <var>fileName</var> the object <var>service</var> of type {@link org.openspcoop2.protocol.manifest.Service}
  1017.      *
  1018.      * @param fileName Xml file to serialize the object <var>service</var>
  1019.      * @param service Object to be serialized in xml file <var>fileName</var>
  1020.      * @param prettyPrint if true output the XML with indenting
  1021.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1022.      */
  1023.     public void write(String fileName,Service service,boolean prettyPrint) throws SerializerException {
  1024.         this.objToXml(fileName, Service.class, service, prettyPrint);
  1025.     }
  1026.    
  1027.     /**
  1028.      * Serialize to file system in <var>file</var> the object <var>service</var> of type {@link org.openspcoop2.protocol.manifest.Service}
  1029.      *
  1030.      * @param file Xml file to serialize the object <var>service</var>
  1031.      * @param service Object to be serialized in xml file <var>fileName</var>
  1032.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1033.      */
  1034.     public void write(File file,Service service) throws SerializerException {
  1035.         this.objToXml(file, Service.class, service, false);
  1036.     }
  1037.     /**
  1038.      * Serialize to file system in <var>file</var> the object <var>service</var> of type {@link org.openspcoop2.protocol.manifest.Service}
  1039.      *
  1040.      * @param file Xml file to serialize the object <var>service</var>
  1041.      * @param service Object to be serialized in xml file <var>fileName</var>
  1042.      * @param prettyPrint if true output the XML with indenting
  1043.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1044.      */
  1045.     public void write(File file,Service service,boolean prettyPrint) throws SerializerException {
  1046.         this.objToXml(file, Service.class, service, prettyPrint);
  1047.     }
  1048.    
  1049.     /**
  1050.      * Serialize to output stream <var>out</var> the object <var>service</var> of type {@link org.openspcoop2.protocol.manifest.Service}
  1051.      *
  1052.      * @param out OutputStream to serialize the object <var>service</var>
  1053.      * @param service Object to be serialized in xml file <var>fileName</var>
  1054.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1055.      */
  1056.     public void write(OutputStream out,Service service) throws SerializerException {
  1057.         this.objToXml(out, Service.class, service, false);
  1058.     }
  1059.     /**
  1060.      * Serialize to output stream <var>out</var> the object <var>service</var> of type {@link org.openspcoop2.protocol.manifest.Service}
  1061.      *
  1062.      * @param out OutputStream to serialize the object <var>service</var>
  1063.      * @param service Object to be serialized in xml file <var>fileName</var>
  1064.      * @param prettyPrint if true output the XML with indenting
  1065.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1066.      */
  1067.     public void write(OutputStream out,Service service,boolean prettyPrint) throws SerializerException {
  1068.         this.objToXml(out, Service.class, service, prettyPrint);
  1069.     }
  1070.            
  1071.     /**
  1072.      * Serialize to byte array the object <var>service</var> of type {@link org.openspcoop2.protocol.manifest.Service}
  1073.      *
  1074.      * @param service Object to be serialized
  1075.      * @return Object to be serialized in byte array
  1076.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1077.      */
  1078.     public byte[] toByteArray(Service service) throws SerializerException {
  1079.         return this.objToXml(Service.class, service, false).toByteArray();
  1080.     }
  1081.     /**
  1082.      * Serialize to byte array the object <var>service</var> of type {@link org.openspcoop2.protocol.manifest.Service}
  1083.      *
  1084.      * @param service Object to be serialized
  1085.      * @param prettyPrint if true output the XML with indenting
  1086.      * @return Object to be serialized in byte array
  1087.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1088.      */
  1089.     public byte[] toByteArray(Service service,boolean prettyPrint) throws SerializerException {
  1090.         return this.objToXml(Service.class, service, prettyPrint).toByteArray();
  1091.     }
  1092.    
  1093.     /**
  1094.      * Serialize to String the object <var>service</var> of type {@link org.openspcoop2.protocol.manifest.Service}
  1095.      *
  1096.      * @param service Object to be serialized
  1097.      * @return Object to be serialized as String
  1098.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1099.      */
  1100.     public String toString(Service service) throws SerializerException {
  1101.         return this.objToXml(Service.class, service, false).toString();
  1102.     }
  1103.     /**
  1104.      * Serialize to String the object <var>service</var> of type {@link org.openspcoop2.protocol.manifest.Service}
  1105.      *
  1106.      * @param service Object to be serialized
  1107.      * @param prettyPrint if true output the XML with indenting
  1108.      * @return Object to be serialized as String
  1109.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1110.      */
  1111.     public String toString(Service service,boolean prettyPrint) throws SerializerException {
  1112.         return this.objToXml(Service.class, service, prettyPrint).toString();
  1113.     }
  1114.    
  1115.    
  1116.    
  1117.     /*
  1118.      =================================================================================
  1119.      Object: SoapMediaTypeMapping
  1120.      =================================================================================
  1121.     */
  1122.    
  1123.     /**
  1124.      * Serialize to file system in <var>fileName</var> the object <var>soapMediaTypeMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeMapping}
  1125.      *
  1126.      * @param fileName Xml file to serialize the object <var>soapMediaTypeMapping</var>
  1127.      * @param soapMediaTypeMapping Object to be serialized in xml file <var>fileName</var>
  1128.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1129.      */
  1130.     public void write(String fileName,SoapMediaTypeMapping soapMediaTypeMapping) throws SerializerException {
  1131.         this.objToXml(fileName, SoapMediaTypeMapping.class, soapMediaTypeMapping, false);
  1132.     }
  1133.     /**
  1134.      * Serialize to file system in <var>fileName</var> the object <var>soapMediaTypeMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeMapping}
  1135.      *
  1136.      * @param fileName Xml file to serialize the object <var>soapMediaTypeMapping</var>
  1137.      * @param soapMediaTypeMapping Object to be serialized in xml file <var>fileName</var>
  1138.      * @param prettyPrint if true output the XML with indenting
  1139.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1140.      */
  1141.     public void write(String fileName,SoapMediaTypeMapping soapMediaTypeMapping,boolean prettyPrint) throws SerializerException {
  1142.         this.objToXml(fileName, SoapMediaTypeMapping.class, soapMediaTypeMapping, prettyPrint);
  1143.     }
  1144.    
  1145.     /**
  1146.      * Serialize to file system in <var>file</var> the object <var>soapMediaTypeMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeMapping}
  1147.      *
  1148.      * @param file Xml file to serialize the object <var>soapMediaTypeMapping</var>
  1149.      * @param soapMediaTypeMapping Object to be serialized in xml file <var>fileName</var>
  1150.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1151.      */
  1152.     public void write(File file,SoapMediaTypeMapping soapMediaTypeMapping) throws SerializerException {
  1153.         this.objToXml(file, SoapMediaTypeMapping.class, soapMediaTypeMapping, false);
  1154.     }
  1155.     /**
  1156.      * Serialize to file system in <var>file</var> the object <var>soapMediaTypeMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeMapping}
  1157.      *
  1158.      * @param file Xml file to serialize the object <var>soapMediaTypeMapping</var>
  1159.      * @param soapMediaTypeMapping Object to be serialized in xml file <var>fileName</var>
  1160.      * @param prettyPrint if true output the XML with indenting
  1161.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1162.      */
  1163.     public void write(File file,SoapMediaTypeMapping soapMediaTypeMapping,boolean prettyPrint) throws SerializerException {
  1164.         this.objToXml(file, SoapMediaTypeMapping.class, soapMediaTypeMapping, prettyPrint);
  1165.     }
  1166.    
  1167.     /**
  1168.      * Serialize to output stream <var>out</var> the object <var>soapMediaTypeMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeMapping}
  1169.      *
  1170.      * @param out OutputStream to serialize the object <var>soapMediaTypeMapping</var>
  1171.      * @param soapMediaTypeMapping Object to be serialized in xml file <var>fileName</var>
  1172.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1173.      */
  1174.     public void write(OutputStream out,SoapMediaTypeMapping soapMediaTypeMapping) throws SerializerException {
  1175.         this.objToXml(out, SoapMediaTypeMapping.class, soapMediaTypeMapping, false);
  1176.     }
  1177.     /**
  1178.      * Serialize to output stream <var>out</var> the object <var>soapMediaTypeMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeMapping}
  1179.      *
  1180.      * @param out OutputStream to serialize the object <var>soapMediaTypeMapping</var>
  1181.      * @param soapMediaTypeMapping Object to be serialized in xml file <var>fileName</var>
  1182.      * @param prettyPrint if true output the XML with indenting
  1183.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1184.      */
  1185.     public void write(OutputStream out,SoapMediaTypeMapping soapMediaTypeMapping,boolean prettyPrint) throws SerializerException {
  1186.         this.objToXml(out, SoapMediaTypeMapping.class, soapMediaTypeMapping, prettyPrint);
  1187.     }
  1188.            
  1189.     /**
  1190.      * Serialize to byte array the object <var>soapMediaTypeMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeMapping}
  1191.      *
  1192.      * @param soapMediaTypeMapping Object to be serialized
  1193.      * @return Object to be serialized in byte array
  1194.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1195.      */
  1196.     public byte[] toByteArray(SoapMediaTypeMapping soapMediaTypeMapping) throws SerializerException {
  1197.         return this.objToXml(SoapMediaTypeMapping.class, soapMediaTypeMapping, false).toByteArray();
  1198.     }
  1199.     /**
  1200.      * Serialize to byte array the object <var>soapMediaTypeMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeMapping}
  1201.      *
  1202.      * @param soapMediaTypeMapping Object to be serialized
  1203.      * @param prettyPrint if true output the XML with indenting
  1204.      * @return Object to be serialized in byte array
  1205.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1206.      */
  1207.     public byte[] toByteArray(SoapMediaTypeMapping soapMediaTypeMapping,boolean prettyPrint) throws SerializerException {
  1208.         return this.objToXml(SoapMediaTypeMapping.class, soapMediaTypeMapping, prettyPrint).toByteArray();
  1209.     }
  1210.    
  1211.     /**
  1212.      * Serialize to String the object <var>soapMediaTypeMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeMapping}
  1213.      *
  1214.      * @param soapMediaTypeMapping Object to be serialized
  1215.      * @return Object to be serialized as String
  1216.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1217.      */
  1218.     public String toString(SoapMediaTypeMapping soapMediaTypeMapping) throws SerializerException {
  1219.         return this.objToXml(SoapMediaTypeMapping.class, soapMediaTypeMapping, false).toString();
  1220.     }
  1221.     /**
  1222.      * Serialize to String the object <var>soapMediaTypeMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeMapping}
  1223.      *
  1224.      * @param soapMediaTypeMapping Object to be serialized
  1225.      * @param prettyPrint if true output the XML with indenting
  1226.      * @return Object to be serialized as String
  1227.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1228.      */
  1229.     public String toString(SoapMediaTypeMapping soapMediaTypeMapping,boolean prettyPrint) throws SerializerException {
  1230.         return this.objToXml(SoapMediaTypeMapping.class, soapMediaTypeMapping, prettyPrint).toString();
  1231.     }
  1232.    
  1233.    
  1234.    
  1235.     /*
  1236.      =================================================================================
  1237.      Object: SoapMediaTypeCollection
  1238.      =================================================================================
  1239.     */
  1240.    
  1241.     /**
  1242.      * Serialize to file system in <var>fileName</var> the object <var>soapMediaTypeCollection</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeCollection}
  1243.      *
  1244.      * @param fileName Xml file to serialize the object <var>soapMediaTypeCollection</var>
  1245.      * @param soapMediaTypeCollection Object to be serialized in xml file <var>fileName</var>
  1246.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1247.      */
  1248.     public void write(String fileName,SoapMediaTypeCollection soapMediaTypeCollection) throws SerializerException {
  1249.         this.objToXml(fileName, SoapMediaTypeCollection.class, soapMediaTypeCollection, false);
  1250.     }
  1251.     /**
  1252.      * Serialize to file system in <var>fileName</var> the object <var>soapMediaTypeCollection</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeCollection}
  1253.      *
  1254.      * @param fileName Xml file to serialize the object <var>soapMediaTypeCollection</var>
  1255.      * @param soapMediaTypeCollection Object to be serialized in xml file <var>fileName</var>
  1256.      * @param prettyPrint if true output the XML with indenting
  1257.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1258.      */
  1259.     public void write(String fileName,SoapMediaTypeCollection soapMediaTypeCollection,boolean prettyPrint) throws SerializerException {
  1260.         this.objToXml(fileName, SoapMediaTypeCollection.class, soapMediaTypeCollection, prettyPrint);
  1261.     }
  1262.    
  1263.     /**
  1264.      * Serialize to file system in <var>file</var> the object <var>soapMediaTypeCollection</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeCollection}
  1265.      *
  1266.      * @param file Xml file to serialize the object <var>soapMediaTypeCollection</var>
  1267.      * @param soapMediaTypeCollection Object to be serialized in xml file <var>fileName</var>
  1268.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1269.      */
  1270.     public void write(File file,SoapMediaTypeCollection soapMediaTypeCollection) throws SerializerException {
  1271.         this.objToXml(file, SoapMediaTypeCollection.class, soapMediaTypeCollection, false);
  1272.     }
  1273.     /**
  1274.      * Serialize to file system in <var>file</var> the object <var>soapMediaTypeCollection</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeCollection}
  1275.      *
  1276.      * @param file Xml file to serialize the object <var>soapMediaTypeCollection</var>
  1277.      * @param soapMediaTypeCollection Object to be serialized in xml file <var>fileName</var>
  1278.      * @param prettyPrint if true output the XML with indenting
  1279.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1280.      */
  1281.     public void write(File file,SoapMediaTypeCollection soapMediaTypeCollection,boolean prettyPrint) throws SerializerException {
  1282.         this.objToXml(file, SoapMediaTypeCollection.class, soapMediaTypeCollection, prettyPrint);
  1283.     }
  1284.    
  1285.     /**
  1286.      * Serialize to output stream <var>out</var> the object <var>soapMediaTypeCollection</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeCollection}
  1287.      *
  1288.      * @param out OutputStream to serialize the object <var>soapMediaTypeCollection</var>
  1289.      * @param soapMediaTypeCollection Object to be serialized in xml file <var>fileName</var>
  1290.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1291.      */
  1292.     public void write(OutputStream out,SoapMediaTypeCollection soapMediaTypeCollection) throws SerializerException {
  1293.         this.objToXml(out, SoapMediaTypeCollection.class, soapMediaTypeCollection, false);
  1294.     }
  1295.     /**
  1296.      * Serialize to output stream <var>out</var> the object <var>soapMediaTypeCollection</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeCollection}
  1297.      *
  1298.      * @param out OutputStream to serialize the object <var>soapMediaTypeCollection</var>
  1299.      * @param soapMediaTypeCollection Object to be serialized in xml file <var>fileName</var>
  1300.      * @param prettyPrint if true output the XML with indenting
  1301.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1302.      */
  1303.     public void write(OutputStream out,SoapMediaTypeCollection soapMediaTypeCollection,boolean prettyPrint) throws SerializerException {
  1304.         this.objToXml(out, SoapMediaTypeCollection.class, soapMediaTypeCollection, prettyPrint);
  1305.     }
  1306.            
  1307.     /**
  1308.      * Serialize to byte array the object <var>soapMediaTypeCollection</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeCollection}
  1309.      *
  1310.      * @param soapMediaTypeCollection Object to be serialized
  1311.      * @return Object to be serialized in byte array
  1312.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1313.      */
  1314.     public byte[] toByteArray(SoapMediaTypeCollection soapMediaTypeCollection) throws SerializerException {
  1315.         return this.objToXml(SoapMediaTypeCollection.class, soapMediaTypeCollection, false).toByteArray();
  1316.     }
  1317.     /**
  1318.      * Serialize to byte array the object <var>soapMediaTypeCollection</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeCollection}
  1319.      *
  1320.      * @param soapMediaTypeCollection Object to be serialized
  1321.      * @param prettyPrint if true output the XML with indenting
  1322.      * @return Object to be serialized in byte array
  1323.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1324.      */
  1325.     public byte[] toByteArray(SoapMediaTypeCollection soapMediaTypeCollection,boolean prettyPrint) throws SerializerException {
  1326.         return this.objToXml(SoapMediaTypeCollection.class, soapMediaTypeCollection, prettyPrint).toByteArray();
  1327.     }
  1328.    
  1329.     /**
  1330.      * Serialize to String the object <var>soapMediaTypeCollection</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeCollection}
  1331.      *
  1332.      * @param soapMediaTypeCollection Object to be serialized
  1333.      * @return Object to be serialized as String
  1334.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1335.      */
  1336.     public String toString(SoapMediaTypeCollection soapMediaTypeCollection) throws SerializerException {
  1337.         return this.objToXml(SoapMediaTypeCollection.class, soapMediaTypeCollection, false).toString();
  1338.     }
  1339.     /**
  1340.      * Serialize to String the object <var>soapMediaTypeCollection</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeCollection}
  1341.      *
  1342.      * @param soapMediaTypeCollection Object to be serialized
  1343.      * @param prettyPrint if true output the XML with indenting
  1344.      * @return Object to be serialized as String
  1345.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1346.      */
  1347.     public String toString(SoapMediaTypeCollection soapMediaTypeCollection,boolean prettyPrint) throws SerializerException {
  1348.         return this.objToXml(SoapMediaTypeCollection.class, soapMediaTypeCollection, prettyPrint).toString();
  1349.     }
  1350.    
  1351.    
  1352.    
  1353.     /*
  1354.      =================================================================================
  1355.      Object: SoapMediaTypeDefaultMapping
  1356.      =================================================================================
  1357.     */
  1358.    
  1359.     /**
  1360.      * Serialize to file system in <var>fileName</var> the object <var>soapMediaTypeDefaultMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeDefaultMapping}
  1361.      *
  1362.      * @param fileName Xml file to serialize the object <var>soapMediaTypeDefaultMapping</var>
  1363.      * @param soapMediaTypeDefaultMapping Object to be serialized in xml file <var>fileName</var>
  1364.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1365.      */
  1366.     public void write(String fileName,SoapMediaTypeDefaultMapping soapMediaTypeDefaultMapping) throws SerializerException {
  1367.         this.objToXml(fileName, SoapMediaTypeDefaultMapping.class, soapMediaTypeDefaultMapping, false);
  1368.     }
  1369.     /**
  1370.      * Serialize to file system in <var>fileName</var> the object <var>soapMediaTypeDefaultMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeDefaultMapping}
  1371.      *
  1372.      * @param fileName Xml file to serialize the object <var>soapMediaTypeDefaultMapping</var>
  1373.      * @param soapMediaTypeDefaultMapping Object to be serialized in xml file <var>fileName</var>
  1374.      * @param prettyPrint if true output the XML with indenting
  1375.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1376.      */
  1377.     public void write(String fileName,SoapMediaTypeDefaultMapping soapMediaTypeDefaultMapping,boolean prettyPrint) throws SerializerException {
  1378.         this.objToXml(fileName, SoapMediaTypeDefaultMapping.class, soapMediaTypeDefaultMapping, prettyPrint);
  1379.     }
  1380.    
  1381.     /**
  1382.      * Serialize to file system in <var>file</var> the object <var>soapMediaTypeDefaultMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeDefaultMapping}
  1383.      *
  1384.      * @param file Xml file to serialize the object <var>soapMediaTypeDefaultMapping</var>
  1385.      * @param soapMediaTypeDefaultMapping Object to be serialized in xml file <var>fileName</var>
  1386.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1387.      */
  1388.     public void write(File file,SoapMediaTypeDefaultMapping soapMediaTypeDefaultMapping) throws SerializerException {
  1389.         this.objToXml(file, SoapMediaTypeDefaultMapping.class, soapMediaTypeDefaultMapping, false);
  1390.     }
  1391.     /**
  1392.      * Serialize to file system in <var>file</var> the object <var>soapMediaTypeDefaultMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeDefaultMapping}
  1393.      *
  1394.      * @param file Xml file to serialize the object <var>soapMediaTypeDefaultMapping</var>
  1395.      * @param soapMediaTypeDefaultMapping Object to be serialized in xml file <var>fileName</var>
  1396.      * @param prettyPrint if true output the XML with indenting
  1397.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1398.      */
  1399.     public void write(File file,SoapMediaTypeDefaultMapping soapMediaTypeDefaultMapping,boolean prettyPrint) throws SerializerException {
  1400.         this.objToXml(file, SoapMediaTypeDefaultMapping.class, soapMediaTypeDefaultMapping, prettyPrint);
  1401.     }
  1402.    
  1403.     /**
  1404.      * Serialize to output stream <var>out</var> the object <var>soapMediaTypeDefaultMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeDefaultMapping}
  1405.      *
  1406.      * @param out OutputStream to serialize the object <var>soapMediaTypeDefaultMapping</var>
  1407.      * @param soapMediaTypeDefaultMapping Object to be serialized in xml file <var>fileName</var>
  1408.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1409.      */
  1410.     public void write(OutputStream out,SoapMediaTypeDefaultMapping soapMediaTypeDefaultMapping) throws SerializerException {
  1411.         this.objToXml(out, SoapMediaTypeDefaultMapping.class, soapMediaTypeDefaultMapping, false);
  1412.     }
  1413.     /**
  1414.      * Serialize to output stream <var>out</var> the object <var>soapMediaTypeDefaultMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeDefaultMapping}
  1415.      *
  1416.      * @param out OutputStream to serialize the object <var>soapMediaTypeDefaultMapping</var>
  1417.      * @param soapMediaTypeDefaultMapping Object to be serialized in xml file <var>fileName</var>
  1418.      * @param prettyPrint if true output the XML with indenting
  1419.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1420.      */
  1421.     public void write(OutputStream out,SoapMediaTypeDefaultMapping soapMediaTypeDefaultMapping,boolean prettyPrint) throws SerializerException {
  1422.         this.objToXml(out, SoapMediaTypeDefaultMapping.class, soapMediaTypeDefaultMapping, prettyPrint);
  1423.     }
  1424.            
  1425.     /**
  1426.      * Serialize to byte array the object <var>soapMediaTypeDefaultMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeDefaultMapping}
  1427.      *
  1428.      * @param soapMediaTypeDefaultMapping Object to be serialized
  1429.      * @return Object to be serialized in byte array
  1430.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1431.      */
  1432.     public byte[] toByteArray(SoapMediaTypeDefaultMapping soapMediaTypeDefaultMapping) throws SerializerException {
  1433.         return this.objToXml(SoapMediaTypeDefaultMapping.class, soapMediaTypeDefaultMapping, false).toByteArray();
  1434.     }
  1435.     /**
  1436.      * Serialize to byte array the object <var>soapMediaTypeDefaultMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeDefaultMapping}
  1437.      *
  1438.      * @param soapMediaTypeDefaultMapping Object to be serialized
  1439.      * @param prettyPrint if true output the XML with indenting
  1440.      * @return Object to be serialized in byte array
  1441.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1442.      */
  1443.     public byte[] toByteArray(SoapMediaTypeDefaultMapping soapMediaTypeDefaultMapping,boolean prettyPrint) throws SerializerException {
  1444.         return this.objToXml(SoapMediaTypeDefaultMapping.class, soapMediaTypeDefaultMapping, prettyPrint).toByteArray();
  1445.     }
  1446.    
  1447.     /**
  1448.      * Serialize to String the object <var>soapMediaTypeDefaultMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeDefaultMapping}
  1449.      *
  1450.      * @param soapMediaTypeDefaultMapping Object to be serialized
  1451.      * @return Object to be serialized as String
  1452.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1453.      */
  1454.     public String toString(SoapMediaTypeDefaultMapping soapMediaTypeDefaultMapping) throws SerializerException {
  1455.         return this.objToXml(SoapMediaTypeDefaultMapping.class, soapMediaTypeDefaultMapping, false).toString();
  1456.     }
  1457.     /**
  1458.      * Serialize to String the object <var>soapMediaTypeDefaultMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeDefaultMapping}
  1459.      *
  1460.      * @param soapMediaTypeDefaultMapping Object to be serialized
  1461.      * @param prettyPrint if true output the XML with indenting
  1462.      * @return Object to be serialized as String
  1463.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1464.      */
  1465.     public String toString(SoapMediaTypeDefaultMapping soapMediaTypeDefaultMapping,boolean prettyPrint) throws SerializerException {
  1466.         return this.objToXml(SoapMediaTypeDefaultMapping.class, soapMediaTypeDefaultMapping, prettyPrint).toString();
  1467.     }
  1468.    
  1469.    
  1470.    
  1471.     /*
  1472.      =================================================================================
  1473.      Object: SoapMediaTypeUndefinedMapping
  1474.      =================================================================================
  1475.     */
  1476.    
  1477.     /**
  1478.      * Serialize to file system in <var>fileName</var> the object <var>soapMediaTypeUndefinedMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeUndefinedMapping}
  1479.      *
  1480.      * @param fileName Xml file to serialize the object <var>soapMediaTypeUndefinedMapping</var>
  1481.      * @param soapMediaTypeUndefinedMapping Object to be serialized in xml file <var>fileName</var>
  1482.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1483.      */
  1484.     public void write(String fileName,SoapMediaTypeUndefinedMapping soapMediaTypeUndefinedMapping) throws SerializerException {
  1485.         this.objToXml(fileName, SoapMediaTypeUndefinedMapping.class, soapMediaTypeUndefinedMapping, false);
  1486.     }
  1487.     /**
  1488.      * Serialize to file system in <var>fileName</var> the object <var>soapMediaTypeUndefinedMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeUndefinedMapping}
  1489.      *
  1490.      * @param fileName Xml file to serialize the object <var>soapMediaTypeUndefinedMapping</var>
  1491.      * @param soapMediaTypeUndefinedMapping Object to be serialized in xml file <var>fileName</var>
  1492.      * @param prettyPrint if true output the XML with indenting
  1493.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1494.      */
  1495.     public void write(String fileName,SoapMediaTypeUndefinedMapping soapMediaTypeUndefinedMapping,boolean prettyPrint) throws SerializerException {
  1496.         this.objToXml(fileName, SoapMediaTypeUndefinedMapping.class, soapMediaTypeUndefinedMapping, prettyPrint);
  1497.     }
  1498.    
  1499.     /**
  1500.      * Serialize to file system in <var>file</var> the object <var>soapMediaTypeUndefinedMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeUndefinedMapping}
  1501.      *
  1502.      * @param file Xml file to serialize the object <var>soapMediaTypeUndefinedMapping</var>
  1503.      * @param soapMediaTypeUndefinedMapping Object to be serialized in xml file <var>fileName</var>
  1504.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1505.      */
  1506.     public void write(File file,SoapMediaTypeUndefinedMapping soapMediaTypeUndefinedMapping) throws SerializerException {
  1507.         this.objToXml(file, SoapMediaTypeUndefinedMapping.class, soapMediaTypeUndefinedMapping, false);
  1508.     }
  1509.     /**
  1510.      * Serialize to file system in <var>file</var> the object <var>soapMediaTypeUndefinedMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeUndefinedMapping}
  1511.      *
  1512.      * @param file Xml file to serialize the object <var>soapMediaTypeUndefinedMapping</var>
  1513.      * @param soapMediaTypeUndefinedMapping Object to be serialized in xml file <var>fileName</var>
  1514.      * @param prettyPrint if true output the XML with indenting
  1515.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1516.      */
  1517.     public void write(File file,SoapMediaTypeUndefinedMapping soapMediaTypeUndefinedMapping,boolean prettyPrint) throws SerializerException {
  1518.         this.objToXml(file, SoapMediaTypeUndefinedMapping.class, soapMediaTypeUndefinedMapping, prettyPrint);
  1519.     }
  1520.    
  1521.     /**
  1522.      * Serialize to output stream <var>out</var> the object <var>soapMediaTypeUndefinedMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeUndefinedMapping}
  1523.      *
  1524.      * @param out OutputStream to serialize the object <var>soapMediaTypeUndefinedMapping</var>
  1525.      * @param soapMediaTypeUndefinedMapping Object to be serialized in xml file <var>fileName</var>
  1526.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1527.      */
  1528.     public void write(OutputStream out,SoapMediaTypeUndefinedMapping soapMediaTypeUndefinedMapping) throws SerializerException {
  1529.         this.objToXml(out, SoapMediaTypeUndefinedMapping.class, soapMediaTypeUndefinedMapping, false);
  1530.     }
  1531.     /**
  1532.      * Serialize to output stream <var>out</var> the object <var>soapMediaTypeUndefinedMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeUndefinedMapping}
  1533.      *
  1534.      * @param out OutputStream to serialize the object <var>soapMediaTypeUndefinedMapping</var>
  1535.      * @param soapMediaTypeUndefinedMapping Object to be serialized in xml file <var>fileName</var>
  1536.      * @param prettyPrint if true output the XML with indenting
  1537.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1538.      */
  1539.     public void write(OutputStream out,SoapMediaTypeUndefinedMapping soapMediaTypeUndefinedMapping,boolean prettyPrint) throws SerializerException {
  1540.         this.objToXml(out, SoapMediaTypeUndefinedMapping.class, soapMediaTypeUndefinedMapping, prettyPrint);
  1541.     }
  1542.            
  1543.     /**
  1544.      * Serialize to byte array the object <var>soapMediaTypeUndefinedMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeUndefinedMapping}
  1545.      *
  1546.      * @param soapMediaTypeUndefinedMapping Object to be serialized
  1547.      * @return Object to be serialized in byte array
  1548.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1549.      */
  1550.     public byte[] toByteArray(SoapMediaTypeUndefinedMapping soapMediaTypeUndefinedMapping) throws SerializerException {
  1551.         return this.objToXml(SoapMediaTypeUndefinedMapping.class, soapMediaTypeUndefinedMapping, false).toByteArray();
  1552.     }
  1553.     /**
  1554.      * Serialize to byte array the object <var>soapMediaTypeUndefinedMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeUndefinedMapping}
  1555.      *
  1556.      * @param soapMediaTypeUndefinedMapping Object to be serialized
  1557.      * @param prettyPrint if true output the XML with indenting
  1558.      * @return Object to be serialized in byte array
  1559.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1560.      */
  1561.     public byte[] toByteArray(SoapMediaTypeUndefinedMapping soapMediaTypeUndefinedMapping,boolean prettyPrint) throws SerializerException {
  1562.         return this.objToXml(SoapMediaTypeUndefinedMapping.class, soapMediaTypeUndefinedMapping, prettyPrint).toByteArray();
  1563.     }
  1564.    
  1565.     /**
  1566.      * Serialize to String the object <var>soapMediaTypeUndefinedMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeUndefinedMapping}
  1567.      *
  1568.      * @param soapMediaTypeUndefinedMapping Object to be serialized
  1569.      * @return Object to be serialized as String
  1570.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1571.      */
  1572.     public String toString(SoapMediaTypeUndefinedMapping soapMediaTypeUndefinedMapping) throws SerializerException {
  1573.         return this.objToXml(SoapMediaTypeUndefinedMapping.class, soapMediaTypeUndefinedMapping, false).toString();
  1574.     }
  1575.     /**
  1576.      * Serialize to String the object <var>soapMediaTypeUndefinedMapping</var> of type {@link org.openspcoop2.protocol.manifest.SoapMediaTypeUndefinedMapping}
  1577.      *
  1578.      * @param soapMediaTypeUndefinedMapping Object to be serialized
  1579.      * @param prettyPrint if true output the XML with indenting
  1580.      * @return Object to be serialized as String
  1581.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1582.      */
  1583.     public String toString(SoapMediaTypeUndefinedMapping soapMediaTypeUndefinedMapping,boolean prettyPrint) throws SerializerException {
  1584.         return this.objToXml(SoapMediaTypeUndefinedMapping.class, soapMediaTypeUndefinedMapping, prettyPrint).toString();
  1585.     }
  1586.    
  1587.    
  1588.    
  1589.     /*
  1590.      =================================================================================
  1591.      Object: IntegrationErrorCode
  1592.      =================================================================================
  1593.     */
  1594.    
  1595.     /**
  1596.      * Serialize to file system in <var>fileName</var> the object <var>integrationErrorCode</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorCode}
  1597.      *
  1598.      * @param fileName Xml file to serialize the object <var>integrationErrorCode</var>
  1599.      * @param integrationErrorCode Object to be serialized in xml file <var>fileName</var>
  1600.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1601.      */
  1602.     public void write(String fileName,IntegrationErrorCode integrationErrorCode) throws SerializerException {
  1603.         this.objToXml(fileName, IntegrationErrorCode.class, integrationErrorCode, false);
  1604.     }
  1605.     /**
  1606.      * Serialize to file system in <var>fileName</var> the object <var>integrationErrorCode</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorCode}
  1607.      *
  1608.      * @param fileName Xml file to serialize the object <var>integrationErrorCode</var>
  1609.      * @param integrationErrorCode Object to be serialized in xml file <var>fileName</var>
  1610.      * @param prettyPrint if true output the XML with indenting
  1611.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1612.      */
  1613.     public void write(String fileName,IntegrationErrorCode integrationErrorCode,boolean prettyPrint) throws SerializerException {
  1614.         this.objToXml(fileName, IntegrationErrorCode.class, integrationErrorCode, prettyPrint);
  1615.     }
  1616.    
  1617.     /**
  1618.      * Serialize to file system in <var>file</var> the object <var>integrationErrorCode</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorCode}
  1619.      *
  1620.      * @param file Xml file to serialize the object <var>integrationErrorCode</var>
  1621.      * @param integrationErrorCode Object to be serialized in xml file <var>fileName</var>
  1622.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1623.      */
  1624.     public void write(File file,IntegrationErrorCode integrationErrorCode) throws SerializerException {
  1625.         this.objToXml(file, IntegrationErrorCode.class, integrationErrorCode, false);
  1626.     }
  1627.     /**
  1628.      * Serialize to file system in <var>file</var> the object <var>integrationErrorCode</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorCode}
  1629.      *
  1630.      * @param file Xml file to serialize the object <var>integrationErrorCode</var>
  1631.      * @param integrationErrorCode Object to be serialized in xml file <var>fileName</var>
  1632.      * @param prettyPrint if true output the XML with indenting
  1633.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1634.      */
  1635.     public void write(File file,IntegrationErrorCode integrationErrorCode,boolean prettyPrint) throws SerializerException {
  1636.         this.objToXml(file, IntegrationErrorCode.class, integrationErrorCode, prettyPrint);
  1637.     }
  1638.    
  1639.     /**
  1640.      * Serialize to output stream <var>out</var> the object <var>integrationErrorCode</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorCode}
  1641.      *
  1642.      * @param out OutputStream to serialize the object <var>integrationErrorCode</var>
  1643.      * @param integrationErrorCode Object to be serialized in xml file <var>fileName</var>
  1644.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1645.      */
  1646.     public void write(OutputStream out,IntegrationErrorCode integrationErrorCode) throws SerializerException {
  1647.         this.objToXml(out, IntegrationErrorCode.class, integrationErrorCode, false);
  1648.     }
  1649.     /**
  1650.      * Serialize to output stream <var>out</var> the object <var>integrationErrorCode</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorCode}
  1651.      *
  1652.      * @param out OutputStream to serialize the object <var>integrationErrorCode</var>
  1653.      * @param integrationErrorCode Object to be serialized in xml file <var>fileName</var>
  1654.      * @param prettyPrint if true output the XML with indenting
  1655.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1656.      */
  1657.     public void write(OutputStream out,IntegrationErrorCode integrationErrorCode,boolean prettyPrint) throws SerializerException {
  1658.         this.objToXml(out, IntegrationErrorCode.class, integrationErrorCode, prettyPrint);
  1659.     }
  1660.            
  1661.     /**
  1662.      * Serialize to byte array the object <var>integrationErrorCode</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorCode}
  1663.      *
  1664.      * @param integrationErrorCode Object to be serialized
  1665.      * @return Object to be serialized in byte array
  1666.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1667.      */
  1668.     public byte[] toByteArray(IntegrationErrorCode integrationErrorCode) throws SerializerException {
  1669.         return this.objToXml(IntegrationErrorCode.class, integrationErrorCode, false).toByteArray();
  1670.     }
  1671.     /**
  1672.      * Serialize to byte array the object <var>integrationErrorCode</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorCode}
  1673.      *
  1674.      * @param integrationErrorCode Object to be serialized
  1675.      * @param prettyPrint if true output the XML with indenting
  1676.      * @return Object to be serialized in byte array
  1677.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1678.      */
  1679.     public byte[] toByteArray(IntegrationErrorCode integrationErrorCode,boolean prettyPrint) throws SerializerException {
  1680.         return this.objToXml(IntegrationErrorCode.class, integrationErrorCode, prettyPrint).toByteArray();
  1681.     }
  1682.    
  1683.     /**
  1684.      * Serialize to String the object <var>integrationErrorCode</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorCode}
  1685.      *
  1686.      * @param integrationErrorCode Object to be serialized
  1687.      * @return Object to be serialized as String
  1688.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1689.      */
  1690.     public String toString(IntegrationErrorCode integrationErrorCode) throws SerializerException {
  1691.         return this.objToXml(IntegrationErrorCode.class, integrationErrorCode, false).toString();
  1692.     }
  1693.     /**
  1694.      * Serialize to String the object <var>integrationErrorCode</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorCode}
  1695.      *
  1696.      * @param integrationErrorCode Object to be serialized
  1697.      * @param prettyPrint if true output the XML with indenting
  1698.      * @return Object to be serialized as String
  1699.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1700.      */
  1701.     public String toString(IntegrationErrorCode integrationErrorCode,boolean prettyPrint) throws SerializerException {
  1702.         return this.objToXml(IntegrationErrorCode.class, integrationErrorCode, prettyPrint).toString();
  1703.     }
  1704.    
  1705.    
  1706.    
  1707.     /*
  1708.      =================================================================================
  1709.      Object: Integration
  1710.      =================================================================================
  1711.     */
  1712.    
  1713.     /**
  1714.      * Serialize to file system in <var>fileName</var> the object <var>integration</var> of type {@link org.openspcoop2.protocol.manifest.Integration}
  1715.      *
  1716.      * @param fileName Xml file to serialize the object <var>integration</var>
  1717.      * @param integration Object to be serialized in xml file <var>fileName</var>
  1718.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1719.      */
  1720.     public void write(String fileName,Integration integration) throws SerializerException {
  1721.         this.objToXml(fileName, Integration.class, integration, false);
  1722.     }
  1723.     /**
  1724.      * Serialize to file system in <var>fileName</var> the object <var>integration</var> of type {@link org.openspcoop2.protocol.manifest.Integration}
  1725.      *
  1726.      * @param fileName Xml file to serialize the object <var>integration</var>
  1727.      * @param integration Object to be serialized in xml file <var>fileName</var>
  1728.      * @param prettyPrint if true output the XML with indenting
  1729.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1730.      */
  1731.     public void write(String fileName,Integration integration,boolean prettyPrint) throws SerializerException {
  1732.         this.objToXml(fileName, Integration.class, integration, prettyPrint);
  1733.     }
  1734.    
  1735.     /**
  1736.      * Serialize to file system in <var>file</var> the object <var>integration</var> of type {@link org.openspcoop2.protocol.manifest.Integration}
  1737.      *
  1738.      * @param file Xml file to serialize the object <var>integration</var>
  1739.      * @param integration Object to be serialized in xml file <var>fileName</var>
  1740.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1741.      */
  1742.     public void write(File file,Integration integration) throws SerializerException {
  1743.         this.objToXml(file, Integration.class, integration, false);
  1744.     }
  1745.     /**
  1746.      * Serialize to file system in <var>file</var> the object <var>integration</var> of type {@link org.openspcoop2.protocol.manifest.Integration}
  1747.      *
  1748.      * @param file Xml file to serialize the object <var>integration</var>
  1749.      * @param integration Object to be serialized in xml file <var>fileName</var>
  1750.      * @param prettyPrint if true output the XML with indenting
  1751.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1752.      */
  1753.     public void write(File file,Integration integration,boolean prettyPrint) throws SerializerException {
  1754.         this.objToXml(file, Integration.class, integration, prettyPrint);
  1755.     }
  1756.    
  1757.     /**
  1758.      * Serialize to output stream <var>out</var> the object <var>integration</var> of type {@link org.openspcoop2.protocol.manifest.Integration}
  1759.      *
  1760.      * @param out OutputStream to serialize the object <var>integration</var>
  1761.      * @param integration Object to be serialized in xml file <var>fileName</var>
  1762.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1763.      */
  1764.     public void write(OutputStream out,Integration integration) throws SerializerException {
  1765.         this.objToXml(out, Integration.class, integration, false);
  1766.     }
  1767.     /**
  1768.      * Serialize to output stream <var>out</var> the object <var>integration</var> of type {@link org.openspcoop2.protocol.manifest.Integration}
  1769.      *
  1770.      * @param out OutputStream to serialize the object <var>integration</var>
  1771.      * @param integration Object to be serialized in xml file <var>fileName</var>
  1772.      * @param prettyPrint if true output the XML with indenting
  1773.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1774.      */
  1775.     public void write(OutputStream out,Integration integration,boolean prettyPrint) throws SerializerException {
  1776.         this.objToXml(out, Integration.class, integration, prettyPrint);
  1777.     }
  1778.            
  1779.     /**
  1780.      * Serialize to byte array the object <var>integration</var> of type {@link org.openspcoop2.protocol.manifest.Integration}
  1781.      *
  1782.      * @param integration Object to be serialized
  1783.      * @return Object to be serialized in byte array
  1784.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1785.      */
  1786.     public byte[] toByteArray(Integration integration) throws SerializerException {
  1787.         return this.objToXml(Integration.class, integration, false).toByteArray();
  1788.     }
  1789.     /**
  1790.      * Serialize to byte array the object <var>integration</var> of type {@link org.openspcoop2.protocol.manifest.Integration}
  1791.      *
  1792.      * @param integration Object to be serialized
  1793.      * @param prettyPrint if true output the XML with indenting
  1794.      * @return Object to be serialized in byte array
  1795.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1796.      */
  1797.     public byte[] toByteArray(Integration integration,boolean prettyPrint) throws SerializerException {
  1798.         return this.objToXml(Integration.class, integration, prettyPrint).toByteArray();
  1799.     }
  1800.    
  1801.     /**
  1802.      * Serialize to String the object <var>integration</var> of type {@link org.openspcoop2.protocol.manifest.Integration}
  1803.      *
  1804.      * @param integration Object to be serialized
  1805.      * @return Object to be serialized as String
  1806.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1807.      */
  1808.     public String toString(Integration integration) throws SerializerException {
  1809.         return this.objToXml(Integration.class, integration, false).toString();
  1810.     }
  1811.     /**
  1812.      * Serialize to String the object <var>integration</var> of type {@link org.openspcoop2.protocol.manifest.Integration}
  1813.      *
  1814.      * @param integration Object to be serialized
  1815.      * @param prettyPrint if true output the XML with indenting
  1816.      * @return Object to be serialized as String
  1817.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1818.      */
  1819.     public String toString(Integration integration,boolean prettyPrint) throws SerializerException {
  1820.         return this.objToXml(Integration.class, integration, prettyPrint).toString();
  1821.     }
  1822.    
  1823.    
  1824.    
  1825.     /*
  1826.      =================================================================================
  1827.      Object: RestConfiguration
  1828.      =================================================================================
  1829.     */
  1830.    
  1831.     /**
  1832.      * Serialize to file system in <var>fileName</var> the object <var>restConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.RestConfiguration}
  1833.      *
  1834.      * @param fileName Xml file to serialize the object <var>restConfiguration</var>
  1835.      * @param restConfiguration Object to be serialized in xml file <var>fileName</var>
  1836.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1837.      */
  1838.     public void write(String fileName,RestConfiguration restConfiguration) throws SerializerException {
  1839.         this.objToXml(fileName, RestConfiguration.class, restConfiguration, false);
  1840.     }
  1841.     /**
  1842.      * Serialize to file system in <var>fileName</var> the object <var>restConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.RestConfiguration}
  1843.      *
  1844.      * @param fileName Xml file to serialize the object <var>restConfiguration</var>
  1845.      * @param restConfiguration Object to be serialized in xml file <var>fileName</var>
  1846.      * @param prettyPrint if true output the XML with indenting
  1847.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1848.      */
  1849.     public void write(String fileName,RestConfiguration restConfiguration,boolean prettyPrint) throws SerializerException {
  1850.         this.objToXml(fileName, RestConfiguration.class, restConfiguration, prettyPrint);
  1851.     }
  1852.    
  1853.     /**
  1854.      * Serialize to file system in <var>file</var> the object <var>restConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.RestConfiguration}
  1855.      *
  1856.      * @param file Xml file to serialize the object <var>restConfiguration</var>
  1857.      * @param restConfiguration Object to be serialized in xml file <var>fileName</var>
  1858.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1859.      */
  1860.     public void write(File file,RestConfiguration restConfiguration) throws SerializerException {
  1861.         this.objToXml(file, RestConfiguration.class, restConfiguration, false);
  1862.     }
  1863.     /**
  1864.      * Serialize to file system in <var>file</var> the object <var>restConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.RestConfiguration}
  1865.      *
  1866.      * @param file Xml file to serialize the object <var>restConfiguration</var>
  1867.      * @param restConfiguration Object to be serialized in xml file <var>fileName</var>
  1868.      * @param prettyPrint if true output the XML with indenting
  1869.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1870.      */
  1871.     public void write(File file,RestConfiguration restConfiguration,boolean prettyPrint) throws SerializerException {
  1872.         this.objToXml(file, RestConfiguration.class, restConfiguration, prettyPrint);
  1873.     }
  1874.    
  1875.     /**
  1876.      * Serialize to output stream <var>out</var> the object <var>restConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.RestConfiguration}
  1877.      *
  1878.      * @param out OutputStream to serialize the object <var>restConfiguration</var>
  1879.      * @param restConfiguration Object to be serialized in xml file <var>fileName</var>
  1880.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1881.      */
  1882.     public void write(OutputStream out,RestConfiguration restConfiguration) throws SerializerException {
  1883.         this.objToXml(out, RestConfiguration.class, restConfiguration, false);
  1884.     }
  1885.     /**
  1886.      * Serialize to output stream <var>out</var> the object <var>restConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.RestConfiguration}
  1887.      *
  1888.      * @param out OutputStream to serialize the object <var>restConfiguration</var>
  1889.      * @param restConfiguration Object to be serialized in xml file <var>fileName</var>
  1890.      * @param prettyPrint if true output the XML with indenting
  1891.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1892.      */
  1893.     public void write(OutputStream out,RestConfiguration restConfiguration,boolean prettyPrint) throws SerializerException {
  1894.         this.objToXml(out, RestConfiguration.class, restConfiguration, prettyPrint);
  1895.     }
  1896.            
  1897.     /**
  1898.      * Serialize to byte array the object <var>restConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.RestConfiguration}
  1899.      *
  1900.      * @param restConfiguration Object to be serialized
  1901.      * @return Object to be serialized in byte array
  1902.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1903.      */
  1904.     public byte[] toByteArray(RestConfiguration restConfiguration) throws SerializerException {
  1905.         return this.objToXml(RestConfiguration.class, restConfiguration, false).toByteArray();
  1906.     }
  1907.     /**
  1908.      * Serialize to byte array the object <var>restConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.RestConfiguration}
  1909.      *
  1910.      * @param restConfiguration Object to be serialized
  1911.      * @param prettyPrint if true output the XML with indenting
  1912.      * @return Object to be serialized in byte array
  1913.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1914.      */
  1915.     public byte[] toByteArray(RestConfiguration restConfiguration,boolean prettyPrint) throws SerializerException {
  1916.         return this.objToXml(RestConfiguration.class, restConfiguration, prettyPrint).toByteArray();
  1917.     }
  1918.    
  1919.     /**
  1920.      * Serialize to String the object <var>restConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.RestConfiguration}
  1921.      *
  1922.      * @param restConfiguration Object to be serialized
  1923.      * @return Object to be serialized as String
  1924.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1925.      */
  1926.     public String toString(RestConfiguration restConfiguration) throws SerializerException {
  1927.         return this.objToXml(RestConfiguration.class, restConfiguration, false).toString();
  1928.     }
  1929.     /**
  1930.      * Serialize to String the object <var>restConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.RestConfiguration}
  1931.      *
  1932.      * @param restConfiguration Object to be serialized
  1933.      * @param prettyPrint if true output the XML with indenting
  1934.      * @return Object to be serialized as String
  1935.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1936.      */
  1937.     public String toString(RestConfiguration restConfiguration,boolean prettyPrint) throws SerializerException {
  1938.         return this.objToXml(RestConfiguration.class, restConfiguration, prettyPrint).toString();
  1939.     }
  1940.    
  1941.    
  1942.    
  1943.     /*
  1944.      =================================================================================
  1945.      Object: IntegrationErrorConfiguration
  1946.      =================================================================================
  1947.     */
  1948.    
  1949.     /**
  1950.      * Serialize to file system in <var>fileName</var> the object <var>integrationErrorConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorConfiguration}
  1951.      *
  1952.      * @param fileName Xml file to serialize the object <var>integrationErrorConfiguration</var>
  1953.      * @param integrationErrorConfiguration Object to be serialized in xml file <var>fileName</var>
  1954.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1955.      */
  1956.     public void write(String fileName,IntegrationErrorConfiguration integrationErrorConfiguration) throws SerializerException {
  1957.         this.objToXml(fileName, IntegrationErrorConfiguration.class, integrationErrorConfiguration, false);
  1958.     }
  1959.     /**
  1960.      * Serialize to file system in <var>fileName</var> the object <var>integrationErrorConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorConfiguration}
  1961.      *
  1962.      * @param fileName Xml file to serialize the object <var>integrationErrorConfiguration</var>
  1963.      * @param integrationErrorConfiguration Object to be serialized in xml file <var>fileName</var>
  1964.      * @param prettyPrint if true output the XML with indenting
  1965.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1966.      */
  1967.     public void write(String fileName,IntegrationErrorConfiguration integrationErrorConfiguration,boolean prettyPrint) throws SerializerException {
  1968.         this.objToXml(fileName, IntegrationErrorConfiguration.class, integrationErrorConfiguration, prettyPrint);
  1969.     }
  1970.    
  1971.     /**
  1972.      * Serialize to file system in <var>file</var> the object <var>integrationErrorConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorConfiguration}
  1973.      *
  1974.      * @param file Xml file to serialize the object <var>integrationErrorConfiguration</var>
  1975.      * @param integrationErrorConfiguration Object to be serialized in xml file <var>fileName</var>
  1976.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1977.      */
  1978.     public void write(File file,IntegrationErrorConfiguration integrationErrorConfiguration) throws SerializerException {
  1979.         this.objToXml(file, IntegrationErrorConfiguration.class, integrationErrorConfiguration, false);
  1980.     }
  1981.     /**
  1982.      * Serialize to file system in <var>file</var> the object <var>integrationErrorConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorConfiguration}
  1983.      *
  1984.      * @param file Xml file to serialize the object <var>integrationErrorConfiguration</var>
  1985.      * @param integrationErrorConfiguration Object to be serialized in xml file <var>fileName</var>
  1986.      * @param prettyPrint if true output the XML with indenting
  1987.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1988.      */
  1989.     public void write(File file,IntegrationErrorConfiguration integrationErrorConfiguration,boolean prettyPrint) throws SerializerException {
  1990.         this.objToXml(file, IntegrationErrorConfiguration.class, integrationErrorConfiguration, prettyPrint);
  1991.     }
  1992.    
  1993.     /**
  1994.      * Serialize to output stream <var>out</var> the object <var>integrationErrorConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorConfiguration}
  1995.      *
  1996.      * @param out OutputStream to serialize the object <var>integrationErrorConfiguration</var>
  1997.      * @param integrationErrorConfiguration Object to be serialized in xml file <var>fileName</var>
  1998.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  1999.      */
  2000.     public void write(OutputStream out,IntegrationErrorConfiguration integrationErrorConfiguration) throws SerializerException {
  2001.         this.objToXml(out, IntegrationErrorConfiguration.class, integrationErrorConfiguration, false);
  2002.     }
  2003.     /**
  2004.      * Serialize to output stream <var>out</var> the object <var>integrationErrorConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorConfiguration}
  2005.      *
  2006.      * @param out OutputStream to serialize the object <var>integrationErrorConfiguration</var>
  2007.      * @param integrationErrorConfiguration Object to be serialized in xml file <var>fileName</var>
  2008.      * @param prettyPrint if true output the XML with indenting
  2009.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2010.      */
  2011.     public void write(OutputStream out,IntegrationErrorConfiguration integrationErrorConfiguration,boolean prettyPrint) throws SerializerException {
  2012.         this.objToXml(out, IntegrationErrorConfiguration.class, integrationErrorConfiguration, prettyPrint);
  2013.     }
  2014.            
  2015.     /**
  2016.      * Serialize to byte array the object <var>integrationErrorConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorConfiguration}
  2017.      *
  2018.      * @param integrationErrorConfiguration Object to be serialized
  2019.      * @return Object to be serialized in byte array
  2020.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2021.      */
  2022.     public byte[] toByteArray(IntegrationErrorConfiguration integrationErrorConfiguration) throws SerializerException {
  2023.         return this.objToXml(IntegrationErrorConfiguration.class, integrationErrorConfiguration, false).toByteArray();
  2024.     }
  2025.     /**
  2026.      * Serialize to byte array the object <var>integrationErrorConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorConfiguration}
  2027.      *
  2028.      * @param integrationErrorConfiguration Object to be serialized
  2029.      * @param prettyPrint if true output the XML with indenting
  2030.      * @return Object to be serialized in byte array
  2031.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2032.      */
  2033.     public byte[] toByteArray(IntegrationErrorConfiguration integrationErrorConfiguration,boolean prettyPrint) throws SerializerException {
  2034.         return this.objToXml(IntegrationErrorConfiguration.class, integrationErrorConfiguration, prettyPrint).toByteArray();
  2035.     }
  2036.    
  2037.     /**
  2038.      * Serialize to String the object <var>integrationErrorConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorConfiguration}
  2039.      *
  2040.      * @param integrationErrorConfiguration Object to be serialized
  2041.      * @return Object to be serialized as String
  2042.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2043.      */
  2044.     public String toString(IntegrationErrorConfiguration integrationErrorConfiguration) throws SerializerException {
  2045.         return this.objToXml(IntegrationErrorConfiguration.class, integrationErrorConfiguration, false).toString();
  2046.     }
  2047.     /**
  2048.      * Serialize to String the object <var>integrationErrorConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorConfiguration}
  2049.      *
  2050.      * @param integrationErrorConfiguration Object to be serialized
  2051.      * @param prettyPrint if true output the XML with indenting
  2052.      * @return Object to be serialized as String
  2053.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2054.      */
  2055.     public String toString(IntegrationErrorConfiguration integrationErrorConfiguration,boolean prettyPrint) throws SerializerException {
  2056.         return this.objToXml(IntegrationErrorConfiguration.class, integrationErrorConfiguration, prettyPrint).toString();
  2057.     }
  2058.    
  2059.    
  2060.    
  2061.     /*
  2062.      =================================================================================
  2063.      Object: RestMediaTypeCollection
  2064.      =================================================================================
  2065.     */
  2066.    
  2067.     /**
  2068.      * Serialize to file system in <var>fileName</var> the object <var>restMediaTypeCollection</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeCollection}
  2069.      *
  2070.      * @param fileName Xml file to serialize the object <var>restMediaTypeCollection</var>
  2071.      * @param restMediaTypeCollection Object to be serialized in xml file <var>fileName</var>
  2072.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2073.      */
  2074.     public void write(String fileName,RestMediaTypeCollection restMediaTypeCollection) throws SerializerException {
  2075.         this.objToXml(fileName, RestMediaTypeCollection.class, restMediaTypeCollection, false);
  2076.     }
  2077.     /**
  2078.      * Serialize to file system in <var>fileName</var> the object <var>restMediaTypeCollection</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeCollection}
  2079.      *
  2080.      * @param fileName Xml file to serialize the object <var>restMediaTypeCollection</var>
  2081.      * @param restMediaTypeCollection Object to be serialized in xml file <var>fileName</var>
  2082.      * @param prettyPrint if true output the XML with indenting
  2083.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2084.      */
  2085.     public void write(String fileName,RestMediaTypeCollection restMediaTypeCollection,boolean prettyPrint) throws SerializerException {
  2086.         this.objToXml(fileName, RestMediaTypeCollection.class, restMediaTypeCollection, prettyPrint);
  2087.     }
  2088.    
  2089.     /**
  2090.      * Serialize to file system in <var>file</var> the object <var>restMediaTypeCollection</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeCollection}
  2091.      *
  2092.      * @param file Xml file to serialize the object <var>restMediaTypeCollection</var>
  2093.      * @param restMediaTypeCollection Object to be serialized in xml file <var>fileName</var>
  2094.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2095.      */
  2096.     public void write(File file,RestMediaTypeCollection restMediaTypeCollection) throws SerializerException {
  2097.         this.objToXml(file, RestMediaTypeCollection.class, restMediaTypeCollection, false);
  2098.     }
  2099.     /**
  2100.      * Serialize to file system in <var>file</var> the object <var>restMediaTypeCollection</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeCollection}
  2101.      *
  2102.      * @param file Xml file to serialize the object <var>restMediaTypeCollection</var>
  2103.      * @param restMediaTypeCollection Object to be serialized in xml file <var>fileName</var>
  2104.      * @param prettyPrint if true output the XML with indenting
  2105.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2106.      */
  2107.     public void write(File file,RestMediaTypeCollection restMediaTypeCollection,boolean prettyPrint) throws SerializerException {
  2108.         this.objToXml(file, RestMediaTypeCollection.class, restMediaTypeCollection, prettyPrint);
  2109.     }
  2110.    
  2111.     /**
  2112.      * Serialize to output stream <var>out</var> the object <var>restMediaTypeCollection</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeCollection}
  2113.      *
  2114.      * @param out OutputStream to serialize the object <var>restMediaTypeCollection</var>
  2115.      * @param restMediaTypeCollection Object to be serialized in xml file <var>fileName</var>
  2116.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2117.      */
  2118.     public void write(OutputStream out,RestMediaTypeCollection restMediaTypeCollection) throws SerializerException {
  2119.         this.objToXml(out, RestMediaTypeCollection.class, restMediaTypeCollection, false);
  2120.     }
  2121.     /**
  2122.      * Serialize to output stream <var>out</var> the object <var>restMediaTypeCollection</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeCollection}
  2123.      *
  2124.      * @param out OutputStream to serialize the object <var>restMediaTypeCollection</var>
  2125.      * @param restMediaTypeCollection Object to be serialized in xml file <var>fileName</var>
  2126.      * @param prettyPrint if true output the XML with indenting
  2127.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2128.      */
  2129.     public void write(OutputStream out,RestMediaTypeCollection restMediaTypeCollection,boolean prettyPrint) throws SerializerException {
  2130.         this.objToXml(out, RestMediaTypeCollection.class, restMediaTypeCollection, prettyPrint);
  2131.     }
  2132.            
  2133.     /**
  2134.      * Serialize to byte array the object <var>restMediaTypeCollection</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeCollection}
  2135.      *
  2136.      * @param restMediaTypeCollection Object to be serialized
  2137.      * @return Object to be serialized in byte array
  2138.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2139.      */
  2140.     public byte[] toByteArray(RestMediaTypeCollection restMediaTypeCollection) throws SerializerException {
  2141.         return this.objToXml(RestMediaTypeCollection.class, restMediaTypeCollection, false).toByteArray();
  2142.     }
  2143.     /**
  2144.      * Serialize to byte array the object <var>restMediaTypeCollection</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeCollection}
  2145.      *
  2146.      * @param restMediaTypeCollection Object to be serialized
  2147.      * @param prettyPrint if true output the XML with indenting
  2148.      * @return Object to be serialized in byte array
  2149.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2150.      */
  2151.     public byte[] toByteArray(RestMediaTypeCollection restMediaTypeCollection,boolean prettyPrint) throws SerializerException {
  2152.         return this.objToXml(RestMediaTypeCollection.class, restMediaTypeCollection, prettyPrint).toByteArray();
  2153.     }
  2154.    
  2155.     /**
  2156.      * Serialize to String the object <var>restMediaTypeCollection</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeCollection}
  2157.      *
  2158.      * @param restMediaTypeCollection Object to be serialized
  2159.      * @return Object to be serialized as String
  2160.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2161.      */
  2162.     public String toString(RestMediaTypeCollection restMediaTypeCollection) throws SerializerException {
  2163.         return this.objToXml(RestMediaTypeCollection.class, restMediaTypeCollection, false).toString();
  2164.     }
  2165.     /**
  2166.      * Serialize to String the object <var>restMediaTypeCollection</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeCollection}
  2167.      *
  2168.      * @param restMediaTypeCollection Object to be serialized
  2169.      * @param prettyPrint if true output the XML with indenting
  2170.      * @return Object to be serialized as String
  2171.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2172.      */
  2173.     public String toString(RestMediaTypeCollection restMediaTypeCollection,boolean prettyPrint) throws SerializerException {
  2174.         return this.objToXml(RestMediaTypeCollection.class, restMediaTypeCollection, prettyPrint).toString();
  2175.     }
  2176.    
  2177.    
  2178.    
  2179.     /*
  2180.      =================================================================================
  2181.      Object: InterfacesConfiguration
  2182.      =================================================================================
  2183.     */
  2184.    
  2185.     /**
  2186.      * Serialize to file system in <var>fileName</var> the object <var>interfacesConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.InterfacesConfiguration}
  2187.      *
  2188.      * @param fileName Xml file to serialize the object <var>interfacesConfiguration</var>
  2189.      * @param interfacesConfiguration Object to be serialized in xml file <var>fileName</var>
  2190.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2191.      */
  2192.     public void write(String fileName,InterfacesConfiguration interfacesConfiguration) throws SerializerException {
  2193.         this.objToXml(fileName, InterfacesConfiguration.class, interfacesConfiguration, false);
  2194.     }
  2195.     /**
  2196.      * Serialize to file system in <var>fileName</var> the object <var>interfacesConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.InterfacesConfiguration}
  2197.      *
  2198.      * @param fileName Xml file to serialize the object <var>interfacesConfiguration</var>
  2199.      * @param interfacesConfiguration Object to be serialized in xml file <var>fileName</var>
  2200.      * @param prettyPrint if true output the XML with indenting
  2201.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2202.      */
  2203.     public void write(String fileName,InterfacesConfiguration interfacesConfiguration,boolean prettyPrint) throws SerializerException {
  2204.         this.objToXml(fileName, InterfacesConfiguration.class, interfacesConfiguration, prettyPrint);
  2205.     }
  2206.    
  2207.     /**
  2208.      * Serialize to file system in <var>file</var> the object <var>interfacesConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.InterfacesConfiguration}
  2209.      *
  2210.      * @param file Xml file to serialize the object <var>interfacesConfiguration</var>
  2211.      * @param interfacesConfiguration Object to be serialized in xml file <var>fileName</var>
  2212.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2213.      */
  2214.     public void write(File file,InterfacesConfiguration interfacesConfiguration) throws SerializerException {
  2215.         this.objToXml(file, InterfacesConfiguration.class, interfacesConfiguration, false);
  2216.     }
  2217.     /**
  2218.      * Serialize to file system in <var>file</var> the object <var>interfacesConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.InterfacesConfiguration}
  2219.      *
  2220.      * @param file Xml file to serialize the object <var>interfacesConfiguration</var>
  2221.      * @param interfacesConfiguration Object to be serialized in xml file <var>fileName</var>
  2222.      * @param prettyPrint if true output the XML with indenting
  2223.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2224.      */
  2225.     public void write(File file,InterfacesConfiguration interfacesConfiguration,boolean prettyPrint) throws SerializerException {
  2226.         this.objToXml(file, InterfacesConfiguration.class, interfacesConfiguration, prettyPrint);
  2227.     }
  2228.    
  2229.     /**
  2230.      * Serialize to output stream <var>out</var> the object <var>interfacesConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.InterfacesConfiguration}
  2231.      *
  2232.      * @param out OutputStream to serialize the object <var>interfacesConfiguration</var>
  2233.      * @param interfacesConfiguration Object to be serialized in xml file <var>fileName</var>
  2234.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2235.      */
  2236.     public void write(OutputStream out,InterfacesConfiguration interfacesConfiguration) throws SerializerException {
  2237.         this.objToXml(out, InterfacesConfiguration.class, interfacesConfiguration, false);
  2238.     }
  2239.     /**
  2240.      * Serialize to output stream <var>out</var> the object <var>interfacesConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.InterfacesConfiguration}
  2241.      *
  2242.      * @param out OutputStream to serialize the object <var>interfacesConfiguration</var>
  2243.      * @param interfacesConfiguration Object to be serialized in xml file <var>fileName</var>
  2244.      * @param prettyPrint if true output the XML with indenting
  2245.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2246.      */
  2247.     public void write(OutputStream out,InterfacesConfiguration interfacesConfiguration,boolean prettyPrint) throws SerializerException {
  2248.         this.objToXml(out, InterfacesConfiguration.class, interfacesConfiguration, prettyPrint);
  2249.     }
  2250.            
  2251.     /**
  2252.      * Serialize to byte array the object <var>interfacesConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.InterfacesConfiguration}
  2253.      *
  2254.      * @param interfacesConfiguration Object to be serialized
  2255.      * @return Object to be serialized in byte array
  2256.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2257.      */
  2258.     public byte[] toByteArray(InterfacesConfiguration interfacesConfiguration) throws SerializerException {
  2259.         return this.objToXml(InterfacesConfiguration.class, interfacesConfiguration, false).toByteArray();
  2260.     }
  2261.     /**
  2262.      * Serialize to byte array the object <var>interfacesConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.InterfacesConfiguration}
  2263.      *
  2264.      * @param interfacesConfiguration Object to be serialized
  2265.      * @param prettyPrint if true output the XML with indenting
  2266.      * @return Object to be serialized in byte array
  2267.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2268.      */
  2269.     public byte[] toByteArray(InterfacesConfiguration interfacesConfiguration,boolean prettyPrint) throws SerializerException {
  2270.         return this.objToXml(InterfacesConfiguration.class, interfacesConfiguration, prettyPrint).toByteArray();
  2271.     }
  2272.    
  2273.     /**
  2274.      * Serialize to String the object <var>interfacesConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.InterfacesConfiguration}
  2275.      *
  2276.      * @param interfacesConfiguration Object to be serialized
  2277.      * @return Object to be serialized as String
  2278.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2279.      */
  2280.     public String toString(InterfacesConfiguration interfacesConfiguration) throws SerializerException {
  2281.         return this.objToXml(InterfacesConfiguration.class, interfacesConfiguration, false).toString();
  2282.     }
  2283.     /**
  2284.      * Serialize to String the object <var>interfacesConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.InterfacesConfiguration}
  2285.      *
  2286.      * @param interfacesConfiguration Object to be serialized
  2287.      * @param prettyPrint if true output the XML with indenting
  2288.      * @return Object to be serialized as String
  2289.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2290.      */
  2291.     public String toString(InterfacesConfiguration interfacesConfiguration,boolean prettyPrint) throws SerializerException {
  2292.         return this.objToXml(InterfacesConfiguration.class, interfacesConfiguration, prettyPrint).toString();
  2293.     }
  2294.    
  2295.    
  2296.    
  2297.     /*
  2298.      =================================================================================
  2299.      Object: RestCollaborationProfile
  2300.      =================================================================================
  2301.     */
  2302.    
  2303.     /**
  2304.      * Serialize to file system in <var>fileName</var> the object <var>restCollaborationProfile</var> of type {@link org.openspcoop2.protocol.manifest.RestCollaborationProfile}
  2305.      *
  2306.      * @param fileName Xml file to serialize the object <var>restCollaborationProfile</var>
  2307.      * @param restCollaborationProfile Object to be serialized in xml file <var>fileName</var>
  2308.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2309.      */
  2310.     public void write(String fileName,RestCollaborationProfile restCollaborationProfile) throws SerializerException {
  2311.         this.objToXml(fileName, RestCollaborationProfile.class, restCollaborationProfile, false);
  2312.     }
  2313.     /**
  2314.      * Serialize to file system in <var>fileName</var> the object <var>restCollaborationProfile</var> of type {@link org.openspcoop2.protocol.manifest.RestCollaborationProfile}
  2315.      *
  2316.      * @param fileName Xml file to serialize the object <var>restCollaborationProfile</var>
  2317.      * @param restCollaborationProfile Object to be serialized in xml file <var>fileName</var>
  2318.      * @param prettyPrint if true output the XML with indenting
  2319.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2320.      */
  2321.     public void write(String fileName,RestCollaborationProfile restCollaborationProfile,boolean prettyPrint) throws SerializerException {
  2322.         this.objToXml(fileName, RestCollaborationProfile.class, restCollaborationProfile, prettyPrint);
  2323.     }
  2324.    
  2325.     /**
  2326.      * Serialize to file system in <var>file</var> the object <var>restCollaborationProfile</var> of type {@link org.openspcoop2.protocol.manifest.RestCollaborationProfile}
  2327.      *
  2328.      * @param file Xml file to serialize the object <var>restCollaborationProfile</var>
  2329.      * @param restCollaborationProfile Object to be serialized in xml file <var>fileName</var>
  2330.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2331.      */
  2332.     public void write(File file,RestCollaborationProfile restCollaborationProfile) throws SerializerException {
  2333.         this.objToXml(file, RestCollaborationProfile.class, restCollaborationProfile, false);
  2334.     }
  2335.     /**
  2336.      * Serialize to file system in <var>file</var> the object <var>restCollaborationProfile</var> of type {@link org.openspcoop2.protocol.manifest.RestCollaborationProfile}
  2337.      *
  2338.      * @param file Xml file to serialize the object <var>restCollaborationProfile</var>
  2339.      * @param restCollaborationProfile Object to be serialized in xml file <var>fileName</var>
  2340.      * @param prettyPrint if true output the XML with indenting
  2341.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2342.      */
  2343.     public void write(File file,RestCollaborationProfile restCollaborationProfile,boolean prettyPrint) throws SerializerException {
  2344.         this.objToXml(file, RestCollaborationProfile.class, restCollaborationProfile, prettyPrint);
  2345.     }
  2346.    
  2347.     /**
  2348.      * Serialize to output stream <var>out</var> the object <var>restCollaborationProfile</var> of type {@link org.openspcoop2.protocol.manifest.RestCollaborationProfile}
  2349.      *
  2350.      * @param out OutputStream to serialize the object <var>restCollaborationProfile</var>
  2351.      * @param restCollaborationProfile Object to be serialized in xml file <var>fileName</var>
  2352.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2353.      */
  2354.     public void write(OutputStream out,RestCollaborationProfile restCollaborationProfile) throws SerializerException {
  2355.         this.objToXml(out, RestCollaborationProfile.class, restCollaborationProfile, false);
  2356.     }
  2357.     /**
  2358.      * Serialize to output stream <var>out</var> the object <var>restCollaborationProfile</var> of type {@link org.openspcoop2.protocol.manifest.RestCollaborationProfile}
  2359.      *
  2360.      * @param out OutputStream to serialize the object <var>restCollaborationProfile</var>
  2361.      * @param restCollaborationProfile Object to be serialized in xml file <var>fileName</var>
  2362.      * @param prettyPrint if true output the XML with indenting
  2363.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2364.      */
  2365.     public void write(OutputStream out,RestCollaborationProfile restCollaborationProfile,boolean prettyPrint) throws SerializerException {
  2366.         this.objToXml(out, RestCollaborationProfile.class, restCollaborationProfile, prettyPrint);
  2367.     }
  2368.            
  2369.     /**
  2370.      * Serialize to byte array the object <var>restCollaborationProfile</var> of type {@link org.openspcoop2.protocol.manifest.RestCollaborationProfile}
  2371.      *
  2372.      * @param restCollaborationProfile Object to be serialized
  2373.      * @return Object to be serialized in byte array
  2374.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2375.      */
  2376.     public byte[] toByteArray(RestCollaborationProfile restCollaborationProfile) throws SerializerException {
  2377.         return this.objToXml(RestCollaborationProfile.class, restCollaborationProfile, false).toByteArray();
  2378.     }
  2379.     /**
  2380.      * Serialize to byte array the object <var>restCollaborationProfile</var> of type {@link org.openspcoop2.protocol.manifest.RestCollaborationProfile}
  2381.      *
  2382.      * @param restCollaborationProfile Object to be serialized
  2383.      * @param prettyPrint if true output the XML with indenting
  2384.      * @return Object to be serialized in byte array
  2385.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2386.      */
  2387.     public byte[] toByteArray(RestCollaborationProfile restCollaborationProfile,boolean prettyPrint) throws SerializerException {
  2388.         return this.objToXml(RestCollaborationProfile.class, restCollaborationProfile, prettyPrint).toByteArray();
  2389.     }
  2390.    
  2391.     /**
  2392.      * Serialize to String the object <var>restCollaborationProfile</var> of type {@link org.openspcoop2.protocol.manifest.RestCollaborationProfile}
  2393.      *
  2394.      * @param restCollaborationProfile Object to be serialized
  2395.      * @return Object to be serialized as String
  2396.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2397.      */
  2398.     public String toString(RestCollaborationProfile restCollaborationProfile) throws SerializerException {
  2399.         return this.objToXml(RestCollaborationProfile.class, restCollaborationProfile, false).toString();
  2400.     }
  2401.     /**
  2402.      * Serialize to String the object <var>restCollaborationProfile</var> of type {@link org.openspcoop2.protocol.manifest.RestCollaborationProfile}
  2403.      *
  2404.      * @param restCollaborationProfile Object to be serialized
  2405.      * @param prettyPrint if true output the XML with indenting
  2406.      * @return Object to be serialized as String
  2407.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2408.      */
  2409.     public String toString(RestCollaborationProfile restCollaborationProfile,boolean prettyPrint) throws SerializerException {
  2410.         return this.objToXml(RestCollaborationProfile.class, restCollaborationProfile, prettyPrint).toString();
  2411.     }
  2412.    
  2413.    
  2414.    
  2415.     /*
  2416.      =================================================================================
  2417.      Object: Functionality
  2418.      =================================================================================
  2419.     */
  2420.    
  2421.     /**
  2422.      * Serialize to file system in <var>fileName</var> the object <var>functionality</var> of type {@link org.openspcoop2.protocol.manifest.Functionality}
  2423.      *
  2424.      * @param fileName Xml file to serialize the object <var>functionality</var>
  2425.      * @param functionality Object to be serialized in xml file <var>fileName</var>
  2426.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2427.      */
  2428.     public void write(String fileName,Functionality functionality) throws SerializerException {
  2429.         this.objToXml(fileName, Functionality.class, functionality, false);
  2430.     }
  2431.     /**
  2432.      * Serialize to file system in <var>fileName</var> the object <var>functionality</var> of type {@link org.openspcoop2.protocol.manifest.Functionality}
  2433.      *
  2434.      * @param fileName Xml file to serialize the object <var>functionality</var>
  2435.      * @param functionality Object to be serialized in xml file <var>fileName</var>
  2436.      * @param prettyPrint if true output the XML with indenting
  2437.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2438.      */
  2439.     public void write(String fileName,Functionality functionality,boolean prettyPrint) throws SerializerException {
  2440.         this.objToXml(fileName, Functionality.class, functionality, prettyPrint);
  2441.     }
  2442.    
  2443.     /**
  2444.      * Serialize to file system in <var>file</var> the object <var>functionality</var> of type {@link org.openspcoop2.protocol.manifest.Functionality}
  2445.      *
  2446.      * @param file Xml file to serialize the object <var>functionality</var>
  2447.      * @param functionality Object to be serialized in xml file <var>fileName</var>
  2448.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2449.      */
  2450.     public void write(File file,Functionality functionality) throws SerializerException {
  2451.         this.objToXml(file, Functionality.class, functionality, false);
  2452.     }
  2453.     /**
  2454.      * Serialize to file system in <var>file</var> the object <var>functionality</var> of type {@link org.openspcoop2.protocol.manifest.Functionality}
  2455.      *
  2456.      * @param file Xml file to serialize the object <var>functionality</var>
  2457.      * @param functionality Object to be serialized in xml file <var>fileName</var>
  2458.      * @param prettyPrint if true output the XML with indenting
  2459.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2460.      */
  2461.     public void write(File file,Functionality functionality,boolean prettyPrint) throws SerializerException {
  2462.         this.objToXml(file, Functionality.class, functionality, prettyPrint);
  2463.     }
  2464.    
  2465.     /**
  2466.      * Serialize to output stream <var>out</var> the object <var>functionality</var> of type {@link org.openspcoop2.protocol.manifest.Functionality}
  2467.      *
  2468.      * @param out OutputStream to serialize the object <var>functionality</var>
  2469.      * @param functionality Object to be serialized in xml file <var>fileName</var>
  2470.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2471.      */
  2472.     public void write(OutputStream out,Functionality functionality) throws SerializerException {
  2473.         this.objToXml(out, Functionality.class, functionality, false);
  2474.     }
  2475.     /**
  2476.      * Serialize to output stream <var>out</var> the object <var>functionality</var> of type {@link org.openspcoop2.protocol.manifest.Functionality}
  2477.      *
  2478.      * @param out OutputStream to serialize the object <var>functionality</var>
  2479.      * @param functionality Object to be serialized in xml file <var>fileName</var>
  2480.      * @param prettyPrint if true output the XML with indenting
  2481.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2482.      */
  2483.     public void write(OutputStream out,Functionality functionality,boolean prettyPrint) throws SerializerException {
  2484.         this.objToXml(out, Functionality.class, functionality, prettyPrint);
  2485.     }
  2486.            
  2487.     /**
  2488.      * Serialize to byte array the object <var>functionality</var> of type {@link org.openspcoop2.protocol.manifest.Functionality}
  2489.      *
  2490.      * @param functionality Object to be serialized
  2491.      * @return Object to be serialized in byte array
  2492.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2493.      */
  2494.     public byte[] toByteArray(Functionality functionality) throws SerializerException {
  2495.         return this.objToXml(Functionality.class, functionality, false).toByteArray();
  2496.     }
  2497.     /**
  2498.      * Serialize to byte array the object <var>functionality</var> of type {@link org.openspcoop2.protocol.manifest.Functionality}
  2499.      *
  2500.      * @param functionality Object to be serialized
  2501.      * @param prettyPrint if true output the XML with indenting
  2502.      * @return Object to be serialized in byte array
  2503.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2504.      */
  2505.     public byte[] toByteArray(Functionality functionality,boolean prettyPrint) throws SerializerException {
  2506.         return this.objToXml(Functionality.class, functionality, prettyPrint).toByteArray();
  2507.     }
  2508.    
  2509.     /**
  2510.      * Serialize to String the object <var>functionality</var> of type {@link org.openspcoop2.protocol.manifest.Functionality}
  2511.      *
  2512.      * @param functionality Object to be serialized
  2513.      * @return Object to be serialized as String
  2514.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2515.      */
  2516.     public String toString(Functionality functionality) throws SerializerException {
  2517.         return this.objToXml(Functionality.class, functionality, false).toString();
  2518.     }
  2519.     /**
  2520.      * Serialize to String the object <var>functionality</var> of type {@link org.openspcoop2.protocol.manifest.Functionality}
  2521.      *
  2522.      * @param functionality Object to be serialized
  2523.      * @param prettyPrint if true output the XML with indenting
  2524.      * @return Object to be serialized as String
  2525.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2526.      */
  2527.     public String toString(Functionality functionality,boolean prettyPrint) throws SerializerException {
  2528.         return this.objToXml(Functionality.class, functionality, prettyPrint).toString();
  2529.     }
  2530.    
  2531.    
  2532.    
  2533.     /*
  2534.      =================================================================================
  2535.      Object: IntegrationErrorCollection
  2536.      =================================================================================
  2537.     */
  2538.    
  2539.     /**
  2540.      * Serialize to file system in <var>fileName</var> the object <var>integrationErrorCollection</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorCollection}
  2541.      *
  2542.      * @param fileName Xml file to serialize the object <var>integrationErrorCollection</var>
  2543.      * @param integrationErrorCollection Object to be serialized in xml file <var>fileName</var>
  2544.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2545.      */
  2546.     public void write(String fileName,IntegrationErrorCollection integrationErrorCollection) throws SerializerException {
  2547.         this.objToXml(fileName, IntegrationErrorCollection.class, integrationErrorCollection, false);
  2548.     }
  2549.     /**
  2550.      * Serialize to file system in <var>fileName</var> the object <var>integrationErrorCollection</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorCollection}
  2551.      *
  2552.      * @param fileName Xml file to serialize the object <var>integrationErrorCollection</var>
  2553.      * @param integrationErrorCollection Object to be serialized in xml file <var>fileName</var>
  2554.      * @param prettyPrint if true output the XML with indenting
  2555.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2556.      */
  2557.     public void write(String fileName,IntegrationErrorCollection integrationErrorCollection,boolean prettyPrint) throws SerializerException {
  2558.         this.objToXml(fileName, IntegrationErrorCollection.class, integrationErrorCollection, prettyPrint);
  2559.     }
  2560.    
  2561.     /**
  2562.      * Serialize to file system in <var>file</var> the object <var>integrationErrorCollection</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorCollection}
  2563.      *
  2564.      * @param file Xml file to serialize the object <var>integrationErrorCollection</var>
  2565.      * @param integrationErrorCollection Object to be serialized in xml file <var>fileName</var>
  2566.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2567.      */
  2568.     public void write(File file,IntegrationErrorCollection integrationErrorCollection) throws SerializerException {
  2569.         this.objToXml(file, IntegrationErrorCollection.class, integrationErrorCollection, false);
  2570.     }
  2571.     /**
  2572.      * Serialize to file system in <var>file</var> the object <var>integrationErrorCollection</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorCollection}
  2573.      *
  2574.      * @param file Xml file to serialize the object <var>integrationErrorCollection</var>
  2575.      * @param integrationErrorCollection Object to be serialized in xml file <var>fileName</var>
  2576.      * @param prettyPrint if true output the XML with indenting
  2577.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2578.      */
  2579.     public void write(File file,IntegrationErrorCollection integrationErrorCollection,boolean prettyPrint) throws SerializerException {
  2580.         this.objToXml(file, IntegrationErrorCollection.class, integrationErrorCollection, prettyPrint);
  2581.     }
  2582.    
  2583.     /**
  2584.      * Serialize to output stream <var>out</var> the object <var>integrationErrorCollection</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorCollection}
  2585.      *
  2586.      * @param out OutputStream to serialize the object <var>integrationErrorCollection</var>
  2587.      * @param integrationErrorCollection Object to be serialized in xml file <var>fileName</var>
  2588.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2589.      */
  2590.     public void write(OutputStream out,IntegrationErrorCollection integrationErrorCollection) throws SerializerException {
  2591.         this.objToXml(out, IntegrationErrorCollection.class, integrationErrorCollection, false);
  2592.     }
  2593.     /**
  2594.      * Serialize to output stream <var>out</var> the object <var>integrationErrorCollection</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorCollection}
  2595.      *
  2596.      * @param out OutputStream to serialize the object <var>integrationErrorCollection</var>
  2597.      * @param integrationErrorCollection Object to be serialized in xml file <var>fileName</var>
  2598.      * @param prettyPrint if true output the XML with indenting
  2599.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2600.      */
  2601.     public void write(OutputStream out,IntegrationErrorCollection integrationErrorCollection,boolean prettyPrint) throws SerializerException {
  2602.         this.objToXml(out, IntegrationErrorCollection.class, integrationErrorCollection, prettyPrint);
  2603.     }
  2604.            
  2605.     /**
  2606.      * Serialize to byte array the object <var>integrationErrorCollection</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorCollection}
  2607.      *
  2608.      * @param integrationErrorCollection Object to be serialized
  2609.      * @return Object to be serialized in byte array
  2610.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2611.      */
  2612.     public byte[] toByteArray(IntegrationErrorCollection integrationErrorCollection) throws SerializerException {
  2613.         return this.objToXml(IntegrationErrorCollection.class, integrationErrorCollection, false).toByteArray();
  2614.     }
  2615.     /**
  2616.      * Serialize to byte array the object <var>integrationErrorCollection</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorCollection}
  2617.      *
  2618.      * @param integrationErrorCollection Object to be serialized
  2619.      * @param prettyPrint if true output the XML with indenting
  2620.      * @return Object to be serialized in byte array
  2621.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2622.      */
  2623.     public byte[] toByteArray(IntegrationErrorCollection integrationErrorCollection,boolean prettyPrint) throws SerializerException {
  2624.         return this.objToXml(IntegrationErrorCollection.class, integrationErrorCollection, prettyPrint).toByteArray();
  2625.     }
  2626.    
  2627.     /**
  2628.      * Serialize to String the object <var>integrationErrorCollection</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorCollection}
  2629.      *
  2630.      * @param integrationErrorCollection Object to be serialized
  2631.      * @return Object to be serialized as String
  2632.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2633.      */
  2634.     public String toString(IntegrationErrorCollection integrationErrorCollection) throws SerializerException {
  2635.         return this.objToXml(IntegrationErrorCollection.class, integrationErrorCollection, false).toString();
  2636.     }
  2637.     /**
  2638.      * Serialize to String the object <var>integrationErrorCollection</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationErrorCollection}
  2639.      *
  2640.      * @param integrationErrorCollection Object to be serialized
  2641.      * @param prettyPrint if true output the XML with indenting
  2642.      * @return Object to be serialized as String
  2643.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2644.      */
  2645.     public String toString(IntegrationErrorCollection integrationErrorCollection,boolean prettyPrint) throws SerializerException {
  2646.         return this.objToXml(IntegrationErrorCollection.class, integrationErrorCollection, prettyPrint).toString();
  2647.     }
  2648.    
  2649.    
  2650.    
  2651.     /*
  2652.      =================================================================================
  2653.      Object: SoapConfiguration
  2654.      =================================================================================
  2655.     */
  2656.    
  2657.     /**
  2658.      * Serialize to file system in <var>fileName</var> the object <var>soapConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.SoapConfiguration}
  2659.      *
  2660.      * @param fileName Xml file to serialize the object <var>soapConfiguration</var>
  2661.      * @param soapConfiguration Object to be serialized in xml file <var>fileName</var>
  2662.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2663.      */
  2664.     public void write(String fileName,SoapConfiguration soapConfiguration) throws SerializerException {
  2665.         this.objToXml(fileName, SoapConfiguration.class, soapConfiguration, false);
  2666.     }
  2667.     /**
  2668.      * Serialize to file system in <var>fileName</var> the object <var>soapConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.SoapConfiguration}
  2669.      *
  2670.      * @param fileName Xml file to serialize the object <var>soapConfiguration</var>
  2671.      * @param soapConfiguration Object to be serialized in xml file <var>fileName</var>
  2672.      * @param prettyPrint if true output the XML with indenting
  2673.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2674.      */
  2675.     public void write(String fileName,SoapConfiguration soapConfiguration,boolean prettyPrint) throws SerializerException {
  2676.         this.objToXml(fileName, SoapConfiguration.class, soapConfiguration, prettyPrint);
  2677.     }
  2678.    
  2679.     /**
  2680.      * Serialize to file system in <var>file</var> the object <var>soapConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.SoapConfiguration}
  2681.      *
  2682.      * @param file Xml file to serialize the object <var>soapConfiguration</var>
  2683.      * @param soapConfiguration Object to be serialized in xml file <var>fileName</var>
  2684.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2685.      */
  2686.     public void write(File file,SoapConfiguration soapConfiguration) throws SerializerException {
  2687.         this.objToXml(file, SoapConfiguration.class, soapConfiguration, false);
  2688.     }
  2689.     /**
  2690.      * Serialize to file system in <var>file</var> the object <var>soapConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.SoapConfiguration}
  2691.      *
  2692.      * @param file Xml file to serialize the object <var>soapConfiguration</var>
  2693.      * @param soapConfiguration Object to be serialized in xml file <var>fileName</var>
  2694.      * @param prettyPrint if true output the XML with indenting
  2695.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2696.      */
  2697.     public void write(File file,SoapConfiguration soapConfiguration,boolean prettyPrint) throws SerializerException {
  2698.         this.objToXml(file, SoapConfiguration.class, soapConfiguration, prettyPrint);
  2699.     }
  2700.    
  2701.     /**
  2702.      * Serialize to output stream <var>out</var> the object <var>soapConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.SoapConfiguration}
  2703.      *
  2704.      * @param out OutputStream to serialize the object <var>soapConfiguration</var>
  2705.      * @param soapConfiguration Object to be serialized in xml file <var>fileName</var>
  2706.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2707.      */
  2708.     public void write(OutputStream out,SoapConfiguration soapConfiguration) throws SerializerException {
  2709.         this.objToXml(out, SoapConfiguration.class, soapConfiguration, false);
  2710.     }
  2711.     /**
  2712.      * Serialize to output stream <var>out</var> the object <var>soapConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.SoapConfiguration}
  2713.      *
  2714.      * @param out OutputStream to serialize the object <var>soapConfiguration</var>
  2715.      * @param soapConfiguration Object to be serialized in xml file <var>fileName</var>
  2716.      * @param prettyPrint if true output the XML with indenting
  2717.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2718.      */
  2719.     public void write(OutputStream out,SoapConfiguration soapConfiguration,boolean prettyPrint) throws SerializerException {
  2720.         this.objToXml(out, SoapConfiguration.class, soapConfiguration, prettyPrint);
  2721.     }
  2722.            
  2723.     /**
  2724.      * Serialize to byte array the object <var>soapConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.SoapConfiguration}
  2725.      *
  2726.      * @param soapConfiguration Object to be serialized
  2727.      * @return Object to be serialized in byte array
  2728.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2729.      */
  2730.     public byte[] toByteArray(SoapConfiguration soapConfiguration) throws SerializerException {
  2731.         return this.objToXml(SoapConfiguration.class, soapConfiguration, false).toByteArray();
  2732.     }
  2733.     /**
  2734.      * Serialize to byte array the object <var>soapConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.SoapConfiguration}
  2735.      *
  2736.      * @param soapConfiguration Object to be serialized
  2737.      * @param prettyPrint if true output the XML with indenting
  2738.      * @return Object to be serialized in byte array
  2739.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2740.      */
  2741.     public byte[] toByteArray(SoapConfiguration soapConfiguration,boolean prettyPrint) throws SerializerException {
  2742.         return this.objToXml(SoapConfiguration.class, soapConfiguration, prettyPrint).toByteArray();
  2743.     }
  2744.    
  2745.     /**
  2746.      * Serialize to String the object <var>soapConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.SoapConfiguration}
  2747.      *
  2748.      * @param soapConfiguration Object to be serialized
  2749.      * @return Object to be serialized as String
  2750.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2751.      */
  2752.     public String toString(SoapConfiguration soapConfiguration) throws SerializerException {
  2753.         return this.objToXml(SoapConfiguration.class, soapConfiguration, false).toString();
  2754.     }
  2755.     /**
  2756.      * Serialize to String the object <var>soapConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.SoapConfiguration}
  2757.      *
  2758.      * @param soapConfiguration Object to be serialized
  2759.      * @param prettyPrint if true output the XML with indenting
  2760.      * @return Object to be serialized as String
  2761.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2762.      */
  2763.     public String toString(SoapConfiguration soapConfiguration,boolean prettyPrint) throws SerializerException {
  2764.         return this.objToXml(SoapConfiguration.class, soapConfiguration, prettyPrint).toString();
  2765.     }
  2766.    
  2767.    
  2768.    
  2769.     /*
  2770.      =================================================================================
  2771.      Object: IntegrationError
  2772.      =================================================================================
  2773.     */
  2774.    
  2775.     /**
  2776.      * Serialize to file system in <var>fileName</var> the object <var>integrationError</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationError}
  2777.      *
  2778.      * @param fileName Xml file to serialize the object <var>integrationError</var>
  2779.      * @param integrationError Object to be serialized in xml file <var>fileName</var>
  2780.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2781.      */
  2782.     public void write(String fileName,IntegrationError integrationError) throws SerializerException {
  2783.         this.objToXml(fileName, IntegrationError.class, integrationError, false);
  2784.     }
  2785.     /**
  2786.      * Serialize to file system in <var>fileName</var> the object <var>integrationError</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationError}
  2787.      *
  2788.      * @param fileName Xml file to serialize the object <var>integrationError</var>
  2789.      * @param integrationError Object to be serialized in xml file <var>fileName</var>
  2790.      * @param prettyPrint if true output the XML with indenting
  2791.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2792.      */
  2793.     public void write(String fileName,IntegrationError integrationError,boolean prettyPrint) throws SerializerException {
  2794.         this.objToXml(fileName, IntegrationError.class, integrationError, prettyPrint);
  2795.     }
  2796.    
  2797.     /**
  2798.      * Serialize to file system in <var>file</var> the object <var>integrationError</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationError}
  2799.      *
  2800.      * @param file Xml file to serialize the object <var>integrationError</var>
  2801.      * @param integrationError Object to be serialized in xml file <var>fileName</var>
  2802.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2803.      */
  2804.     public void write(File file,IntegrationError integrationError) throws SerializerException {
  2805.         this.objToXml(file, IntegrationError.class, integrationError, false);
  2806.     }
  2807.     /**
  2808.      * Serialize to file system in <var>file</var> the object <var>integrationError</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationError}
  2809.      *
  2810.      * @param file Xml file to serialize the object <var>integrationError</var>
  2811.      * @param integrationError Object to be serialized in xml file <var>fileName</var>
  2812.      * @param prettyPrint if true output the XML with indenting
  2813.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2814.      */
  2815.     public void write(File file,IntegrationError integrationError,boolean prettyPrint) throws SerializerException {
  2816.         this.objToXml(file, IntegrationError.class, integrationError, prettyPrint);
  2817.     }
  2818.    
  2819.     /**
  2820.      * Serialize to output stream <var>out</var> the object <var>integrationError</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationError}
  2821.      *
  2822.      * @param out OutputStream to serialize the object <var>integrationError</var>
  2823.      * @param integrationError Object to be serialized in xml file <var>fileName</var>
  2824.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2825.      */
  2826.     public void write(OutputStream out,IntegrationError integrationError) throws SerializerException {
  2827.         this.objToXml(out, IntegrationError.class, integrationError, false);
  2828.     }
  2829.     /**
  2830.      * Serialize to output stream <var>out</var> the object <var>integrationError</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationError}
  2831.      *
  2832.      * @param out OutputStream to serialize the object <var>integrationError</var>
  2833.      * @param integrationError Object to be serialized in xml file <var>fileName</var>
  2834.      * @param prettyPrint if true output the XML with indenting
  2835.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2836.      */
  2837.     public void write(OutputStream out,IntegrationError integrationError,boolean prettyPrint) throws SerializerException {
  2838.         this.objToXml(out, IntegrationError.class, integrationError, prettyPrint);
  2839.     }
  2840.            
  2841.     /**
  2842.      * Serialize to byte array the object <var>integrationError</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationError}
  2843.      *
  2844.      * @param integrationError Object to be serialized
  2845.      * @return Object to be serialized in byte array
  2846.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2847.      */
  2848.     public byte[] toByteArray(IntegrationError integrationError) throws SerializerException {
  2849.         return this.objToXml(IntegrationError.class, integrationError, false).toByteArray();
  2850.     }
  2851.     /**
  2852.      * Serialize to byte array the object <var>integrationError</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationError}
  2853.      *
  2854.      * @param integrationError Object to be serialized
  2855.      * @param prettyPrint if true output the XML with indenting
  2856.      * @return Object to be serialized in byte array
  2857.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2858.      */
  2859.     public byte[] toByteArray(IntegrationError integrationError,boolean prettyPrint) throws SerializerException {
  2860.         return this.objToXml(IntegrationError.class, integrationError, prettyPrint).toByteArray();
  2861.     }
  2862.    
  2863.     /**
  2864.      * Serialize to String the object <var>integrationError</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationError}
  2865.      *
  2866.      * @param integrationError Object to be serialized
  2867.      * @return Object to be serialized as String
  2868.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2869.      */
  2870.     public String toString(IntegrationError integrationError) throws SerializerException {
  2871.         return this.objToXml(IntegrationError.class, integrationError, false).toString();
  2872.     }
  2873.     /**
  2874.      * Serialize to String the object <var>integrationError</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationError}
  2875.      *
  2876.      * @param integrationError Object to be serialized
  2877.      * @param prettyPrint if true output the XML with indenting
  2878.      * @return Object to be serialized as String
  2879.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2880.      */
  2881.     public String toString(IntegrationError integrationError,boolean prettyPrint) throws SerializerException {
  2882.         return this.objToXml(IntegrationError.class, integrationError, prettyPrint).toString();
  2883.     }
  2884.    
  2885.    
  2886.    
  2887.     /*
  2888.      =================================================================================
  2889.      Object: IntegrationConfigurationElementName
  2890.      =================================================================================
  2891.     */
  2892.    
  2893.     /**
  2894.      * Serialize to file system in <var>fileName</var> the object <var>integrationConfigurationElementName</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationElementName}
  2895.      *
  2896.      * @param fileName Xml file to serialize the object <var>integrationConfigurationElementName</var>
  2897.      * @param integrationConfigurationElementName Object to be serialized in xml file <var>fileName</var>
  2898.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2899.      */
  2900.     public void write(String fileName,IntegrationConfigurationElementName integrationConfigurationElementName) throws SerializerException {
  2901.         this.objToXml(fileName, IntegrationConfigurationElementName.class, integrationConfigurationElementName, false);
  2902.     }
  2903.     /**
  2904.      * Serialize to file system in <var>fileName</var> the object <var>integrationConfigurationElementName</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationElementName}
  2905.      *
  2906.      * @param fileName Xml file to serialize the object <var>integrationConfigurationElementName</var>
  2907.      * @param integrationConfigurationElementName Object to be serialized in xml file <var>fileName</var>
  2908.      * @param prettyPrint if true output the XML with indenting
  2909.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2910.      */
  2911.     public void write(String fileName,IntegrationConfigurationElementName integrationConfigurationElementName,boolean prettyPrint) throws SerializerException {
  2912.         this.objToXml(fileName, IntegrationConfigurationElementName.class, integrationConfigurationElementName, prettyPrint);
  2913.     }
  2914.    
  2915.     /**
  2916.      * Serialize to file system in <var>file</var> the object <var>integrationConfigurationElementName</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationElementName}
  2917.      *
  2918.      * @param file Xml file to serialize the object <var>integrationConfigurationElementName</var>
  2919.      * @param integrationConfigurationElementName Object to be serialized in xml file <var>fileName</var>
  2920.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2921.      */
  2922.     public void write(File file,IntegrationConfigurationElementName integrationConfigurationElementName) throws SerializerException {
  2923.         this.objToXml(file, IntegrationConfigurationElementName.class, integrationConfigurationElementName, false);
  2924.     }
  2925.     /**
  2926.      * Serialize to file system in <var>file</var> the object <var>integrationConfigurationElementName</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationElementName}
  2927.      *
  2928.      * @param file Xml file to serialize the object <var>integrationConfigurationElementName</var>
  2929.      * @param integrationConfigurationElementName Object to be serialized in xml file <var>fileName</var>
  2930.      * @param prettyPrint if true output the XML with indenting
  2931.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2932.      */
  2933.     public void write(File file,IntegrationConfigurationElementName integrationConfigurationElementName,boolean prettyPrint) throws SerializerException {
  2934.         this.objToXml(file, IntegrationConfigurationElementName.class, integrationConfigurationElementName, prettyPrint);
  2935.     }
  2936.    
  2937.     /**
  2938.      * Serialize to output stream <var>out</var> the object <var>integrationConfigurationElementName</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationElementName}
  2939.      *
  2940.      * @param out OutputStream to serialize the object <var>integrationConfigurationElementName</var>
  2941.      * @param integrationConfigurationElementName Object to be serialized in xml file <var>fileName</var>
  2942.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2943.      */
  2944.     public void write(OutputStream out,IntegrationConfigurationElementName integrationConfigurationElementName) throws SerializerException {
  2945.         this.objToXml(out, IntegrationConfigurationElementName.class, integrationConfigurationElementName, false);
  2946.     }
  2947.     /**
  2948.      * Serialize to output stream <var>out</var> the object <var>integrationConfigurationElementName</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationElementName}
  2949.      *
  2950.      * @param out OutputStream to serialize the object <var>integrationConfigurationElementName</var>
  2951.      * @param integrationConfigurationElementName Object to be serialized in xml file <var>fileName</var>
  2952.      * @param prettyPrint if true output the XML with indenting
  2953.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2954.      */
  2955.     public void write(OutputStream out,IntegrationConfigurationElementName integrationConfigurationElementName,boolean prettyPrint) throws SerializerException {
  2956.         this.objToXml(out, IntegrationConfigurationElementName.class, integrationConfigurationElementName, prettyPrint);
  2957.     }
  2958.            
  2959.     /**
  2960.      * Serialize to byte array the object <var>integrationConfigurationElementName</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationElementName}
  2961.      *
  2962.      * @param integrationConfigurationElementName Object to be serialized
  2963.      * @return Object to be serialized in byte array
  2964.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2965.      */
  2966.     public byte[] toByteArray(IntegrationConfigurationElementName integrationConfigurationElementName) throws SerializerException {
  2967.         return this.objToXml(IntegrationConfigurationElementName.class, integrationConfigurationElementName, false).toByteArray();
  2968.     }
  2969.     /**
  2970.      * Serialize to byte array the object <var>integrationConfigurationElementName</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationElementName}
  2971.      *
  2972.      * @param integrationConfigurationElementName Object to be serialized
  2973.      * @param prettyPrint if true output the XML with indenting
  2974.      * @return Object to be serialized in byte array
  2975.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2976.      */
  2977.     public byte[] toByteArray(IntegrationConfigurationElementName integrationConfigurationElementName,boolean prettyPrint) throws SerializerException {
  2978.         return this.objToXml(IntegrationConfigurationElementName.class, integrationConfigurationElementName, prettyPrint).toByteArray();
  2979.     }
  2980.    
  2981.     /**
  2982.      * Serialize to String the object <var>integrationConfigurationElementName</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationElementName}
  2983.      *
  2984.      * @param integrationConfigurationElementName Object to be serialized
  2985.      * @return Object to be serialized as String
  2986.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2987.      */
  2988.     public String toString(IntegrationConfigurationElementName integrationConfigurationElementName) throws SerializerException {
  2989.         return this.objToXml(IntegrationConfigurationElementName.class, integrationConfigurationElementName, false).toString();
  2990.     }
  2991.     /**
  2992.      * Serialize to String the object <var>integrationConfigurationElementName</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationElementName}
  2993.      *
  2994.      * @param integrationConfigurationElementName Object to be serialized
  2995.      * @param prettyPrint if true output the XML with indenting
  2996.      * @return Object to be serialized as String
  2997.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  2998.      */
  2999.     public String toString(IntegrationConfigurationElementName integrationConfigurationElementName,boolean prettyPrint) throws SerializerException {
  3000.         return this.objToXml(IntegrationConfigurationElementName.class, integrationConfigurationElementName, prettyPrint).toString();
  3001.     }
  3002.    
  3003.    
  3004.    
  3005.     /*
  3006.      =================================================================================
  3007.      Object: IntegrationConfigurationName
  3008.      =================================================================================
  3009.     */
  3010.    
  3011.     /**
  3012.      * Serialize to file system in <var>fileName</var> the object <var>integrationConfigurationName</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationName}
  3013.      *
  3014.      * @param fileName Xml file to serialize the object <var>integrationConfigurationName</var>
  3015.      * @param integrationConfigurationName Object to be serialized in xml file <var>fileName</var>
  3016.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3017.      */
  3018.     public void write(String fileName,IntegrationConfigurationName integrationConfigurationName) throws SerializerException {
  3019.         this.objToXml(fileName, IntegrationConfigurationName.class, integrationConfigurationName, false);
  3020.     }
  3021.     /**
  3022.      * Serialize to file system in <var>fileName</var> the object <var>integrationConfigurationName</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationName}
  3023.      *
  3024.      * @param fileName Xml file to serialize the object <var>integrationConfigurationName</var>
  3025.      * @param integrationConfigurationName Object to be serialized in xml file <var>fileName</var>
  3026.      * @param prettyPrint if true output the XML with indenting
  3027.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3028.      */
  3029.     public void write(String fileName,IntegrationConfigurationName integrationConfigurationName,boolean prettyPrint) throws SerializerException {
  3030.         this.objToXml(fileName, IntegrationConfigurationName.class, integrationConfigurationName, prettyPrint);
  3031.     }
  3032.    
  3033.     /**
  3034.      * Serialize to file system in <var>file</var> the object <var>integrationConfigurationName</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationName}
  3035.      *
  3036.      * @param file Xml file to serialize the object <var>integrationConfigurationName</var>
  3037.      * @param integrationConfigurationName Object to be serialized in xml file <var>fileName</var>
  3038.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3039.      */
  3040.     public void write(File file,IntegrationConfigurationName integrationConfigurationName) throws SerializerException {
  3041.         this.objToXml(file, IntegrationConfigurationName.class, integrationConfigurationName, false);
  3042.     }
  3043.     /**
  3044.      * Serialize to file system in <var>file</var> the object <var>integrationConfigurationName</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationName}
  3045.      *
  3046.      * @param file Xml file to serialize the object <var>integrationConfigurationName</var>
  3047.      * @param integrationConfigurationName Object to be serialized in xml file <var>fileName</var>
  3048.      * @param prettyPrint if true output the XML with indenting
  3049.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3050.      */
  3051.     public void write(File file,IntegrationConfigurationName integrationConfigurationName,boolean prettyPrint) throws SerializerException {
  3052.         this.objToXml(file, IntegrationConfigurationName.class, integrationConfigurationName, prettyPrint);
  3053.     }
  3054.    
  3055.     /**
  3056.      * Serialize to output stream <var>out</var> the object <var>integrationConfigurationName</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationName}
  3057.      *
  3058.      * @param out OutputStream to serialize the object <var>integrationConfigurationName</var>
  3059.      * @param integrationConfigurationName Object to be serialized in xml file <var>fileName</var>
  3060.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3061.      */
  3062.     public void write(OutputStream out,IntegrationConfigurationName integrationConfigurationName) throws SerializerException {
  3063.         this.objToXml(out, IntegrationConfigurationName.class, integrationConfigurationName, false);
  3064.     }
  3065.     /**
  3066.      * Serialize to output stream <var>out</var> the object <var>integrationConfigurationName</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationName}
  3067.      *
  3068.      * @param out OutputStream to serialize the object <var>integrationConfigurationName</var>
  3069.      * @param integrationConfigurationName Object to be serialized in xml file <var>fileName</var>
  3070.      * @param prettyPrint if true output the XML with indenting
  3071.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3072.      */
  3073.     public void write(OutputStream out,IntegrationConfigurationName integrationConfigurationName,boolean prettyPrint) throws SerializerException {
  3074.         this.objToXml(out, IntegrationConfigurationName.class, integrationConfigurationName, prettyPrint);
  3075.     }
  3076.            
  3077.     /**
  3078.      * Serialize to byte array the object <var>integrationConfigurationName</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationName}
  3079.      *
  3080.      * @param integrationConfigurationName Object to be serialized
  3081.      * @return Object to be serialized in byte array
  3082.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3083.      */
  3084.     public byte[] toByteArray(IntegrationConfigurationName integrationConfigurationName) throws SerializerException {
  3085.         return this.objToXml(IntegrationConfigurationName.class, integrationConfigurationName, false).toByteArray();
  3086.     }
  3087.     /**
  3088.      * Serialize to byte array the object <var>integrationConfigurationName</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationName}
  3089.      *
  3090.      * @param integrationConfigurationName Object to be serialized
  3091.      * @param prettyPrint if true output the XML with indenting
  3092.      * @return Object to be serialized in byte array
  3093.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3094.      */
  3095.     public byte[] toByteArray(IntegrationConfigurationName integrationConfigurationName,boolean prettyPrint) throws SerializerException {
  3096.         return this.objToXml(IntegrationConfigurationName.class, integrationConfigurationName, prettyPrint).toByteArray();
  3097.     }
  3098.    
  3099.     /**
  3100.      * Serialize to String the object <var>integrationConfigurationName</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationName}
  3101.      *
  3102.      * @param integrationConfigurationName Object to be serialized
  3103.      * @return Object to be serialized as String
  3104.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3105.      */
  3106.     public String toString(IntegrationConfigurationName integrationConfigurationName) throws SerializerException {
  3107.         return this.objToXml(IntegrationConfigurationName.class, integrationConfigurationName, false).toString();
  3108.     }
  3109.     /**
  3110.      * Serialize to String the object <var>integrationConfigurationName</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationName}
  3111.      *
  3112.      * @param integrationConfigurationName Object to be serialized
  3113.      * @param prettyPrint if true output the XML with indenting
  3114.      * @return Object to be serialized as String
  3115.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3116.      */
  3117.     public String toString(IntegrationConfigurationName integrationConfigurationName,boolean prettyPrint) throws SerializerException {
  3118.         return this.objToXml(IntegrationConfigurationName.class, integrationConfigurationName, prettyPrint).toString();
  3119.     }
  3120.    
  3121.    
  3122.    
  3123.     /*
  3124.      =================================================================================
  3125.      Object: IntegrationConfiguration
  3126.      =================================================================================
  3127.     */
  3128.    
  3129.     /**
  3130.      * Serialize to file system in <var>fileName</var> the object <var>integrationConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfiguration}
  3131.      *
  3132.      * @param fileName Xml file to serialize the object <var>integrationConfiguration</var>
  3133.      * @param integrationConfiguration Object to be serialized in xml file <var>fileName</var>
  3134.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3135.      */
  3136.     public void write(String fileName,IntegrationConfiguration integrationConfiguration) throws SerializerException {
  3137.         this.objToXml(fileName, IntegrationConfiguration.class, integrationConfiguration, false);
  3138.     }
  3139.     /**
  3140.      * Serialize to file system in <var>fileName</var> the object <var>integrationConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfiguration}
  3141.      *
  3142.      * @param fileName Xml file to serialize the object <var>integrationConfiguration</var>
  3143.      * @param integrationConfiguration Object to be serialized in xml file <var>fileName</var>
  3144.      * @param prettyPrint if true output the XML with indenting
  3145.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3146.      */
  3147.     public void write(String fileName,IntegrationConfiguration integrationConfiguration,boolean prettyPrint) throws SerializerException {
  3148.         this.objToXml(fileName, IntegrationConfiguration.class, integrationConfiguration, prettyPrint);
  3149.     }
  3150.    
  3151.     /**
  3152.      * Serialize to file system in <var>file</var> the object <var>integrationConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfiguration}
  3153.      *
  3154.      * @param file Xml file to serialize the object <var>integrationConfiguration</var>
  3155.      * @param integrationConfiguration Object to be serialized in xml file <var>fileName</var>
  3156.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3157.      */
  3158.     public void write(File file,IntegrationConfiguration integrationConfiguration) throws SerializerException {
  3159.         this.objToXml(file, IntegrationConfiguration.class, integrationConfiguration, false);
  3160.     }
  3161.     /**
  3162.      * Serialize to file system in <var>file</var> the object <var>integrationConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfiguration}
  3163.      *
  3164.      * @param file Xml file to serialize the object <var>integrationConfiguration</var>
  3165.      * @param integrationConfiguration Object to be serialized in xml file <var>fileName</var>
  3166.      * @param prettyPrint if true output the XML with indenting
  3167.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3168.      */
  3169.     public void write(File file,IntegrationConfiguration integrationConfiguration,boolean prettyPrint) throws SerializerException {
  3170.         this.objToXml(file, IntegrationConfiguration.class, integrationConfiguration, prettyPrint);
  3171.     }
  3172.    
  3173.     /**
  3174.      * Serialize to output stream <var>out</var> the object <var>integrationConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfiguration}
  3175.      *
  3176.      * @param out OutputStream to serialize the object <var>integrationConfiguration</var>
  3177.      * @param integrationConfiguration Object to be serialized in xml file <var>fileName</var>
  3178.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3179.      */
  3180.     public void write(OutputStream out,IntegrationConfiguration integrationConfiguration) throws SerializerException {
  3181.         this.objToXml(out, IntegrationConfiguration.class, integrationConfiguration, false);
  3182.     }
  3183.     /**
  3184.      * Serialize to output stream <var>out</var> the object <var>integrationConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfiguration}
  3185.      *
  3186.      * @param out OutputStream to serialize the object <var>integrationConfiguration</var>
  3187.      * @param integrationConfiguration Object to be serialized in xml file <var>fileName</var>
  3188.      * @param prettyPrint if true output the XML with indenting
  3189.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3190.      */
  3191.     public void write(OutputStream out,IntegrationConfiguration integrationConfiguration,boolean prettyPrint) throws SerializerException {
  3192.         this.objToXml(out, IntegrationConfiguration.class, integrationConfiguration, prettyPrint);
  3193.     }
  3194.            
  3195.     /**
  3196.      * Serialize to byte array the object <var>integrationConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfiguration}
  3197.      *
  3198.      * @param integrationConfiguration Object to be serialized
  3199.      * @return Object to be serialized in byte array
  3200.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3201.      */
  3202.     public byte[] toByteArray(IntegrationConfiguration integrationConfiguration) throws SerializerException {
  3203.         return this.objToXml(IntegrationConfiguration.class, integrationConfiguration, false).toByteArray();
  3204.     }
  3205.     /**
  3206.      * Serialize to byte array the object <var>integrationConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfiguration}
  3207.      *
  3208.      * @param integrationConfiguration Object to be serialized
  3209.      * @param prettyPrint if true output the XML with indenting
  3210.      * @return Object to be serialized in byte array
  3211.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3212.      */
  3213.     public byte[] toByteArray(IntegrationConfiguration integrationConfiguration,boolean prettyPrint) throws SerializerException {
  3214.         return this.objToXml(IntegrationConfiguration.class, integrationConfiguration, prettyPrint).toByteArray();
  3215.     }
  3216.    
  3217.     /**
  3218.      * Serialize to String the object <var>integrationConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfiguration}
  3219.      *
  3220.      * @param integrationConfiguration Object to be serialized
  3221.      * @return Object to be serialized as String
  3222.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3223.      */
  3224.     public String toString(IntegrationConfiguration integrationConfiguration) throws SerializerException {
  3225.         return this.objToXml(IntegrationConfiguration.class, integrationConfiguration, false).toString();
  3226.     }
  3227.     /**
  3228.      * Serialize to String the object <var>integrationConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfiguration}
  3229.      *
  3230.      * @param integrationConfiguration Object to be serialized
  3231.      * @param prettyPrint if true output the XML with indenting
  3232.      * @return Object to be serialized as String
  3233.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3234.      */
  3235.     public String toString(IntegrationConfiguration integrationConfiguration,boolean prettyPrint) throws SerializerException {
  3236.         return this.objToXml(IntegrationConfiguration.class, integrationConfiguration, prettyPrint).toString();
  3237.     }
  3238.    
  3239.    
  3240.    
  3241.     /*
  3242.      =================================================================================
  3243.      Object: IntegrationConfigurationResourceIdentification
  3244.      =================================================================================
  3245.     */
  3246.    
  3247.     /**
  3248.      * Serialize to file system in <var>fileName</var> the object <var>integrationConfigurationResourceIdentification</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentification}
  3249.      *
  3250.      * @param fileName Xml file to serialize the object <var>integrationConfigurationResourceIdentification</var>
  3251.      * @param integrationConfigurationResourceIdentification Object to be serialized in xml file <var>fileName</var>
  3252.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3253.      */
  3254.     public void write(String fileName,IntegrationConfigurationResourceIdentification integrationConfigurationResourceIdentification) throws SerializerException {
  3255.         this.objToXml(fileName, IntegrationConfigurationResourceIdentification.class, integrationConfigurationResourceIdentification, false);
  3256.     }
  3257.     /**
  3258.      * Serialize to file system in <var>fileName</var> the object <var>integrationConfigurationResourceIdentification</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentification}
  3259.      *
  3260.      * @param fileName Xml file to serialize the object <var>integrationConfigurationResourceIdentification</var>
  3261.      * @param integrationConfigurationResourceIdentification Object to be serialized in xml file <var>fileName</var>
  3262.      * @param prettyPrint if true output the XML with indenting
  3263.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3264.      */
  3265.     public void write(String fileName,IntegrationConfigurationResourceIdentification integrationConfigurationResourceIdentification,boolean prettyPrint) throws SerializerException {
  3266.         this.objToXml(fileName, IntegrationConfigurationResourceIdentification.class, integrationConfigurationResourceIdentification, prettyPrint);
  3267.     }
  3268.    
  3269.     /**
  3270.      * Serialize to file system in <var>file</var> the object <var>integrationConfigurationResourceIdentification</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentification}
  3271.      *
  3272.      * @param file Xml file to serialize the object <var>integrationConfigurationResourceIdentification</var>
  3273.      * @param integrationConfigurationResourceIdentification Object to be serialized in xml file <var>fileName</var>
  3274.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3275.      */
  3276.     public void write(File file,IntegrationConfigurationResourceIdentification integrationConfigurationResourceIdentification) throws SerializerException {
  3277.         this.objToXml(file, IntegrationConfigurationResourceIdentification.class, integrationConfigurationResourceIdentification, false);
  3278.     }
  3279.     /**
  3280.      * Serialize to file system in <var>file</var> the object <var>integrationConfigurationResourceIdentification</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentification}
  3281.      *
  3282.      * @param file Xml file to serialize the object <var>integrationConfigurationResourceIdentification</var>
  3283.      * @param integrationConfigurationResourceIdentification Object to be serialized in xml file <var>fileName</var>
  3284.      * @param prettyPrint if true output the XML with indenting
  3285.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3286.      */
  3287.     public void write(File file,IntegrationConfigurationResourceIdentification integrationConfigurationResourceIdentification,boolean prettyPrint) throws SerializerException {
  3288.         this.objToXml(file, IntegrationConfigurationResourceIdentification.class, integrationConfigurationResourceIdentification, prettyPrint);
  3289.     }
  3290.    
  3291.     /**
  3292.      * Serialize to output stream <var>out</var> the object <var>integrationConfigurationResourceIdentification</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentification}
  3293.      *
  3294.      * @param out OutputStream to serialize the object <var>integrationConfigurationResourceIdentification</var>
  3295.      * @param integrationConfigurationResourceIdentification Object to be serialized in xml file <var>fileName</var>
  3296.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3297.      */
  3298.     public void write(OutputStream out,IntegrationConfigurationResourceIdentification integrationConfigurationResourceIdentification) throws SerializerException {
  3299.         this.objToXml(out, IntegrationConfigurationResourceIdentification.class, integrationConfigurationResourceIdentification, false);
  3300.     }
  3301.     /**
  3302.      * Serialize to output stream <var>out</var> the object <var>integrationConfigurationResourceIdentification</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentification}
  3303.      *
  3304.      * @param out OutputStream to serialize the object <var>integrationConfigurationResourceIdentification</var>
  3305.      * @param integrationConfigurationResourceIdentification Object to be serialized in xml file <var>fileName</var>
  3306.      * @param prettyPrint if true output the XML with indenting
  3307.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3308.      */
  3309.     public void write(OutputStream out,IntegrationConfigurationResourceIdentification integrationConfigurationResourceIdentification,boolean prettyPrint) throws SerializerException {
  3310.         this.objToXml(out, IntegrationConfigurationResourceIdentification.class, integrationConfigurationResourceIdentification, prettyPrint);
  3311.     }
  3312.            
  3313.     /**
  3314.      * Serialize to byte array the object <var>integrationConfigurationResourceIdentification</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentification}
  3315.      *
  3316.      * @param integrationConfigurationResourceIdentification Object to be serialized
  3317.      * @return Object to be serialized in byte array
  3318.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3319.      */
  3320.     public byte[] toByteArray(IntegrationConfigurationResourceIdentification integrationConfigurationResourceIdentification) throws SerializerException {
  3321.         return this.objToXml(IntegrationConfigurationResourceIdentification.class, integrationConfigurationResourceIdentification, false).toByteArray();
  3322.     }
  3323.     /**
  3324.      * Serialize to byte array the object <var>integrationConfigurationResourceIdentification</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentification}
  3325.      *
  3326.      * @param integrationConfigurationResourceIdentification Object to be serialized
  3327.      * @param prettyPrint if true output the XML with indenting
  3328.      * @return Object to be serialized in byte array
  3329.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3330.      */
  3331.     public byte[] toByteArray(IntegrationConfigurationResourceIdentification integrationConfigurationResourceIdentification,boolean prettyPrint) throws SerializerException {
  3332.         return this.objToXml(IntegrationConfigurationResourceIdentification.class, integrationConfigurationResourceIdentification, prettyPrint).toByteArray();
  3333.     }
  3334.    
  3335.     /**
  3336.      * Serialize to String the object <var>integrationConfigurationResourceIdentification</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentification}
  3337.      *
  3338.      * @param integrationConfigurationResourceIdentification Object to be serialized
  3339.      * @return Object to be serialized as String
  3340.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3341.      */
  3342.     public String toString(IntegrationConfigurationResourceIdentification integrationConfigurationResourceIdentification) throws SerializerException {
  3343.         return this.objToXml(IntegrationConfigurationResourceIdentification.class, integrationConfigurationResourceIdentification, false).toString();
  3344.     }
  3345.     /**
  3346.      * Serialize to String the object <var>integrationConfigurationResourceIdentification</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentification}
  3347.      *
  3348.      * @param integrationConfigurationResourceIdentification Object to be serialized
  3349.      * @param prettyPrint if true output the XML with indenting
  3350.      * @return Object to be serialized as String
  3351.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3352.      */
  3353.     public String toString(IntegrationConfigurationResourceIdentification integrationConfigurationResourceIdentification,boolean prettyPrint) throws SerializerException {
  3354.         return this.objToXml(IntegrationConfigurationResourceIdentification.class, integrationConfigurationResourceIdentification, prettyPrint).toString();
  3355.     }
  3356.    
  3357.    
  3358.    
  3359.     /*
  3360.      =================================================================================
  3361.      Object: IntegrationConfigurationResourceIdentificationModes
  3362.      =================================================================================
  3363.     */
  3364.    
  3365.     /**
  3366.      * Serialize to file system in <var>fileName</var> the object <var>integrationConfigurationResourceIdentificationModes</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationModes}
  3367.      *
  3368.      * @param fileName Xml file to serialize the object <var>integrationConfigurationResourceIdentificationModes</var>
  3369.      * @param integrationConfigurationResourceIdentificationModes Object to be serialized in xml file <var>fileName</var>
  3370.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3371.      */
  3372.     public void write(String fileName,IntegrationConfigurationResourceIdentificationModes integrationConfigurationResourceIdentificationModes) throws SerializerException {
  3373.         this.objToXml(fileName, IntegrationConfigurationResourceIdentificationModes.class, integrationConfigurationResourceIdentificationModes, false);
  3374.     }
  3375.     /**
  3376.      * Serialize to file system in <var>fileName</var> the object <var>integrationConfigurationResourceIdentificationModes</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationModes}
  3377.      *
  3378.      * @param fileName Xml file to serialize the object <var>integrationConfigurationResourceIdentificationModes</var>
  3379.      * @param integrationConfigurationResourceIdentificationModes Object to be serialized in xml file <var>fileName</var>
  3380.      * @param prettyPrint if true output the XML with indenting
  3381.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3382.      */
  3383.     public void write(String fileName,IntegrationConfigurationResourceIdentificationModes integrationConfigurationResourceIdentificationModes,boolean prettyPrint) throws SerializerException {
  3384.         this.objToXml(fileName, IntegrationConfigurationResourceIdentificationModes.class, integrationConfigurationResourceIdentificationModes, prettyPrint);
  3385.     }
  3386.    
  3387.     /**
  3388.      * Serialize to file system in <var>file</var> the object <var>integrationConfigurationResourceIdentificationModes</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationModes}
  3389.      *
  3390.      * @param file Xml file to serialize the object <var>integrationConfigurationResourceIdentificationModes</var>
  3391.      * @param integrationConfigurationResourceIdentificationModes Object to be serialized in xml file <var>fileName</var>
  3392.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3393.      */
  3394.     public void write(File file,IntegrationConfigurationResourceIdentificationModes integrationConfigurationResourceIdentificationModes) throws SerializerException {
  3395.         this.objToXml(file, IntegrationConfigurationResourceIdentificationModes.class, integrationConfigurationResourceIdentificationModes, false);
  3396.     }
  3397.     /**
  3398.      * Serialize to file system in <var>file</var> the object <var>integrationConfigurationResourceIdentificationModes</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationModes}
  3399.      *
  3400.      * @param file Xml file to serialize the object <var>integrationConfigurationResourceIdentificationModes</var>
  3401.      * @param integrationConfigurationResourceIdentificationModes Object to be serialized in xml file <var>fileName</var>
  3402.      * @param prettyPrint if true output the XML with indenting
  3403.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3404.      */
  3405.     public void write(File file,IntegrationConfigurationResourceIdentificationModes integrationConfigurationResourceIdentificationModes,boolean prettyPrint) throws SerializerException {
  3406.         this.objToXml(file, IntegrationConfigurationResourceIdentificationModes.class, integrationConfigurationResourceIdentificationModes, prettyPrint);
  3407.     }
  3408.    
  3409.     /**
  3410.      * Serialize to output stream <var>out</var> the object <var>integrationConfigurationResourceIdentificationModes</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationModes}
  3411.      *
  3412.      * @param out OutputStream to serialize the object <var>integrationConfigurationResourceIdentificationModes</var>
  3413.      * @param integrationConfigurationResourceIdentificationModes Object to be serialized in xml file <var>fileName</var>
  3414.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3415.      */
  3416.     public void write(OutputStream out,IntegrationConfigurationResourceIdentificationModes integrationConfigurationResourceIdentificationModes) throws SerializerException {
  3417.         this.objToXml(out, IntegrationConfigurationResourceIdentificationModes.class, integrationConfigurationResourceIdentificationModes, false);
  3418.     }
  3419.     /**
  3420.      * Serialize to output stream <var>out</var> the object <var>integrationConfigurationResourceIdentificationModes</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationModes}
  3421.      *
  3422.      * @param out OutputStream to serialize the object <var>integrationConfigurationResourceIdentificationModes</var>
  3423.      * @param integrationConfigurationResourceIdentificationModes Object to be serialized in xml file <var>fileName</var>
  3424.      * @param prettyPrint if true output the XML with indenting
  3425.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3426.      */
  3427.     public void write(OutputStream out,IntegrationConfigurationResourceIdentificationModes integrationConfigurationResourceIdentificationModes,boolean prettyPrint) throws SerializerException {
  3428.         this.objToXml(out, IntegrationConfigurationResourceIdentificationModes.class, integrationConfigurationResourceIdentificationModes, prettyPrint);
  3429.     }
  3430.            
  3431.     /**
  3432.      * Serialize to byte array the object <var>integrationConfigurationResourceIdentificationModes</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationModes}
  3433.      *
  3434.      * @param integrationConfigurationResourceIdentificationModes Object to be serialized
  3435.      * @return Object to be serialized in byte array
  3436.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3437.      */
  3438.     public byte[] toByteArray(IntegrationConfigurationResourceIdentificationModes integrationConfigurationResourceIdentificationModes) throws SerializerException {
  3439.         return this.objToXml(IntegrationConfigurationResourceIdentificationModes.class, integrationConfigurationResourceIdentificationModes, false).toByteArray();
  3440.     }
  3441.     /**
  3442.      * Serialize to byte array the object <var>integrationConfigurationResourceIdentificationModes</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationModes}
  3443.      *
  3444.      * @param integrationConfigurationResourceIdentificationModes Object to be serialized
  3445.      * @param prettyPrint if true output the XML with indenting
  3446.      * @return Object to be serialized in byte array
  3447.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3448.      */
  3449.     public byte[] toByteArray(IntegrationConfigurationResourceIdentificationModes integrationConfigurationResourceIdentificationModes,boolean prettyPrint) throws SerializerException {
  3450.         return this.objToXml(IntegrationConfigurationResourceIdentificationModes.class, integrationConfigurationResourceIdentificationModes, prettyPrint).toByteArray();
  3451.     }
  3452.    
  3453.     /**
  3454.      * Serialize to String the object <var>integrationConfigurationResourceIdentificationModes</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationModes}
  3455.      *
  3456.      * @param integrationConfigurationResourceIdentificationModes Object to be serialized
  3457.      * @return Object to be serialized as String
  3458.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3459.      */
  3460.     public String toString(IntegrationConfigurationResourceIdentificationModes integrationConfigurationResourceIdentificationModes) throws SerializerException {
  3461.         return this.objToXml(IntegrationConfigurationResourceIdentificationModes.class, integrationConfigurationResourceIdentificationModes, false).toString();
  3462.     }
  3463.     /**
  3464.      * Serialize to String the object <var>integrationConfigurationResourceIdentificationModes</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationModes}
  3465.      *
  3466.      * @param integrationConfigurationResourceIdentificationModes Object to be serialized
  3467.      * @param prettyPrint if true output the XML with indenting
  3468.      * @return Object to be serialized as String
  3469.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3470.      */
  3471.     public String toString(IntegrationConfigurationResourceIdentificationModes integrationConfigurationResourceIdentificationModes,boolean prettyPrint) throws SerializerException {
  3472.         return this.objToXml(IntegrationConfigurationResourceIdentificationModes.class, integrationConfigurationResourceIdentificationModes, prettyPrint).toString();
  3473.     }
  3474.    
  3475.    
  3476.    
  3477.     /*
  3478.      =================================================================================
  3479.      Object: IntegrationConfigurationResourceIdentificationSpecificResource
  3480.      =================================================================================
  3481.     */
  3482.    
  3483.     /**
  3484.      * Serialize to file system in <var>fileName</var> the object <var>integrationConfigurationResourceIdentificationSpecificResource</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationSpecificResource}
  3485.      *
  3486.      * @param fileName Xml file to serialize the object <var>integrationConfigurationResourceIdentificationSpecificResource</var>
  3487.      * @param integrationConfigurationResourceIdentificationSpecificResource Object to be serialized in xml file <var>fileName</var>
  3488.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3489.      */
  3490.     public void write(String fileName,IntegrationConfigurationResourceIdentificationSpecificResource integrationConfigurationResourceIdentificationSpecificResource) throws SerializerException {
  3491.         this.objToXml(fileName, IntegrationConfigurationResourceIdentificationSpecificResource.class, integrationConfigurationResourceIdentificationSpecificResource, false);
  3492.     }
  3493.     /**
  3494.      * Serialize to file system in <var>fileName</var> the object <var>integrationConfigurationResourceIdentificationSpecificResource</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationSpecificResource}
  3495.      *
  3496.      * @param fileName Xml file to serialize the object <var>integrationConfigurationResourceIdentificationSpecificResource</var>
  3497.      * @param integrationConfigurationResourceIdentificationSpecificResource Object to be serialized in xml file <var>fileName</var>
  3498.      * @param prettyPrint if true output the XML with indenting
  3499.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3500.      */
  3501.     public void write(String fileName,IntegrationConfigurationResourceIdentificationSpecificResource integrationConfigurationResourceIdentificationSpecificResource,boolean prettyPrint) throws SerializerException {
  3502.         this.objToXml(fileName, IntegrationConfigurationResourceIdentificationSpecificResource.class, integrationConfigurationResourceIdentificationSpecificResource, prettyPrint);
  3503.     }
  3504.    
  3505.     /**
  3506.      * Serialize to file system in <var>file</var> the object <var>integrationConfigurationResourceIdentificationSpecificResource</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationSpecificResource}
  3507.      *
  3508.      * @param file Xml file to serialize the object <var>integrationConfigurationResourceIdentificationSpecificResource</var>
  3509.      * @param integrationConfigurationResourceIdentificationSpecificResource Object to be serialized in xml file <var>fileName</var>
  3510.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3511.      */
  3512.     public void write(File file,IntegrationConfigurationResourceIdentificationSpecificResource integrationConfigurationResourceIdentificationSpecificResource) throws SerializerException {
  3513.         this.objToXml(file, IntegrationConfigurationResourceIdentificationSpecificResource.class, integrationConfigurationResourceIdentificationSpecificResource, false);
  3514.     }
  3515.     /**
  3516.      * Serialize to file system in <var>file</var> the object <var>integrationConfigurationResourceIdentificationSpecificResource</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationSpecificResource}
  3517.      *
  3518.      * @param file Xml file to serialize the object <var>integrationConfigurationResourceIdentificationSpecificResource</var>
  3519.      * @param integrationConfigurationResourceIdentificationSpecificResource Object to be serialized in xml file <var>fileName</var>
  3520.      * @param prettyPrint if true output the XML with indenting
  3521.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3522.      */
  3523.     public void write(File file,IntegrationConfigurationResourceIdentificationSpecificResource integrationConfigurationResourceIdentificationSpecificResource,boolean prettyPrint) throws SerializerException {
  3524.         this.objToXml(file, IntegrationConfigurationResourceIdentificationSpecificResource.class, integrationConfigurationResourceIdentificationSpecificResource, prettyPrint);
  3525.     }
  3526.    
  3527.     /**
  3528.      * Serialize to output stream <var>out</var> the object <var>integrationConfigurationResourceIdentificationSpecificResource</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationSpecificResource}
  3529.      *
  3530.      * @param out OutputStream to serialize the object <var>integrationConfigurationResourceIdentificationSpecificResource</var>
  3531.      * @param integrationConfigurationResourceIdentificationSpecificResource Object to be serialized in xml file <var>fileName</var>
  3532.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3533.      */
  3534.     public void write(OutputStream out,IntegrationConfigurationResourceIdentificationSpecificResource integrationConfigurationResourceIdentificationSpecificResource) throws SerializerException {
  3535.         this.objToXml(out, IntegrationConfigurationResourceIdentificationSpecificResource.class, integrationConfigurationResourceIdentificationSpecificResource, false);
  3536.     }
  3537.     /**
  3538.      * Serialize to output stream <var>out</var> the object <var>integrationConfigurationResourceIdentificationSpecificResource</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationSpecificResource}
  3539.      *
  3540.      * @param out OutputStream to serialize the object <var>integrationConfigurationResourceIdentificationSpecificResource</var>
  3541.      * @param integrationConfigurationResourceIdentificationSpecificResource Object to be serialized in xml file <var>fileName</var>
  3542.      * @param prettyPrint if true output the XML with indenting
  3543.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3544.      */
  3545.     public void write(OutputStream out,IntegrationConfigurationResourceIdentificationSpecificResource integrationConfigurationResourceIdentificationSpecificResource,boolean prettyPrint) throws SerializerException {
  3546.         this.objToXml(out, IntegrationConfigurationResourceIdentificationSpecificResource.class, integrationConfigurationResourceIdentificationSpecificResource, prettyPrint);
  3547.     }
  3548.            
  3549.     /**
  3550.      * Serialize to byte array the object <var>integrationConfigurationResourceIdentificationSpecificResource</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationSpecificResource}
  3551.      *
  3552.      * @param integrationConfigurationResourceIdentificationSpecificResource Object to be serialized
  3553.      * @return Object to be serialized in byte array
  3554.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3555.      */
  3556.     public byte[] toByteArray(IntegrationConfigurationResourceIdentificationSpecificResource integrationConfigurationResourceIdentificationSpecificResource) throws SerializerException {
  3557.         return this.objToXml(IntegrationConfigurationResourceIdentificationSpecificResource.class, integrationConfigurationResourceIdentificationSpecificResource, false).toByteArray();
  3558.     }
  3559.     /**
  3560.      * Serialize to byte array the object <var>integrationConfigurationResourceIdentificationSpecificResource</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationSpecificResource}
  3561.      *
  3562.      * @param integrationConfigurationResourceIdentificationSpecificResource Object to be serialized
  3563.      * @param prettyPrint if true output the XML with indenting
  3564.      * @return Object to be serialized in byte array
  3565.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3566.      */
  3567.     public byte[] toByteArray(IntegrationConfigurationResourceIdentificationSpecificResource integrationConfigurationResourceIdentificationSpecificResource,boolean prettyPrint) throws SerializerException {
  3568.         return this.objToXml(IntegrationConfigurationResourceIdentificationSpecificResource.class, integrationConfigurationResourceIdentificationSpecificResource, prettyPrint).toByteArray();
  3569.     }
  3570.    
  3571.     /**
  3572.      * Serialize to String the object <var>integrationConfigurationResourceIdentificationSpecificResource</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationSpecificResource}
  3573.      *
  3574.      * @param integrationConfigurationResourceIdentificationSpecificResource Object to be serialized
  3575.      * @return Object to be serialized as String
  3576.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3577.      */
  3578.     public String toString(IntegrationConfigurationResourceIdentificationSpecificResource integrationConfigurationResourceIdentificationSpecificResource) throws SerializerException {
  3579.         return this.objToXml(IntegrationConfigurationResourceIdentificationSpecificResource.class, integrationConfigurationResourceIdentificationSpecificResource, false).toString();
  3580.     }
  3581.     /**
  3582.      * Serialize to String the object <var>integrationConfigurationResourceIdentificationSpecificResource</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationSpecificResource}
  3583.      *
  3584.      * @param integrationConfigurationResourceIdentificationSpecificResource Object to be serialized
  3585.      * @param prettyPrint if true output the XML with indenting
  3586.      * @return Object to be serialized as String
  3587.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3588.      */
  3589.     public String toString(IntegrationConfigurationResourceIdentificationSpecificResource integrationConfigurationResourceIdentificationSpecificResource,boolean prettyPrint) throws SerializerException {
  3590.         return this.objToXml(IntegrationConfigurationResourceIdentificationSpecificResource.class, integrationConfigurationResourceIdentificationSpecificResource, prettyPrint).toString();
  3591.     }
  3592.    
  3593.    
  3594.    
  3595.     /*
  3596.      =================================================================================
  3597.      Object: SoapHeaderBypassMustUnderstandHeader
  3598.      =================================================================================
  3599.     */
  3600.    
  3601.     /**
  3602.      * Serialize to file system in <var>fileName</var> the object <var>soapHeaderBypassMustUnderstandHeader</var> of type {@link org.openspcoop2.protocol.manifest.SoapHeaderBypassMustUnderstandHeader}
  3603.      *
  3604.      * @param fileName Xml file to serialize the object <var>soapHeaderBypassMustUnderstandHeader</var>
  3605.      * @param soapHeaderBypassMustUnderstandHeader Object to be serialized in xml file <var>fileName</var>
  3606.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3607.      */
  3608.     public void write(String fileName,SoapHeaderBypassMustUnderstandHeader soapHeaderBypassMustUnderstandHeader) throws SerializerException {
  3609.         this.objToXml(fileName, SoapHeaderBypassMustUnderstandHeader.class, soapHeaderBypassMustUnderstandHeader, false);
  3610.     }
  3611.     /**
  3612.      * Serialize to file system in <var>fileName</var> the object <var>soapHeaderBypassMustUnderstandHeader</var> of type {@link org.openspcoop2.protocol.manifest.SoapHeaderBypassMustUnderstandHeader}
  3613.      *
  3614.      * @param fileName Xml file to serialize the object <var>soapHeaderBypassMustUnderstandHeader</var>
  3615.      * @param soapHeaderBypassMustUnderstandHeader Object to be serialized in xml file <var>fileName</var>
  3616.      * @param prettyPrint if true output the XML with indenting
  3617.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3618.      */
  3619.     public void write(String fileName,SoapHeaderBypassMustUnderstandHeader soapHeaderBypassMustUnderstandHeader,boolean prettyPrint) throws SerializerException {
  3620.         this.objToXml(fileName, SoapHeaderBypassMustUnderstandHeader.class, soapHeaderBypassMustUnderstandHeader, prettyPrint);
  3621.     }
  3622.    
  3623.     /**
  3624.      * Serialize to file system in <var>file</var> the object <var>soapHeaderBypassMustUnderstandHeader</var> of type {@link org.openspcoop2.protocol.manifest.SoapHeaderBypassMustUnderstandHeader}
  3625.      *
  3626.      * @param file Xml file to serialize the object <var>soapHeaderBypassMustUnderstandHeader</var>
  3627.      * @param soapHeaderBypassMustUnderstandHeader Object to be serialized in xml file <var>fileName</var>
  3628.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3629.      */
  3630.     public void write(File file,SoapHeaderBypassMustUnderstandHeader soapHeaderBypassMustUnderstandHeader) throws SerializerException {
  3631.         this.objToXml(file, SoapHeaderBypassMustUnderstandHeader.class, soapHeaderBypassMustUnderstandHeader, false);
  3632.     }
  3633.     /**
  3634.      * Serialize to file system in <var>file</var> the object <var>soapHeaderBypassMustUnderstandHeader</var> of type {@link org.openspcoop2.protocol.manifest.SoapHeaderBypassMustUnderstandHeader}
  3635.      *
  3636.      * @param file Xml file to serialize the object <var>soapHeaderBypassMustUnderstandHeader</var>
  3637.      * @param soapHeaderBypassMustUnderstandHeader Object to be serialized in xml file <var>fileName</var>
  3638.      * @param prettyPrint if true output the XML with indenting
  3639.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3640.      */
  3641.     public void write(File file,SoapHeaderBypassMustUnderstandHeader soapHeaderBypassMustUnderstandHeader,boolean prettyPrint) throws SerializerException {
  3642.         this.objToXml(file, SoapHeaderBypassMustUnderstandHeader.class, soapHeaderBypassMustUnderstandHeader, prettyPrint);
  3643.     }
  3644.    
  3645.     /**
  3646.      * Serialize to output stream <var>out</var> the object <var>soapHeaderBypassMustUnderstandHeader</var> of type {@link org.openspcoop2.protocol.manifest.SoapHeaderBypassMustUnderstandHeader}
  3647.      *
  3648.      * @param out OutputStream to serialize the object <var>soapHeaderBypassMustUnderstandHeader</var>
  3649.      * @param soapHeaderBypassMustUnderstandHeader Object to be serialized in xml file <var>fileName</var>
  3650.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3651.      */
  3652.     public void write(OutputStream out,SoapHeaderBypassMustUnderstandHeader soapHeaderBypassMustUnderstandHeader) throws SerializerException {
  3653.         this.objToXml(out, SoapHeaderBypassMustUnderstandHeader.class, soapHeaderBypassMustUnderstandHeader, false);
  3654.     }
  3655.     /**
  3656.      * Serialize to output stream <var>out</var> the object <var>soapHeaderBypassMustUnderstandHeader</var> of type {@link org.openspcoop2.protocol.manifest.SoapHeaderBypassMustUnderstandHeader}
  3657.      *
  3658.      * @param out OutputStream to serialize the object <var>soapHeaderBypassMustUnderstandHeader</var>
  3659.      * @param soapHeaderBypassMustUnderstandHeader Object to be serialized in xml file <var>fileName</var>
  3660.      * @param prettyPrint if true output the XML with indenting
  3661.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3662.      */
  3663.     public void write(OutputStream out,SoapHeaderBypassMustUnderstandHeader soapHeaderBypassMustUnderstandHeader,boolean prettyPrint) throws SerializerException {
  3664.         this.objToXml(out, SoapHeaderBypassMustUnderstandHeader.class, soapHeaderBypassMustUnderstandHeader, prettyPrint);
  3665.     }
  3666.            
  3667.     /**
  3668.      * Serialize to byte array the object <var>soapHeaderBypassMustUnderstandHeader</var> of type {@link org.openspcoop2.protocol.manifest.SoapHeaderBypassMustUnderstandHeader}
  3669.      *
  3670.      * @param soapHeaderBypassMustUnderstandHeader Object to be serialized
  3671.      * @return Object to be serialized in byte array
  3672.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3673.      */
  3674.     public byte[] toByteArray(SoapHeaderBypassMustUnderstandHeader soapHeaderBypassMustUnderstandHeader) throws SerializerException {
  3675.         return this.objToXml(SoapHeaderBypassMustUnderstandHeader.class, soapHeaderBypassMustUnderstandHeader, false).toByteArray();
  3676.     }
  3677.     /**
  3678.      * Serialize to byte array the object <var>soapHeaderBypassMustUnderstandHeader</var> of type {@link org.openspcoop2.protocol.manifest.SoapHeaderBypassMustUnderstandHeader}
  3679.      *
  3680.      * @param soapHeaderBypassMustUnderstandHeader Object to be serialized
  3681.      * @param prettyPrint if true output the XML with indenting
  3682.      * @return Object to be serialized in byte array
  3683.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3684.      */
  3685.     public byte[] toByteArray(SoapHeaderBypassMustUnderstandHeader soapHeaderBypassMustUnderstandHeader,boolean prettyPrint) throws SerializerException {
  3686.         return this.objToXml(SoapHeaderBypassMustUnderstandHeader.class, soapHeaderBypassMustUnderstandHeader, prettyPrint).toByteArray();
  3687.     }
  3688.    
  3689.     /**
  3690.      * Serialize to String the object <var>soapHeaderBypassMustUnderstandHeader</var> of type {@link org.openspcoop2.protocol.manifest.SoapHeaderBypassMustUnderstandHeader}
  3691.      *
  3692.      * @param soapHeaderBypassMustUnderstandHeader Object to be serialized
  3693.      * @return Object to be serialized as String
  3694.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3695.      */
  3696.     public String toString(SoapHeaderBypassMustUnderstandHeader soapHeaderBypassMustUnderstandHeader) throws SerializerException {
  3697.         return this.objToXml(SoapHeaderBypassMustUnderstandHeader.class, soapHeaderBypassMustUnderstandHeader, false).toString();
  3698.     }
  3699.     /**
  3700.      * Serialize to String the object <var>soapHeaderBypassMustUnderstandHeader</var> of type {@link org.openspcoop2.protocol.manifest.SoapHeaderBypassMustUnderstandHeader}
  3701.      *
  3702.      * @param soapHeaderBypassMustUnderstandHeader Object to be serialized
  3703.      * @param prettyPrint if true output the XML with indenting
  3704.      * @return Object to be serialized as String
  3705.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3706.      */
  3707.     public String toString(SoapHeaderBypassMustUnderstandHeader soapHeaderBypassMustUnderstandHeader,boolean prettyPrint) throws SerializerException {
  3708.         return this.objToXml(SoapHeaderBypassMustUnderstandHeader.class, soapHeaderBypassMustUnderstandHeader, prettyPrint).toString();
  3709.     }
  3710.    
  3711.    
  3712.    
  3713.     /*
  3714.      =================================================================================
  3715.      Object: SoapHeaderBypassMustUnderstand
  3716.      =================================================================================
  3717.     */
  3718.    
  3719.     /**
  3720.      * Serialize to file system in <var>fileName</var> the object <var>soapHeaderBypassMustUnderstand</var> of type {@link org.openspcoop2.protocol.manifest.SoapHeaderBypassMustUnderstand}
  3721.      *
  3722.      * @param fileName Xml file to serialize the object <var>soapHeaderBypassMustUnderstand</var>
  3723.      * @param soapHeaderBypassMustUnderstand Object to be serialized in xml file <var>fileName</var>
  3724.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3725.      */
  3726.     public void write(String fileName,SoapHeaderBypassMustUnderstand soapHeaderBypassMustUnderstand) throws SerializerException {
  3727.         this.objToXml(fileName, SoapHeaderBypassMustUnderstand.class, soapHeaderBypassMustUnderstand, false);
  3728.     }
  3729.     /**
  3730.      * Serialize to file system in <var>fileName</var> the object <var>soapHeaderBypassMustUnderstand</var> of type {@link org.openspcoop2.protocol.manifest.SoapHeaderBypassMustUnderstand}
  3731.      *
  3732.      * @param fileName Xml file to serialize the object <var>soapHeaderBypassMustUnderstand</var>
  3733.      * @param soapHeaderBypassMustUnderstand Object to be serialized in xml file <var>fileName</var>
  3734.      * @param prettyPrint if true output the XML with indenting
  3735.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3736.      */
  3737.     public void write(String fileName,SoapHeaderBypassMustUnderstand soapHeaderBypassMustUnderstand,boolean prettyPrint) throws SerializerException {
  3738.         this.objToXml(fileName, SoapHeaderBypassMustUnderstand.class, soapHeaderBypassMustUnderstand, prettyPrint);
  3739.     }
  3740.    
  3741.     /**
  3742.      * Serialize to file system in <var>file</var> the object <var>soapHeaderBypassMustUnderstand</var> of type {@link org.openspcoop2.protocol.manifest.SoapHeaderBypassMustUnderstand}
  3743.      *
  3744.      * @param file Xml file to serialize the object <var>soapHeaderBypassMustUnderstand</var>
  3745.      * @param soapHeaderBypassMustUnderstand Object to be serialized in xml file <var>fileName</var>
  3746.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3747.      */
  3748.     public void write(File file,SoapHeaderBypassMustUnderstand soapHeaderBypassMustUnderstand) throws SerializerException {
  3749.         this.objToXml(file, SoapHeaderBypassMustUnderstand.class, soapHeaderBypassMustUnderstand, false);
  3750.     }
  3751.     /**
  3752.      * Serialize to file system in <var>file</var> the object <var>soapHeaderBypassMustUnderstand</var> of type {@link org.openspcoop2.protocol.manifest.SoapHeaderBypassMustUnderstand}
  3753.      *
  3754.      * @param file Xml file to serialize the object <var>soapHeaderBypassMustUnderstand</var>
  3755.      * @param soapHeaderBypassMustUnderstand Object to be serialized in xml file <var>fileName</var>
  3756.      * @param prettyPrint if true output the XML with indenting
  3757.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3758.      */
  3759.     public void write(File file,SoapHeaderBypassMustUnderstand soapHeaderBypassMustUnderstand,boolean prettyPrint) throws SerializerException {
  3760.         this.objToXml(file, SoapHeaderBypassMustUnderstand.class, soapHeaderBypassMustUnderstand, prettyPrint);
  3761.     }
  3762.    
  3763.     /**
  3764.      * Serialize to output stream <var>out</var> the object <var>soapHeaderBypassMustUnderstand</var> of type {@link org.openspcoop2.protocol.manifest.SoapHeaderBypassMustUnderstand}
  3765.      *
  3766.      * @param out OutputStream to serialize the object <var>soapHeaderBypassMustUnderstand</var>
  3767.      * @param soapHeaderBypassMustUnderstand Object to be serialized in xml file <var>fileName</var>
  3768.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3769.      */
  3770.     public void write(OutputStream out,SoapHeaderBypassMustUnderstand soapHeaderBypassMustUnderstand) throws SerializerException {
  3771.         this.objToXml(out, SoapHeaderBypassMustUnderstand.class, soapHeaderBypassMustUnderstand, false);
  3772.     }
  3773.     /**
  3774.      * Serialize to output stream <var>out</var> the object <var>soapHeaderBypassMustUnderstand</var> of type {@link org.openspcoop2.protocol.manifest.SoapHeaderBypassMustUnderstand}
  3775.      *
  3776.      * @param out OutputStream to serialize the object <var>soapHeaderBypassMustUnderstand</var>
  3777.      * @param soapHeaderBypassMustUnderstand Object to be serialized in xml file <var>fileName</var>
  3778.      * @param prettyPrint if true output the XML with indenting
  3779.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3780.      */
  3781.     public void write(OutputStream out,SoapHeaderBypassMustUnderstand soapHeaderBypassMustUnderstand,boolean prettyPrint) throws SerializerException {
  3782.         this.objToXml(out, SoapHeaderBypassMustUnderstand.class, soapHeaderBypassMustUnderstand, prettyPrint);
  3783.     }
  3784.            
  3785.     /**
  3786.      * Serialize to byte array the object <var>soapHeaderBypassMustUnderstand</var> of type {@link org.openspcoop2.protocol.manifest.SoapHeaderBypassMustUnderstand}
  3787.      *
  3788.      * @param soapHeaderBypassMustUnderstand Object to be serialized
  3789.      * @return Object to be serialized in byte array
  3790.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3791.      */
  3792.     public byte[] toByteArray(SoapHeaderBypassMustUnderstand soapHeaderBypassMustUnderstand) throws SerializerException {
  3793.         return this.objToXml(SoapHeaderBypassMustUnderstand.class, soapHeaderBypassMustUnderstand, false).toByteArray();
  3794.     }
  3795.     /**
  3796.      * Serialize to byte array the object <var>soapHeaderBypassMustUnderstand</var> of type {@link org.openspcoop2.protocol.manifest.SoapHeaderBypassMustUnderstand}
  3797.      *
  3798.      * @param soapHeaderBypassMustUnderstand Object to be serialized
  3799.      * @param prettyPrint if true output the XML with indenting
  3800.      * @return Object to be serialized in byte array
  3801.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3802.      */
  3803.     public byte[] toByteArray(SoapHeaderBypassMustUnderstand soapHeaderBypassMustUnderstand,boolean prettyPrint) throws SerializerException {
  3804.         return this.objToXml(SoapHeaderBypassMustUnderstand.class, soapHeaderBypassMustUnderstand, prettyPrint).toByteArray();
  3805.     }
  3806.    
  3807.     /**
  3808.      * Serialize to String the object <var>soapHeaderBypassMustUnderstand</var> of type {@link org.openspcoop2.protocol.manifest.SoapHeaderBypassMustUnderstand}
  3809.      *
  3810.      * @param soapHeaderBypassMustUnderstand Object to be serialized
  3811.      * @return Object to be serialized as String
  3812.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3813.      */
  3814.     public String toString(SoapHeaderBypassMustUnderstand soapHeaderBypassMustUnderstand) throws SerializerException {
  3815.         return this.objToXml(SoapHeaderBypassMustUnderstand.class, soapHeaderBypassMustUnderstand, false).toString();
  3816.     }
  3817.     /**
  3818.      * Serialize to String the object <var>soapHeaderBypassMustUnderstand</var> of type {@link org.openspcoop2.protocol.manifest.SoapHeaderBypassMustUnderstand}
  3819.      *
  3820.      * @param soapHeaderBypassMustUnderstand Object to be serialized
  3821.      * @param prettyPrint if true output the XML with indenting
  3822.      * @return Object to be serialized as String
  3823.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3824.      */
  3825.     public String toString(SoapHeaderBypassMustUnderstand soapHeaderBypassMustUnderstand,boolean prettyPrint) throws SerializerException {
  3826.         return this.objToXml(SoapHeaderBypassMustUnderstand.class, soapHeaderBypassMustUnderstand, prettyPrint).toString();
  3827.     }
  3828.    
  3829.    
  3830.    
  3831.     /*
  3832.      =================================================================================
  3833.      Object: Organization
  3834.      =================================================================================
  3835.     */
  3836.    
  3837.     /**
  3838.      * Serialize to file system in <var>fileName</var> the object <var>organization</var> of type {@link org.openspcoop2.protocol.manifest.Organization}
  3839.      *
  3840.      * @param fileName Xml file to serialize the object <var>organization</var>
  3841.      * @param organization Object to be serialized in xml file <var>fileName</var>
  3842.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3843.      */
  3844.     public void write(String fileName,Organization organization) throws SerializerException {
  3845.         this.objToXml(fileName, Organization.class, organization, false);
  3846.     }
  3847.     /**
  3848.      * Serialize to file system in <var>fileName</var> the object <var>organization</var> of type {@link org.openspcoop2.protocol.manifest.Organization}
  3849.      *
  3850.      * @param fileName Xml file to serialize the object <var>organization</var>
  3851.      * @param organization Object to be serialized in xml file <var>fileName</var>
  3852.      * @param prettyPrint if true output the XML with indenting
  3853.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3854.      */
  3855.     public void write(String fileName,Organization organization,boolean prettyPrint) throws SerializerException {
  3856.         this.objToXml(fileName, Organization.class, organization, prettyPrint);
  3857.     }
  3858.    
  3859.     /**
  3860.      * Serialize to file system in <var>file</var> the object <var>organization</var> of type {@link org.openspcoop2.protocol.manifest.Organization}
  3861.      *
  3862.      * @param file Xml file to serialize the object <var>organization</var>
  3863.      * @param organization Object to be serialized in xml file <var>fileName</var>
  3864.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3865.      */
  3866.     public void write(File file,Organization organization) throws SerializerException {
  3867.         this.objToXml(file, Organization.class, organization, false);
  3868.     }
  3869.     /**
  3870.      * Serialize to file system in <var>file</var> the object <var>organization</var> of type {@link org.openspcoop2.protocol.manifest.Organization}
  3871.      *
  3872.      * @param file Xml file to serialize the object <var>organization</var>
  3873.      * @param organization Object to be serialized in xml file <var>fileName</var>
  3874.      * @param prettyPrint if true output the XML with indenting
  3875.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3876.      */
  3877.     public void write(File file,Organization organization,boolean prettyPrint) throws SerializerException {
  3878.         this.objToXml(file, Organization.class, organization, prettyPrint);
  3879.     }
  3880.    
  3881.     /**
  3882.      * Serialize to output stream <var>out</var> the object <var>organization</var> of type {@link org.openspcoop2.protocol.manifest.Organization}
  3883.      *
  3884.      * @param out OutputStream to serialize the object <var>organization</var>
  3885.      * @param organization Object to be serialized in xml file <var>fileName</var>
  3886.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3887.      */
  3888.     public void write(OutputStream out,Organization organization) throws SerializerException {
  3889.         this.objToXml(out, Organization.class, organization, false);
  3890.     }
  3891.     /**
  3892.      * Serialize to output stream <var>out</var> the object <var>organization</var> of type {@link org.openspcoop2.protocol.manifest.Organization}
  3893.      *
  3894.      * @param out OutputStream to serialize the object <var>organization</var>
  3895.      * @param organization Object to be serialized in xml file <var>fileName</var>
  3896.      * @param prettyPrint if true output the XML with indenting
  3897.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3898.      */
  3899.     public void write(OutputStream out,Organization organization,boolean prettyPrint) throws SerializerException {
  3900.         this.objToXml(out, Organization.class, organization, prettyPrint);
  3901.     }
  3902.            
  3903.     /**
  3904.      * Serialize to byte array the object <var>organization</var> of type {@link org.openspcoop2.protocol.manifest.Organization}
  3905.      *
  3906.      * @param organization Object to be serialized
  3907.      * @return Object to be serialized in byte array
  3908.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3909.      */
  3910.     public byte[] toByteArray(Organization organization) throws SerializerException {
  3911.         return this.objToXml(Organization.class, organization, false).toByteArray();
  3912.     }
  3913.     /**
  3914.      * Serialize to byte array the object <var>organization</var> of type {@link org.openspcoop2.protocol.manifest.Organization}
  3915.      *
  3916.      * @param organization Object to be serialized
  3917.      * @param prettyPrint if true output the XML with indenting
  3918.      * @return Object to be serialized in byte array
  3919.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3920.      */
  3921.     public byte[] toByteArray(Organization organization,boolean prettyPrint) throws SerializerException {
  3922.         return this.objToXml(Organization.class, organization, prettyPrint).toByteArray();
  3923.     }
  3924.    
  3925.     /**
  3926.      * Serialize to String the object <var>organization</var> of type {@link org.openspcoop2.protocol.manifest.Organization}
  3927.      *
  3928.      * @param organization Object to be serialized
  3929.      * @return Object to be serialized as String
  3930.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3931.      */
  3932.     public String toString(Organization organization) throws SerializerException {
  3933.         return this.objToXml(Organization.class, organization, false).toString();
  3934.     }
  3935.     /**
  3936.      * Serialize to String the object <var>organization</var> of type {@link org.openspcoop2.protocol.manifest.Organization}
  3937.      *
  3938.      * @param organization Object to be serialized
  3939.      * @param prettyPrint if true output the XML with indenting
  3940.      * @return Object to be serialized as String
  3941.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3942.      */
  3943.     public String toString(Organization organization,boolean prettyPrint) throws SerializerException {
  3944.         return this.objToXml(Organization.class, organization, prettyPrint).toString();
  3945.     }
  3946.    
  3947.    
  3948.    
  3949.     /*
  3950.      =================================================================================
  3951.      Object: Versions
  3952.      =================================================================================
  3953.     */
  3954.    
  3955.     /**
  3956.      * Serialize to file system in <var>fileName</var> the object <var>versions</var> of type {@link org.openspcoop2.protocol.manifest.Versions}
  3957.      *
  3958.      * @param fileName Xml file to serialize the object <var>versions</var>
  3959.      * @param versions Object to be serialized in xml file <var>fileName</var>
  3960.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3961.      */
  3962.     public void write(String fileName,Versions versions) throws SerializerException {
  3963.         this.objToXml(fileName, Versions.class, versions, false);
  3964.     }
  3965.     /**
  3966.      * Serialize to file system in <var>fileName</var> the object <var>versions</var> of type {@link org.openspcoop2.protocol.manifest.Versions}
  3967.      *
  3968.      * @param fileName Xml file to serialize the object <var>versions</var>
  3969.      * @param versions Object to be serialized in xml file <var>fileName</var>
  3970.      * @param prettyPrint if true output the XML with indenting
  3971.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3972.      */
  3973.     public void write(String fileName,Versions versions,boolean prettyPrint) throws SerializerException {
  3974.         this.objToXml(fileName, Versions.class, versions, prettyPrint);
  3975.     }
  3976.    
  3977.     /**
  3978.      * Serialize to file system in <var>file</var> the object <var>versions</var> of type {@link org.openspcoop2.protocol.manifest.Versions}
  3979.      *
  3980.      * @param file Xml file to serialize the object <var>versions</var>
  3981.      * @param versions Object to be serialized in xml file <var>fileName</var>
  3982.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3983.      */
  3984.     public void write(File file,Versions versions) throws SerializerException {
  3985.         this.objToXml(file, Versions.class, versions, false);
  3986.     }
  3987.     /**
  3988.      * Serialize to file system in <var>file</var> the object <var>versions</var> of type {@link org.openspcoop2.protocol.manifest.Versions}
  3989.      *
  3990.      * @param file Xml file to serialize the object <var>versions</var>
  3991.      * @param versions Object to be serialized in xml file <var>fileName</var>
  3992.      * @param prettyPrint if true output the XML with indenting
  3993.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  3994.      */
  3995.     public void write(File file,Versions versions,boolean prettyPrint) throws SerializerException {
  3996.         this.objToXml(file, Versions.class, versions, prettyPrint);
  3997.     }
  3998.    
  3999.     /**
  4000.      * Serialize to output stream <var>out</var> the object <var>versions</var> of type {@link org.openspcoop2.protocol.manifest.Versions}
  4001.      *
  4002.      * @param out OutputStream to serialize the object <var>versions</var>
  4003.      * @param versions Object to be serialized in xml file <var>fileName</var>
  4004.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4005.      */
  4006.     public void write(OutputStream out,Versions versions) throws SerializerException {
  4007.         this.objToXml(out, Versions.class, versions, false);
  4008.     }
  4009.     /**
  4010.      * Serialize to output stream <var>out</var> the object <var>versions</var> of type {@link org.openspcoop2.protocol.manifest.Versions}
  4011.      *
  4012.      * @param out OutputStream to serialize the object <var>versions</var>
  4013.      * @param versions Object to be serialized in xml file <var>fileName</var>
  4014.      * @param prettyPrint if true output the XML with indenting
  4015.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4016.      */
  4017.     public void write(OutputStream out,Versions versions,boolean prettyPrint) throws SerializerException {
  4018.         this.objToXml(out, Versions.class, versions, prettyPrint);
  4019.     }
  4020.            
  4021.     /**
  4022.      * Serialize to byte array the object <var>versions</var> of type {@link org.openspcoop2.protocol.manifest.Versions}
  4023.      *
  4024.      * @param versions Object to be serialized
  4025.      * @return Object to be serialized in byte array
  4026.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4027.      */
  4028.     public byte[] toByteArray(Versions versions) throws SerializerException {
  4029.         return this.objToXml(Versions.class, versions, false).toByteArray();
  4030.     }
  4031.     /**
  4032.      * Serialize to byte array the object <var>versions</var> of type {@link org.openspcoop2.protocol.manifest.Versions}
  4033.      *
  4034.      * @param versions Object to be serialized
  4035.      * @param prettyPrint if true output the XML with indenting
  4036.      * @return Object to be serialized in byte array
  4037.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4038.      */
  4039.     public byte[] toByteArray(Versions versions,boolean prettyPrint) throws SerializerException {
  4040.         return this.objToXml(Versions.class, versions, prettyPrint).toByteArray();
  4041.     }
  4042.    
  4043.     /**
  4044.      * Serialize to String the object <var>versions</var> of type {@link org.openspcoop2.protocol.manifest.Versions}
  4045.      *
  4046.      * @param versions Object to be serialized
  4047.      * @return Object to be serialized as String
  4048.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4049.      */
  4050.     public String toString(Versions versions) throws SerializerException {
  4051.         return this.objToXml(Versions.class, versions, false).toString();
  4052.     }
  4053.     /**
  4054.      * Serialize to String the object <var>versions</var> of type {@link org.openspcoop2.protocol.manifest.Versions}
  4055.      *
  4056.      * @param versions Object to be serialized
  4057.      * @param prettyPrint if true output the XML with indenting
  4058.      * @return Object to be serialized as String
  4059.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4060.      */
  4061.     public String toString(Versions versions,boolean prettyPrint) throws SerializerException {
  4062.         return this.objToXml(Versions.class, versions, prettyPrint).toString();
  4063.     }
  4064.    
  4065.    
  4066.    
  4067.     /*
  4068.      =================================================================================
  4069.      Object: SubContextMapping
  4070.      =================================================================================
  4071.     */
  4072.    
  4073.     /**
  4074.      * Serialize to file system in <var>fileName</var> the object <var>subContextMapping</var> of type {@link org.openspcoop2.protocol.manifest.SubContextMapping}
  4075.      *
  4076.      * @param fileName Xml file to serialize the object <var>subContextMapping</var>
  4077.      * @param subContextMapping Object to be serialized in xml file <var>fileName</var>
  4078.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4079.      */
  4080.     public void write(String fileName,SubContextMapping subContextMapping) throws SerializerException {
  4081.         this.objToXml(fileName, SubContextMapping.class, subContextMapping, false);
  4082.     }
  4083.     /**
  4084.      * Serialize to file system in <var>fileName</var> the object <var>subContextMapping</var> of type {@link org.openspcoop2.protocol.manifest.SubContextMapping}
  4085.      *
  4086.      * @param fileName Xml file to serialize the object <var>subContextMapping</var>
  4087.      * @param subContextMapping Object to be serialized in xml file <var>fileName</var>
  4088.      * @param prettyPrint if true output the XML with indenting
  4089.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4090.      */
  4091.     public void write(String fileName,SubContextMapping subContextMapping,boolean prettyPrint) throws SerializerException {
  4092.         this.objToXml(fileName, SubContextMapping.class, subContextMapping, prettyPrint);
  4093.     }
  4094.    
  4095.     /**
  4096.      * Serialize to file system in <var>file</var> the object <var>subContextMapping</var> of type {@link org.openspcoop2.protocol.manifest.SubContextMapping}
  4097.      *
  4098.      * @param file Xml file to serialize the object <var>subContextMapping</var>
  4099.      * @param subContextMapping Object to be serialized in xml file <var>fileName</var>
  4100.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4101.      */
  4102.     public void write(File file,SubContextMapping subContextMapping) throws SerializerException {
  4103.         this.objToXml(file, SubContextMapping.class, subContextMapping, false);
  4104.     }
  4105.     /**
  4106.      * Serialize to file system in <var>file</var> the object <var>subContextMapping</var> of type {@link org.openspcoop2.protocol.manifest.SubContextMapping}
  4107.      *
  4108.      * @param file Xml file to serialize the object <var>subContextMapping</var>
  4109.      * @param subContextMapping Object to be serialized in xml file <var>fileName</var>
  4110.      * @param prettyPrint if true output the XML with indenting
  4111.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4112.      */
  4113.     public void write(File file,SubContextMapping subContextMapping,boolean prettyPrint) throws SerializerException {
  4114.         this.objToXml(file, SubContextMapping.class, subContextMapping, prettyPrint);
  4115.     }
  4116.    
  4117.     /**
  4118.      * Serialize to output stream <var>out</var> the object <var>subContextMapping</var> of type {@link org.openspcoop2.protocol.manifest.SubContextMapping}
  4119.      *
  4120.      * @param out OutputStream to serialize the object <var>subContextMapping</var>
  4121.      * @param subContextMapping Object to be serialized in xml file <var>fileName</var>
  4122.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4123.      */
  4124.     public void write(OutputStream out,SubContextMapping subContextMapping) throws SerializerException {
  4125.         this.objToXml(out, SubContextMapping.class, subContextMapping, false);
  4126.     }
  4127.     /**
  4128.      * Serialize to output stream <var>out</var> the object <var>subContextMapping</var> of type {@link org.openspcoop2.protocol.manifest.SubContextMapping}
  4129.      *
  4130.      * @param out OutputStream to serialize the object <var>subContextMapping</var>
  4131.      * @param subContextMapping Object to be serialized in xml file <var>fileName</var>
  4132.      * @param prettyPrint if true output the XML with indenting
  4133.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4134.      */
  4135.     public void write(OutputStream out,SubContextMapping subContextMapping,boolean prettyPrint) throws SerializerException {
  4136.         this.objToXml(out, SubContextMapping.class, subContextMapping, prettyPrint);
  4137.     }
  4138.            
  4139.     /**
  4140.      * Serialize to byte array the object <var>subContextMapping</var> of type {@link org.openspcoop2.protocol.manifest.SubContextMapping}
  4141.      *
  4142.      * @param subContextMapping Object to be serialized
  4143.      * @return Object to be serialized in byte array
  4144.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4145.      */
  4146.     public byte[] toByteArray(SubContextMapping subContextMapping) throws SerializerException {
  4147.         return this.objToXml(SubContextMapping.class, subContextMapping, false).toByteArray();
  4148.     }
  4149.     /**
  4150.      * Serialize to byte array the object <var>subContextMapping</var> of type {@link org.openspcoop2.protocol.manifest.SubContextMapping}
  4151.      *
  4152.      * @param subContextMapping Object to be serialized
  4153.      * @param prettyPrint if true output the XML with indenting
  4154.      * @return Object to be serialized in byte array
  4155.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4156.      */
  4157.     public byte[] toByteArray(SubContextMapping subContextMapping,boolean prettyPrint) throws SerializerException {
  4158.         return this.objToXml(SubContextMapping.class, subContextMapping, prettyPrint).toByteArray();
  4159.     }
  4160.    
  4161.     /**
  4162.      * Serialize to String the object <var>subContextMapping</var> of type {@link org.openspcoop2.protocol.manifest.SubContextMapping}
  4163.      *
  4164.      * @param subContextMapping Object to be serialized
  4165.      * @return Object to be serialized as String
  4166.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4167.      */
  4168.     public String toString(SubContextMapping subContextMapping) throws SerializerException {
  4169.         return this.objToXml(SubContextMapping.class, subContextMapping, false).toString();
  4170.     }
  4171.     /**
  4172.      * Serialize to String the object <var>subContextMapping</var> of type {@link org.openspcoop2.protocol.manifest.SubContextMapping}
  4173.      *
  4174.      * @param subContextMapping Object to be serialized
  4175.      * @param prettyPrint if true output the XML with indenting
  4176.      * @return Object to be serialized as String
  4177.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4178.      */
  4179.     public String toString(SubContextMapping subContextMapping,boolean prettyPrint) throws SerializerException {
  4180.         return this.objToXml(SubContextMapping.class, subContextMapping, prettyPrint).toString();
  4181.     }
  4182.    
  4183.    
  4184.    
  4185.     /*
  4186.      =================================================================================
  4187.      Object: WebEmptyContext
  4188.      =================================================================================
  4189.     */
  4190.    
  4191.     /**
  4192.      * Serialize to file system in <var>fileName</var> the object <var>webEmptyContext</var> of type {@link org.openspcoop2.protocol.manifest.WebEmptyContext}
  4193.      *
  4194.      * @param fileName Xml file to serialize the object <var>webEmptyContext</var>
  4195.      * @param webEmptyContext Object to be serialized in xml file <var>fileName</var>
  4196.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4197.      */
  4198.     public void write(String fileName,WebEmptyContext webEmptyContext) throws SerializerException {
  4199.         this.objToXml(fileName, WebEmptyContext.class, webEmptyContext, false);
  4200.     }
  4201.     /**
  4202.      * Serialize to file system in <var>fileName</var> the object <var>webEmptyContext</var> of type {@link org.openspcoop2.protocol.manifest.WebEmptyContext}
  4203.      *
  4204.      * @param fileName Xml file to serialize the object <var>webEmptyContext</var>
  4205.      * @param webEmptyContext Object to be serialized in xml file <var>fileName</var>
  4206.      * @param prettyPrint if true output the XML with indenting
  4207.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4208.      */
  4209.     public void write(String fileName,WebEmptyContext webEmptyContext,boolean prettyPrint) throws SerializerException {
  4210.         this.objToXml(fileName, WebEmptyContext.class, webEmptyContext, prettyPrint);
  4211.     }
  4212.    
  4213.     /**
  4214.      * Serialize to file system in <var>file</var> the object <var>webEmptyContext</var> of type {@link org.openspcoop2.protocol.manifest.WebEmptyContext}
  4215.      *
  4216.      * @param file Xml file to serialize the object <var>webEmptyContext</var>
  4217.      * @param webEmptyContext Object to be serialized in xml file <var>fileName</var>
  4218.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4219.      */
  4220.     public void write(File file,WebEmptyContext webEmptyContext) throws SerializerException {
  4221.         this.objToXml(file, WebEmptyContext.class, webEmptyContext, false);
  4222.     }
  4223.     /**
  4224.      * Serialize to file system in <var>file</var> the object <var>webEmptyContext</var> of type {@link org.openspcoop2.protocol.manifest.WebEmptyContext}
  4225.      *
  4226.      * @param file Xml file to serialize the object <var>webEmptyContext</var>
  4227.      * @param webEmptyContext Object to be serialized in xml file <var>fileName</var>
  4228.      * @param prettyPrint if true output the XML with indenting
  4229.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4230.      */
  4231.     public void write(File file,WebEmptyContext webEmptyContext,boolean prettyPrint) throws SerializerException {
  4232.         this.objToXml(file, WebEmptyContext.class, webEmptyContext, prettyPrint);
  4233.     }
  4234.    
  4235.     /**
  4236.      * Serialize to output stream <var>out</var> the object <var>webEmptyContext</var> of type {@link org.openspcoop2.protocol.manifest.WebEmptyContext}
  4237.      *
  4238.      * @param out OutputStream to serialize the object <var>webEmptyContext</var>
  4239.      * @param webEmptyContext Object to be serialized in xml file <var>fileName</var>
  4240.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4241.      */
  4242.     public void write(OutputStream out,WebEmptyContext webEmptyContext) throws SerializerException {
  4243.         this.objToXml(out, WebEmptyContext.class, webEmptyContext, false);
  4244.     }
  4245.     /**
  4246.      * Serialize to output stream <var>out</var> the object <var>webEmptyContext</var> of type {@link org.openspcoop2.protocol.manifest.WebEmptyContext}
  4247.      *
  4248.      * @param out OutputStream to serialize the object <var>webEmptyContext</var>
  4249.      * @param webEmptyContext Object to be serialized in xml file <var>fileName</var>
  4250.      * @param prettyPrint if true output the XML with indenting
  4251.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4252.      */
  4253.     public void write(OutputStream out,WebEmptyContext webEmptyContext,boolean prettyPrint) throws SerializerException {
  4254.         this.objToXml(out, WebEmptyContext.class, webEmptyContext, prettyPrint);
  4255.     }
  4256.            
  4257.     /**
  4258.      * Serialize to byte array the object <var>webEmptyContext</var> of type {@link org.openspcoop2.protocol.manifest.WebEmptyContext}
  4259.      *
  4260.      * @param webEmptyContext Object to be serialized
  4261.      * @return Object to be serialized in byte array
  4262.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4263.      */
  4264.     public byte[] toByteArray(WebEmptyContext webEmptyContext) throws SerializerException {
  4265.         return this.objToXml(WebEmptyContext.class, webEmptyContext, false).toByteArray();
  4266.     }
  4267.     /**
  4268.      * Serialize to byte array the object <var>webEmptyContext</var> of type {@link org.openspcoop2.protocol.manifest.WebEmptyContext}
  4269.      *
  4270.      * @param webEmptyContext Object to be serialized
  4271.      * @param prettyPrint if true output the XML with indenting
  4272.      * @return Object to be serialized in byte array
  4273.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4274.      */
  4275.     public byte[] toByteArray(WebEmptyContext webEmptyContext,boolean prettyPrint) throws SerializerException {
  4276.         return this.objToXml(WebEmptyContext.class, webEmptyContext, prettyPrint).toByteArray();
  4277.     }
  4278.    
  4279.     /**
  4280.      * Serialize to String the object <var>webEmptyContext</var> of type {@link org.openspcoop2.protocol.manifest.WebEmptyContext}
  4281.      *
  4282.      * @param webEmptyContext Object to be serialized
  4283.      * @return Object to be serialized as String
  4284.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4285.      */
  4286.     public String toString(WebEmptyContext webEmptyContext) throws SerializerException {
  4287.         return this.objToXml(WebEmptyContext.class, webEmptyContext, false).toString();
  4288.     }
  4289.     /**
  4290.      * Serialize to String the object <var>webEmptyContext</var> of type {@link org.openspcoop2.protocol.manifest.WebEmptyContext}
  4291.      *
  4292.      * @param webEmptyContext Object to be serialized
  4293.      * @param prettyPrint if true output the XML with indenting
  4294.      * @return Object to be serialized as String
  4295.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4296.      */
  4297.     public String toString(WebEmptyContext webEmptyContext,boolean prettyPrint) throws SerializerException {
  4298.         return this.objToXml(WebEmptyContext.class, webEmptyContext, prettyPrint).toString();
  4299.     }
  4300.    
  4301.    
  4302.    
  4303.     /*
  4304.      =================================================================================
  4305.      Object: EmptySubContextMapping
  4306.      =================================================================================
  4307.     */
  4308.    
  4309.     /**
  4310.      * Serialize to file system in <var>fileName</var> the object <var>emptySubContextMapping</var> of type {@link org.openspcoop2.protocol.manifest.EmptySubContextMapping}
  4311.      *
  4312.      * @param fileName Xml file to serialize the object <var>emptySubContextMapping</var>
  4313.      * @param emptySubContextMapping Object to be serialized in xml file <var>fileName</var>
  4314.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4315.      */
  4316.     public void write(String fileName,EmptySubContextMapping emptySubContextMapping) throws SerializerException {
  4317.         this.objToXml(fileName, EmptySubContextMapping.class, emptySubContextMapping, false);
  4318.     }
  4319.     /**
  4320.      * Serialize to file system in <var>fileName</var> the object <var>emptySubContextMapping</var> of type {@link org.openspcoop2.protocol.manifest.EmptySubContextMapping}
  4321.      *
  4322.      * @param fileName Xml file to serialize the object <var>emptySubContextMapping</var>
  4323.      * @param emptySubContextMapping Object to be serialized in xml file <var>fileName</var>
  4324.      * @param prettyPrint if true output the XML with indenting
  4325.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4326.      */
  4327.     public void write(String fileName,EmptySubContextMapping emptySubContextMapping,boolean prettyPrint) throws SerializerException {
  4328.         this.objToXml(fileName, EmptySubContextMapping.class, emptySubContextMapping, prettyPrint);
  4329.     }
  4330.    
  4331.     /**
  4332.      * Serialize to file system in <var>file</var> the object <var>emptySubContextMapping</var> of type {@link org.openspcoop2.protocol.manifest.EmptySubContextMapping}
  4333.      *
  4334.      * @param file Xml file to serialize the object <var>emptySubContextMapping</var>
  4335.      * @param emptySubContextMapping Object to be serialized in xml file <var>fileName</var>
  4336.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4337.      */
  4338.     public void write(File file,EmptySubContextMapping emptySubContextMapping) throws SerializerException {
  4339.         this.objToXml(file, EmptySubContextMapping.class, emptySubContextMapping, false);
  4340.     }
  4341.     /**
  4342.      * Serialize to file system in <var>file</var> the object <var>emptySubContextMapping</var> of type {@link org.openspcoop2.protocol.manifest.EmptySubContextMapping}
  4343.      *
  4344.      * @param file Xml file to serialize the object <var>emptySubContextMapping</var>
  4345.      * @param emptySubContextMapping Object to be serialized in xml file <var>fileName</var>
  4346.      * @param prettyPrint if true output the XML with indenting
  4347.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4348.      */
  4349.     public void write(File file,EmptySubContextMapping emptySubContextMapping,boolean prettyPrint) throws SerializerException {
  4350.         this.objToXml(file, EmptySubContextMapping.class, emptySubContextMapping, prettyPrint);
  4351.     }
  4352.    
  4353.     /**
  4354.      * Serialize to output stream <var>out</var> the object <var>emptySubContextMapping</var> of type {@link org.openspcoop2.protocol.manifest.EmptySubContextMapping}
  4355.      *
  4356.      * @param out OutputStream to serialize the object <var>emptySubContextMapping</var>
  4357.      * @param emptySubContextMapping Object to be serialized in xml file <var>fileName</var>
  4358.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4359.      */
  4360.     public void write(OutputStream out,EmptySubContextMapping emptySubContextMapping) throws SerializerException {
  4361.         this.objToXml(out, EmptySubContextMapping.class, emptySubContextMapping, false);
  4362.     }
  4363.     /**
  4364.      * Serialize to output stream <var>out</var> the object <var>emptySubContextMapping</var> of type {@link org.openspcoop2.protocol.manifest.EmptySubContextMapping}
  4365.      *
  4366.      * @param out OutputStream to serialize the object <var>emptySubContextMapping</var>
  4367.      * @param emptySubContextMapping Object to be serialized in xml file <var>fileName</var>
  4368.      * @param prettyPrint if true output the XML with indenting
  4369.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4370.      */
  4371.     public void write(OutputStream out,EmptySubContextMapping emptySubContextMapping,boolean prettyPrint) throws SerializerException {
  4372.         this.objToXml(out, EmptySubContextMapping.class, emptySubContextMapping, prettyPrint);
  4373.     }
  4374.            
  4375.     /**
  4376.      * Serialize to byte array the object <var>emptySubContextMapping</var> of type {@link org.openspcoop2.protocol.manifest.EmptySubContextMapping}
  4377.      *
  4378.      * @param emptySubContextMapping Object to be serialized
  4379.      * @return Object to be serialized in byte array
  4380.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4381.      */
  4382.     public byte[] toByteArray(EmptySubContextMapping emptySubContextMapping) throws SerializerException {
  4383.         return this.objToXml(EmptySubContextMapping.class, emptySubContextMapping, false).toByteArray();
  4384.     }
  4385.     /**
  4386.      * Serialize to byte array the object <var>emptySubContextMapping</var> of type {@link org.openspcoop2.protocol.manifest.EmptySubContextMapping}
  4387.      *
  4388.      * @param emptySubContextMapping Object to be serialized
  4389.      * @param prettyPrint if true output the XML with indenting
  4390.      * @return Object to be serialized in byte array
  4391.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4392.      */
  4393.     public byte[] toByteArray(EmptySubContextMapping emptySubContextMapping,boolean prettyPrint) throws SerializerException {
  4394.         return this.objToXml(EmptySubContextMapping.class, emptySubContextMapping, prettyPrint).toByteArray();
  4395.     }
  4396.    
  4397.     /**
  4398.      * Serialize to String the object <var>emptySubContextMapping</var> of type {@link org.openspcoop2.protocol.manifest.EmptySubContextMapping}
  4399.      *
  4400.      * @param emptySubContextMapping Object to be serialized
  4401.      * @return Object to be serialized as String
  4402.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4403.      */
  4404.     public String toString(EmptySubContextMapping emptySubContextMapping) throws SerializerException {
  4405.         return this.objToXml(EmptySubContextMapping.class, emptySubContextMapping, false).toString();
  4406.     }
  4407.     /**
  4408.      * Serialize to String the object <var>emptySubContextMapping</var> of type {@link org.openspcoop2.protocol.manifest.EmptySubContextMapping}
  4409.      *
  4410.      * @param emptySubContextMapping Object to be serialized
  4411.      * @param prettyPrint if true output the XML with indenting
  4412.      * @return Object to be serialized as String
  4413.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4414.      */
  4415.     public String toString(EmptySubContextMapping emptySubContextMapping,boolean prettyPrint) throws SerializerException {
  4416.         return this.objToXml(EmptySubContextMapping.class, emptySubContextMapping, prettyPrint).toString();
  4417.     }
  4418.    
  4419.    
  4420.    
  4421.     /*
  4422.      =================================================================================
  4423.      Object: RestMediaTypeMapping
  4424.      =================================================================================
  4425.     */
  4426.    
  4427.     /**
  4428.      * Serialize to file system in <var>fileName</var> the object <var>restMediaTypeMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeMapping}
  4429.      *
  4430.      * @param fileName Xml file to serialize the object <var>restMediaTypeMapping</var>
  4431.      * @param restMediaTypeMapping Object to be serialized in xml file <var>fileName</var>
  4432.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4433.      */
  4434.     public void write(String fileName,RestMediaTypeMapping restMediaTypeMapping) throws SerializerException {
  4435.         this.objToXml(fileName, RestMediaTypeMapping.class, restMediaTypeMapping, false);
  4436.     }
  4437.     /**
  4438.      * Serialize to file system in <var>fileName</var> the object <var>restMediaTypeMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeMapping}
  4439.      *
  4440.      * @param fileName Xml file to serialize the object <var>restMediaTypeMapping</var>
  4441.      * @param restMediaTypeMapping Object to be serialized in xml file <var>fileName</var>
  4442.      * @param prettyPrint if true output the XML with indenting
  4443.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4444.      */
  4445.     public void write(String fileName,RestMediaTypeMapping restMediaTypeMapping,boolean prettyPrint) throws SerializerException {
  4446.         this.objToXml(fileName, RestMediaTypeMapping.class, restMediaTypeMapping, prettyPrint);
  4447.     }
  4448.    
  4449.     /**
  4450.      * Serialize to file system in <var>file</var> the object <var>restMediaTypeMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeMapping}
  4451.      *
  4452.      * @param file Xml file to serialize the object <var>restMediaTypeMapping</var>
  4453.      * @param restMediaTypeMapping Object to be serialized in xml file <var>fileName</var>
  4454.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4455.      */
  4456.     public void write(File file,RestMediaTypeMapping restMediaTypeMapping) throws SerializerException {
  4457.         this.objToXml(file, RestMediaTypeMapping.class, restMediaTypeMapping, false);
  4458.     }
  4459.     /**
  4460.      * Serialize to file system in <var>file</var> the object <var>restMediaTypeMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeMapping}
  4461.      *
  4462.      * @param file Xml file to serialize the object <var>restMediaTypeMapping</var>
  4463.      * @param restMediaTypeMapping Object to be serialized in xml file <var>fileName</var>
  4464.      * @param prettyPrint if true output the XML with indenting
  4465.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4466.      */
  4467.     public void write(File file,RestMediaTypeMapping restMediaTypeMapping,boolean prettyPrint) throws SerializerException {
  4468.         this.objToXml(file, RestMediaTypeMapping.class, restMediaTypeMapping, prettyPrint);
  4469.     }
  4470.    
  4471.     /**
  4472.      * Serialize to output stream <var>out</var> the object <var>restMediaTypeMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeMapping}
  4473.      *
  4474.      * @param out OutputStream to serialize the object <var>restMediaTypeMapping</var>
  4475.      * @param restMediaTypeMapping Object to be serialized in xml file <var>fileName</var>
  4476.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4477.      */
  4478.     public void write(OutputStream out,RestMediaTypeMapping restMediaTypeMapping) throws SerializerException {
  4479.         this.objToXml(out, RestMediaTypeMapping.class, restMediaTypeMapping, false);
  4480.     }
  4481.     /**
  4482.      * Serialize to output stream <var>out</var> the object <var>restMediaTypeMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeMapping}
  4483.      *
  4484.      * @param out OutputStream to serialize the object <var>restMediaTypeMapping</var>
  4485.      * @param restMediaTypeMapping Object to be serialized in xml file <var>fileName</var>
  4486.      * @param prettyPrint if true output the XML with indenting
  4487.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4488.      */
  4489.     public void write(OutputStream out,RestMediaTypeMapping restMediaTypeMapping,boolean prettyPrint) throws SerializerException {
  4490.         this.objToXml(out, RestMediaTypeMapping.class, restMediaTypeMapping, prettyPrint);
  4491.     }
  4492.            
  4493.     /**
  4494.      * Serialize to byte array the object <var>restMediaTypeMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeMapping}
  4495.      *
  4496.      * @param restMediaTypeMapping Object to be serialized
  4497.      * @return Object to be serialized in byte array
  4498.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4499.      */
  4500.     public byte[] toByteArray(RestMediaTypeMapping restMediaTypeMapping) throws SerializerException {
  4501.         return this.objToXml(RestMediaTypeMapping.class, restMediaTypeMapping, false).toByteArray();
  4502.     }
  4503.     /**
  4504.      * Serialize to byte array the object <var>restMediaTypeMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeMapping}
  4505.      *
  4506.      * @param restMediaTypeMapping Object to be serialized
  4507.      * @param prettyPrint if true output the XML with indenting
  4508.      * @return Object to be serialized in byte array
  4509.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4510.      */
  4511.     public byte[] toByteArray(RestMediaTypeMapping restMediaTypeMapping,boolean prettyPrint) throws SerializerException {
  4512.         return this.objToXml(RestMediaTypeMapping.class, restMediaTypeMapping, prettyPrint).toByteArray();
  4513.     }
  4514.    
  4515.     /**
  4516.      * Serialize to String the object <var>restMediaTypeMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeMapping}
  4517.      *
  4518.      * @param restMediaTypeMapping Object to be serialized
  4519.      * @return Object to be serialized as String
  4520.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4521.      */
  4522.     public String toString(RestMediaTypeMapping restMediaTypeMapping) throws SerializerException {
  4523.         return this.objToXml(RestMediaTypeMapping.class, restMediaTypeMapping, false).toString();
  4524.     }
  4525.     /**
  4526.      * Serialize to String the object <var>restMediaTypeMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeMapping}
  4527.      *
  4528.      * @param restMediaTypeMapping Object to be serialized
  4529.      * @param prettyPrint if true output the XML with indenting
  4530.      * @return Object to be serialized as String
  4531.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4532.      */
  4533.     public String toString(RestMediaTypeMapping restMediaTypeMapping,boolean prettyPrint) throws SerializerException {
  4534.         return this.objToXml(RestMediaTypeMapping.class, restMediaTypeMapping, prettyPrint).toString();
  4535.     }
  4536.    
  4537.    
  4538.    
  4539.     /*
  4540.      =================================================================================
  4541.      Object: OrganizationTypes
  4542.      =================================================================================
  4543.     */
  4544.    
  4545.     /**
  4546.      * Serialize to file system in <var>fileName</var> the object <var>organizationTypes</var> of type {@link org.openspcoop2.protocol.manifest.OrganizationTypes}
  4547.      *
  4548.      * @param fileName Xml file to serialize the object <var>organizationTypes</var>
  4549.      * @param organizationTypes Object to be serialized in xml file <var>fileName</var>
  4550.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4551.      */
  4552.     public void write(String fileName,OrganizationTypes organizationTypes) throws SerializerException {
  4553.         this.objToXml(fileName, OrganizationTypes.class, organizationTypes, false);
  4554.     }
  4555.     /**
  4556.      * Serialize to file system in <var>fileName</var> the object <var>organizationTypes</var> of type {@link org.openspcoop2.protocol.manifest.OrganizationTypes}
  4557.      *
  4558.      * @param fileName Xml file to serialize the object <var>organizationTypes</var>
  4559.      * @param organizationTypes Object to be serialized in xml file <var>fileName</var>
  4560.      * @param prettyPrint if true output the XML with indenting
  4561.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4562.      */
  4563.     public void write(String fileName,OrganizationTypes organizationTypes,boolean prettyPrint) throws SerializerException {
  4564.         this.objToXml(fileName, OrganizationTypes.class, organizationTypes, prettyPrint);
  4565.     }
  4566.    
  4567.     /**
  4568.      * Serialize to file system in <var>file</var> the object <var>organizationTypes</var> of type {@link org.openspcoop2.protocol.manifest.OrganizationTypes}
  4569.      *
  4570.      * @param file Xml file to serialize the object <var>organizationTypes</var>
  4571.      * @param organizationTypes Object to be serialized in xml file <var>fileName</var>
  4572.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4573.      */
  4574.     public void write(File file,OrganizationTypes organizationTypes) throws SerializerException {
  4575.         this.objToXml(file, OrganizationTypes.class, organizationTypes, false);
  4576.     }
  4577.     /**
  4578.      * Serialize to file system in <var>file</var> the object <var>organizationTypes</var> of type {@link org.openspcoop2.protocol.manifest.OrganizationTypes}
  4579.      *
  4580.      * @param file Xml file to serialize the object <var>organizationTypes</var>
  4581.      * @param organizationTypes Object to be serialized in xml file <var>fileName</var>
  4582.      * @param prettyPrint if true output the XML with indenting
  4583.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4584.      */
  4585.     public void write(File file,OrganizationTypes organizationTypes,boolean prettyPrint) throws SerializerException {
  4586.         this.objToXml(file, OrganizationTypes.class, organizationTypes, prettyPrint);
  4587.     }
  4588.    
  4589.     /**
  4590.      * Serialize to output stream <var>out</var> the object <var>organizationTypes</var> of type {@link org.openspcoop2.protocol.manifest.OrganizationTypes}
  4591.      *
  4592.      * @param out OutputStream to serialize the object <var>organizationTypes</var>
  4593.      * @param organizationTypes Object to be serialized in xml file <var>fileName</var>
  4594.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4595.      */
  4596.     public void write(OutputStream out,OrganizationTypes organizationTypes) throws SerializerException {
  4597.         this.objToXml(out, OrganizationTypes.class, organizationTypes, false);
  4598.     }
  4599.     /**
  4600.      * Serialize to output stream <var>out</var> the object <var>organizationTypes</var> of type {@link org.openspcoop2.protocol.manifest.OrganizationTypes}
  4601.      *
  4602.      * @param out OutputStream to serialize the object <var>organizationTypes</var>
  4603.      * @param organizationTypes Object to be serialized in xml file <var>fileName</var>
  4604.      * @param prettyPrint if true output the XML with indenting
  4605.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4606.      */
  4607.     public void write(OutputStream out,OrganizationTypes organizationTypes,boolean prettyPrint) throws SerializerException {
  4608.         this.objToXml(out, OrganizationTypes.class, organizationTypes, prettyPrint);
  4609.     }
  4610.            
  4611.     /**
  4612.      * Serialize to byte array the object <var>organizationTypes</var> of type {@link org.openspcoop2.protocol.manifest.OrganizationTypes}
  4613.      *
  4614.      * @param organizationTypes Object to be serialized
  4615.      * @return Object to be serialized in byte array
  4616.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4617.      */
  4618.     public byte[] toByteArray(OrganizationTypes organizationTypes) throws SerializerException {
  4619.         return this.objToXml(OrganizationTypes.class, organizationTypes, false).toByteArray();
  4620.     }
  4621.     /**
  4622.      * Serialize to byte array the object <var>organizationTypes</var> of type {@link org.openspcoop2.protocol.manifest.OrganizationTypes}
  4623.      *
  4624.      * @param organizationTypes Object to be serialized
  4625.      * @param prettyPrint if true output the XML with indenting
  4626.      * @return Object to be serialized in byte array
  4627.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4628.      */
  4629.     public byte[] toByteArray(OrganizationTypes organizationTypes,boolean prettyPrint) throws SerializerException {
  4630.         return this.objToXml(OrganizationTypes.class, organizationTypes, prettyPrint).toByteArray();
  4631.     }
  4632.    
  4633.     /**
  4634.      * Serialize to String the object <var>organizationTypes</var> of type {@link org.openspcoop2.protocol.manifest.OrganizationTypes}
  4635.      *
  4636.      * @param organizationTypes Object to be serialized
  4637.      * @return Object to be serialized as String
  4638.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4639.      */
  4640.     public String toString(OrganizationTypes organizationTypes) throws SerializerException {
  4641.         return this.objToXml(OrganizationTypes.class, organizationTypes, false).toString();
  4642.     }
  4643.     /**
  4644.      * Serialize to String the object <var>organizationTypes</var> of type {@link org.openspcoop2.protocol.manifest.OrganizationTypes}
  4645.      *
  4646.      * @param organizationTypes Object to be serialized
  4647.      * @param prettyPrint if true output the XML with indenting
  4648.      * @return Object to be serialized as String
  4649.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4650.      */
  4651.     public String toString(OrganizationTypes organizationTypes,boolean prettyPrint) throws SerializerException {
  4652.         return this.objToXml(OrganizationTypes.class, organizationTypes, prettyPrint).toString();
  4653.     }
  4654.    
  4655.    
  4656.    
  4657.     /*
  4658.      =================================================================================
  4659.      Object: InterfaceConfiguration
  4660.      =================================================================================
  4661.     */
  4662.    
  4663.     /**
  4664.      * Serialize to file system in <var>fileName</var> the object <var>interfaceConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.InterfaceConfiguration}
  4665.      *
  4666.      * @param fileName Xml file to serialize the object <var>interfaceConfiguration</var>
  4667.      * @param interfaceConfiguration Object to be serialized in xml file <var>fileName</var>
  4668.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4669.      */
  4670.     public void write(String fileName,InterfaceConfiguration interfaceConfiguration) throws SerializerException {
  4671.         this.objToXml(fileName, InterfaceConfiguration.class, interfaceConfiguration, false);
  4672.     }
  4673.     /**
  4674.      * Serialize to file system in <var>fileName</var> the object <var>interfaceConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.InterfaceConfiguration}
  4675.      *
  4676.      * @param fileName Xml file to serialize the object <var>interfaceConfiguration</var>
  4677.      * @param interfaceConfiguration Object to be serialized in xml file <var>fileName</var>
  4678.      * @param prettyPrint if true output the XML with indenting
  4679.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4680.      */
  4681.     public void write(String fileName,InterfaceConfiguration interfaceConfiguration,boolean prettyPrint) throws SerializerException {
  4682.         this.objToXml(fileName, InterfaceConfiguration.class, interfaceConfiguration, prettyPrint);
  4683.     }
  4684.    
  4685.     /**
  4686.      * Serialize to file system in <var>file</var> the object <var>interfaceConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.InterfaceConfiguration}
  4687.      *
  4688.      * @param file Xml file to serialize the object <var>interfaceConfiguration</var>
  4689.      * @param interfaceConfiguration Object to be serialized in xml file <var>fileName</var>
  4690.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4691.      */
  4692.     public void write(File file,InterfaceConfiguration interfaceConfiguration) throws SerializerException {
  4693.         this.objToXml(file, InterfaceConfiguration.class, interfaceConfiguration, false);
  4694.     }
  4695.     /**
  4696.      * Serialize to file system in <var>file</var> the object <var>interfaceConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.InterfaceConfiguration}
  4697.      *
  4698.      * @param file Xml file to serialize the object <var>interfaceConfiguration</var>
  4699.      * @param interfaceConfiguration Object to be serialized in xml file <var>fileName</var>
  4700.      * @param prettyPrint if true output the XML with indenting
  4701.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4702.      */
  4703.     public void write(File file,InterfaceConfiguration interfaceConfiguration,boolean prettyPrint) throws SerializerException {
  4704.         this.objToXml(file, InterfaceConfiguration.class, interfaceConfiguration, prettyPrint);
  4705.     }
  4706.    
  4707.     /**
  4708.      * Serialize to output stream <var>out</var> the object <var>interfaceConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.InterfaceConfiguration}
  4709.      *
  4710.      * @param out OutputStream to serialize the object <var>interfaceConfiguration</var>
  4711.      * @param interfaceConfiguration Object to be serialized in xml file <var>fileName</var>
  4712.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4713.      */
  4714.     public void write(OutputStream out,InterfaceConfiguration interfaceConfiguration) throws SerializerException {
  4715.         this.objToXml(out, InterfaceConfiguration.class, interfaceConfiguration, false);
  4716.     }
  4717.     /**
  4718.      * Serialize to output stream <var>out</var> the object <var>interfaceConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.InterfaceConfiguration}
  4719.      *
  4720.      * @param out OutputStream to serialize the object <var>interfaceConfiguration</var>
  4721.      * @param interfaceConfiguration Object to be serialized in xml file <var>fileName</var>
  4722.      * @param prettyPrint if true output the XML with indenting
  4723.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4724.      */
  4725.     public void write(OutputStream out,InterfaceConfiguration interfaceConfiguration,boolean prettyPrint) throws SerializerException {
  4726.         this.objToXml(out, InterfaceConfiguration.class, interfaceConfiguration, prettyPrint);
  4727.     }
  4728.            
  4729.     /**
  4730.      * Serialize to byte array the object <var>interfaceConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.InterfaceConfiguration}
  4731.      *
  4732.      * @param interfaceConfiguration Object to be serialized
  4733.      * @return Object to be serialized in byte array
  4734.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4735.      */
  4736.     public byte[] toByteArray(InterfaceConfiguration interfaceConfiguration) throws SerializerException {
  4737.         return this.objToXml(InterfaceConfiguration.class, interfaceConfiguration, false).toByteArray();
  4738.     }
  4739.     /**
  4740.      * Serialize to byte array the object <var>interfaceConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.InterfaceConfiguration}
  4741.      *
  4742.      * @param interfaceConfiguration Object to be serialized
  4743.      * @param prettyPrint if true output the XML with indenting
  4744.      * @return Object to be serialized in byte array
  4745.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4746.      */
  4747.     public byte[] toByteArray(InterfaceConfiguration interfaceConfiguration,boolean prettyPrint) throws SerializerException {
  4748.         return this.objToXml(InterfaceConfiguration.class, interfaceConfiguration, prettyPrint).toByteArray();
  4749.     }
  4750.    
  4751.     /**
  4752.      * Serialize to String the object <var>interfaceConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.InterfaceConfiguration}
  4753.      *
  4754.      * @param interfaceConfiguration Object to be serialized
  4755.      * @return Object to be serialized as String
  4756.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4757.      */
  4758.     public String toString(InterfaceConfiguration interfaceConfiguration) throws SerializerException {
  4759.         return this.objToXml(InterfaceConfiguration.class, interfaceConfiguration, false).toString();
  4760.     }
  4761.     /**
  4762.      * Serialize to String the object <var>interfaceConfiguration</var> of type {@link org.openspcoop2.protocol.manifest.InterfaceConfiguration}
  4763.      *
  4764.      * @param interfaceConfiguration Object to be serialized
  4765.      * @param prettyPrint if true output the XML with indenting
  4766.      * @return Object to be serialized as String
  4767.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4768.      */
  4769.     public String toString(InterfaceConfiguration interfaceConfiguration,boolean prettyPrint) throws SerializerException {
  4770.         return this.objToXml(InterfaceConfiguration.class, interfaceConfiguration, prettyPrint).toString();
  4771.     }
  4772.    
  4773.    
  4774.    
  4775.     /*
  4776.      =================================================================================
  4777.      Object: Version
  4778.      =================================================================================
  4779.     */
  4780.    
  4781.     /**
  4782.      * Serialize to file system in <var>fileName</var> the object <var>version</var> of type {@link org.openspcoop2.protocol.manifest.Version}
  4783.      *
  4784.      * @param fileName Xml file to serialize the object <var>version</var>
  4785.      * @param version Object to be serialized in xml file <var>fileName</var>
  4786.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4787.      */
  4788.     public void write(String fileName,Version version) throws SerializerException {
  4789.         this.objToXml(fileName, Version.class, version, false);
  4790.     }
  4791.     /**
  4792.      * Serialize to file system in <var>fileName</var> the object <var>version</var> of type {@link org.openspcoop2.protocol.manifest.Version}
  4793.      *
  4794.      * @param fileName Xml file to serialize the object <var>version</var>
  4795.      * @param version Object to be serialized in xml file <var>fileName</var>
  4796.      * @param prettyPrint if true output the XML with indenting
  4797.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4798.      */
  4799.     public void write(String fileName,Version version,boolean prettyPrint) throws SerializerException {
  4800.         this.objToXml(fileName, Version.class, version, prettyPrint);
  4801.     }
  4802.    
  4803.     /**
  4804.      * Serialize to file system in <var>file</var> the object <var>version</var> of type {@link org.openspcoop2.protocol.manifest.Version}
  4805.      *
  4806.      * @param file Xml file to serialize the object <var>version</var>
  4807.      * @param version Object to be serialized in xml file <var>fileName</var>
  4808.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4809.      */
  4810.     public void write(File file,Version version) throws SerializerException {
  4811.         this.objToXml(file, Version.class, version, false);
  4812.     }
  4813.     /**
  4814.      * Serialize to file system in <var>file</var> the object <var>version</var> of type {@link org.openspcoop2.protocol.manifest.Version}
  4815.      *
  4816.      * @param file Xml file to serialize the object <var>version</var>
  4817.      * @param version Object to be serialized in xml file <var>fileName</var>
  4818.      * @param prettyPrint if true output the XML with indenting
  4819.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4820.      */
  4821.     public void write(File file,Version version,boolean prettyPrint) throws SerializerException {
  4822.         this.objToXml(file, Version.class, version, prettyPrint);
  4823.     }
  4824.    
  4825.     /**
  4826.      * Serialize to output stream <var>out</var> the object <var>version</var> of type {@link org.openspcoop2.protocol.manifest.Version}
  4827.      *
  4828.      * @param out OutputStream to serialize the object <var>version</var>
  4829.      * @param version Object to be serialized in xml file <var>fileName</var>
  4830.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4831.      */
  4832.     public void write(OutputStream out,Version version) throws SerializerException {
  4833.         this.objToXml(out, Version.class, version, false);
  4834.     }
  4835.     /**
  4836.      * Serialize to output stream <var>out</var> the object <var>version</var> of type {@link org.openspcoop2.protocol.manifest.Version}
  4837.      *
  4838.      * @param out OutputStream to serialize the object <var>version</var>
  4839.      * @param version Object to be serialized in xml file <var>fileName</var>
  4840.      * @param prettyPrint if true output the XML with indenting
  4841.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4842.      */
  4843.     public void write(OutputStream out,Version version,boolean prettyPrint) throws SerializerException {
  4844.         this.objToXml(out, Version.class, version, prettyPrint);
  4845.     }
  4846.            
  4847.     /**
  4848.      * Serialize to byte array the object <var>version</var> of type {@link org.openspcoop2.protocol.manifest.Version}
  4849.      *
  4850.      * @param version Object to be serialized
  4851.      * @return Object to be serialized in byte array
  4852.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4853.      */
  4854.     public byte[] toByteArray(Version version) throws SerializerException {
  4855.         return this.objToXml(Version.class, version, false).toByteArray();
  4856.     }
  4857.     /**
  4858.      * Serialize to byte array the object <var>version</var> of type {@link org.openspcoop2.protocol.manifest.Version}
  4859.      *
  4860.      * @param version Object to be serialized
  4861.      * @param prettyPrint if true output the XML with indenting
  4862.      * @return Object to be serialized in byte array
  4863.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4864.      */
  4865.     public byte[] toByteArray(Version version,boolean prettyPrint) throws SerializerException {
  4866.         return this.objToXml(Version.class, version, prettyPrint).toByteArray();
  4867.     }
  4868.    
  4869.     /**
  4870.      * Serialize to String the object <var>version</var> of type {@link org.openspcoop2.protocol.manifest.Version}
  4871.      *
  4872.      * @param version Object to be serialized
  4873.      * @return Object to be serialized as String
  4874.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4875.      */
  4876.     public String toString(Version version) throws SerializerException {
  4877.         return this.objToXml(Version.class, version, false).toString();
  4878.     }
  4879.     /**
  4880.      * Serialize to String the object <var>version</var> of type {@link org.openspcoop2.protocol.manifest.Version}
  4881.      *
  4882.      * @param version Object to be serialized
  4883.      * @param prettyPrint if true output the XML with indenting
  4884.      * @return Object to be serialized as String
  4885.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4886.      */
  4887.     public String toString(Version version,boolean prettyPrint) throws SerializerException {
  4888.         return this.objToXml(Version.class, version, prettyPrint).toString();
  4889.     }
  4890.    
  4891.    
  4892.    
  4893.     /*
  4894.      =================================================================================
  4895.      Object: CollaborationProfile
  4896.      =================================================================================
  4897.     */
  4898.    
  4899.     /**
  4900.      * Serialize to file system in <var>fileName</var> the object <var>collaborationProfile</var> of type {@link org.openspcoop2.protocol.manifest.CollaborationProfile}
  4901.      *
  4902.      * @param fileName Xml file to serialize the object <var>collaborationProfile</var>
  4903.      * @param collaborationProfile Object to be serialized in xml file <var>fileName</var>
  4904.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4905.      */
  4906.     public void write(String fileName,CollaborationProfile collaborationProfile) throws SerializerException {
  4907.         this.objToXml(fileName, CollaborationProfile.class, collaborationProfile, false);
  4908.     }
  4909.     /**
  4910.      * Serialize to file system in <var>fileName</var> the object <var>collaborationProfile</var> of type {@link org.openspcoop2.protocol.manifest.CollaborationProfile}
  4911.      *
  4912.      * @param fileName Xml file to serialize the object <var>collaborationProfile</var>
  4913.      * @param collaborationProfile Object to be serialized in xml file <var>fileName</var>
  4914.      * @param prettyPrint if true output the XML with indenting
  4915.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4916.      */
  4917.     public void write(String fileName,CollaborationProfile collaborationProfile,boolean prettyPrint) throws SerializerException {
  4918.         this.objToXml(fileName, CollaborationProfile.class, collaborationProfile, prettyPrint);
  4919.     }
  4920.    
  4921.     /**
  4922.      * Serialize to file system in <var>file</var> the object <var>collaborationProfile</var> of type {@link org.openspcoop2.protocol.manifest.CollaborationProfile}
  4923.      *
  4924.      * @param file Xml file to serialize the object <var>collaborationProfile</var>
  4925.      * @param collaborationProfile Object to be serialized in xml file <var>fileName</var>
  4926.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4927.      */
  4928.     public void write(File file,CollaborationProfile collaborationProfile) throws SerializerException {
  4929.         this.objToXml(file, CollaborationProfile.class, collaborationProfile, false);
  4930.     }
  4931.     /**
  4932.      * Serialize to file system in <var>file</var> the object <var>collaborationProfile</var> of type {@link org.openspcoop2.protocol.manifest.CollaborationProfile}
  4933.      *
  4934.      * @param file Xml file to serialize the object <var>collaborationProfile</var>
  4935.      * @param collaborationProfile Object to be serialized in xml file <var>fileName</var>
  4936.      * @param prettyPrint if true output the XML with indenting
  4937.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4938.      */
  4939.     public void write(File file,CollaborationProfile collaborationProfile,boolean prettyPrint) throws SerializerException {
  4940.         this.objToXml(file, CollaborationProfile.class, collaborationProfile, prettyPrint);
  4941.     }
  4942.    
  4943.     /**
  4944.      * Serialize to output stream <var>out</var> the object <var>collaborationProfile</var> of type {@link org.openspcoop2.protocol.manifest.CollaborationProfile}
  4945.      *
  4946.      * @param out OutputStream to serialize the object <var>collaborationProfile</var>
  4947.      * @param collaborationProfile Object to be serialized in xml file <var>fileName</var>
  4948.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4949.      */
  4950.     public void write(OutputStream out,CollaborationProfile collaborationProfile) throws SerializerException {
  4951.         this.objToXml(out, CollaborationProfile.class, collaborationProfile, false);
  4952.     }
  4953.     /**
  4954.      * Serialize to output stream <var>out</var> the object <var>collaborationProfile</var> of type {@link org.openspcoop2.protocol.manifest.CollaborationProfile}
  4955.      *
  4956.      * @param out OutputStream to serialize the object <var>collaborationProfile</var>
  4957.      * @param collaborationProfile Object to be serialized in xml file <var>fileName</var>
  4958.      * @param prettyPrint if true output the XML with indenting
  4959.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4960.      */
  4961.     public void write(OutputStream out,CollaborationProfile collaborationProfile,boolean prettyPrint) throws SerializerException {
  4962.         this.objToXml(out, CollaborationProfile.class, collaborationProfile, prettyPrint);
  4963.     }
  4964.            
  4965.     /**
  4966.      * Serialize to byte array the object <var>collaborationProfile</var> of type {@link org.openspcoop2.protocol.manifest.CollaborationProfile}
  4967.      *
  4968.      * @param collaborationProfile Object to be serialized
  4969.      * @return Object to be serialized in byte array
  4970.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4971.      */
  4972.     public byte[] toByteArray(CollaborationProfile collaborationProfile) throws SerializerException {
  4973.         return this.objToXml(CollaborationProfile.class, collaborationProfile, false).toByteArray();
  4974.     }
  4975.     /**
  4976.      * Serialize to byte array the object <var>collaborationProfile</var> of type {@link org.openspcoop2.protocol.manifest.CollaborationProfile}
  4977.      *
  4978.      * @param collaborationProfile Object to be serialized
  4979.      * @param prettyPrint if true output the XML with indenting
  4980.      * @return Object to be serialized in byte array
  4981.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4982.      */
  4983.     public byte[] toByteArray(CollaborationProfile collaborationProfile,boolean prettyPrint) throws SerializerException {
  4984.         return this.objToXml(CollaborationProfile.class, collaborationProfile, prettyPrint).toByteArray();
  4985.     }
  4986.    
  4987.     /**
  4988.      * Serialize to String the object <var>collaborationProfile</var> of type {@link org.openspcoop2.protocol.manifest.CollaborationProfile}
  4989.      *
  4990.      * @param collaborationProfile Object to be serialized
  4991.      * @return Object to be serialized as String
  4992.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  4993.      */
  4994.     public String toString(CollaborationProfile collaborationProfile) throws SerializerException {
  4995.         return this.objToXml(CollaborationProfile.class, collaborationProfile, false).toString();
  4996.     }
  4997.     /**
  4998.      * Serialize to String the object <var>collaborationProfile</var> of type {@link org.openspcoop2.protocol.manifest.CollaborationProfile}
  4999.      *
  5000.      * @param collaborationProfile Object to be serialized
  5001.      * @param prettyPrint if true output the XML with indenting
  5002.      * @return Object to be serialized as String
  5003.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5004.      */
  5005.     public String toString(CollaborationProfile collaborationProfile,boolean prettyPrint) throws SerializerException {
  5006.         return this.objToXml(CollaborationProfile.class, collaborationProfile, prettyPrint).toString();
  5007.     }
  5008.    
  5009.    
  5010.    
  5011.     /*
  5012.      =================================================================================
  5013.      Object: ServiceType
  5014.      =================================================================================
  5015.     */
  5016.    
  5017.     /**
  5018.      * Serialize to file system in <var>fileName</var> the object <var>serviceType</var> of type {@link org.openspcoop2.protocol.manifest.ServiceType}
  5019.      *
  5020.      * @param fileName Xml file to serialize the object <var>serviceType</var>
  5021.      * @param serviceType Object to be serialized in xml file <var>fileName</var>
  5022.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5023.      */
  5024.     public void write(String fileName,ServiceType serviceType) throws SerializerException {
  5025.         this.objToXml(fileName, ServiceType.class, serviceType, false);
  5026.     }
  5027.     /**
  5028.      * Serialize to file system in <var>fileName</var> the object <var>serviceType</var> of type {@link org.openspcoop2.protocol.manifest.ServiceType}
  5029.      *
  5030.      * @param fileName Xml file to serialize the object <var>serviceType</var>
  5031.      * @param serviceType Object to be serialized in xml file <var>fileName</var>
  5032.      * @param prettyPrint if true output the XML with indenting
  5033.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5034.      */
  5035.     public void write(String fileName,ServiceType serviceType,boolean prettyPrint) throws SerializerException {
  5036.         this.objToXml(fileName, ServiceType.class, serviceType, prettyPrint);
  5037.     }
  5038.    
  5039.     /**
  5040.      * Serialize to file system in <var>file</var> the object <var>serviceType</var> of type {@link org.openspcoop2.protocol.manifest.ServiceType}
  5041.      *
  5042.      * @param file Xml file to serialize the object <var>serviceType</var>
  5043.      * @param serviceType Object to be serialized in xml file <var>fileName</var>
  5044.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5045.      */
  5046.     public void write(File file,ServiceType serviceType) throws SerializerException {
  5047.         this.objToXml(file, ServiceType.class, serviceType, false);
  5048.     }
  5049.     /**
  5050.      * Serialize to file system in <var>file</var> the object <var>serviceType</var> of type {@link org.openspcoop2.protocol.manifest.ServiceType}
  5051.      *
  5052.      * @param file Xml file to serialize the object <var>serviceType</var>
  5053.      * @param serviceType Object to be serialized in xml file <var>fileName</var>
  5054.      * @param prettyPrint if true output the XML with indenting
  5055.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5056.      */
  5057.     public void write(File file,ServiceType serviceType,boolean prettyPrint) throws SerializerException {
  5058.         this.objToXml(file, ServiceType.class, serviceType, prettyPrint);
  5059.     }
  5060.    
  5061.     /**
  5062.      * Serialize to output stream <var>out</var> the object <var>serviceType</var> of type {@link org.openspcoop2.protocol.manifest.ServiceType}
  5063.      *
  5064.      * @param out OutputStream to serialize the object <var>serviceType</var>
  5065.      * @param serviceType Object to be serialized in xml file <var>fileName</var>
  5066.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5067.      */
  5068.     public void write(OutputStream out,ServiceType serviceType) throws SerializerException {
  5069.         this.objToXml(out, ServiceType.class, serviceType, false);
  5070.     }
  5071.     /**
  5072.      * Serialize to output stream <var>out</var> the object <var>serviceType</var> of type {@link org.openspcoop2.protocol.manifest.ServiceType}
  5073.      *
  5074.      * @param out OutputStream to serialize the object <var>serviceType</var>
  5075.      * @param serviceType Object to be serialized in xml file <var>fileName</var>
  5076.      * @param prettyPrint if true output the XML with indenting
  5077.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5078.      */
  5079.     public void write(OutputStream out,ServiceType serviceType,boolean prettyPrint) throws SerializerException {
  5080.         this.objToXml(out, ServiceType.class, serviceType, prettyPrint);
  5081.     }
  5082.            
  5083.     /**
  5084.      * Serialize to byte array the object <var>serviceType</var> of type {@link org.openspcoop2.protocol.manifest.ServiceType}
  5085.      *
  5086.      * @param serviceType Object to be serialized
  5087.      * @return Object to be serialized in byte array
  5088.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5089.      */
  5090.     public byte[] toByteArray(ServiceType serviceType) throws SerializerException {
  5091.         return this.objToXml(ServiceType.class, serviceType, false).toByteArray();
  5092.     }
  5093.     /**
  5094.      * Serialize to byte array the object <var>serviceType</var> of type {@link org.openspcoop2.protocol.manifest.ServiceType}
  5095.      *
  5096.      * @param serviceType Object to be serialized
  5097.      * @param prettyPrint if true output the XML with indenting
  5098.      * @return Object to be serialized in byte array
  5099.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5100.      */
  5101.     public byte[] toByteArray(ServiceType serviceType,boolean prettyPrint) throws SerializerException {
  5102.         return this.objToXml(ServiceType.class, serviceType, prettyPrint).toByteArray();
  5103.     }
  5104.    
  5105.     /**
  5106.      * Serialize to String the object <var>serviceType</var> of type {@link org.openspcoop2.protocol.manifest.ServiceType}
  5107.      *
  5108.      * @param serviceType Object to be serialized
  5109.      * @return Object to be serialized as String
  5110.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5111.      */
  5112.     public String toString(ServiceType serviceType) throws SerializerException {
  5113.         return this.objToXml(ServiceType.class, serviceType, false).toString();
  5114.     }
  5115.     /**
  5116.      * Serialize to String the object <var>serviceType</var> of type {@link org.openspcoop2.protocol.manifest.ServiceType}
  5117.      *
  5118.      * @param serviceType Object to be serialized
  5119.      * @param prettyPrint if true output the XML with indenting
  5120.      * @return Object to be serialized as String
  5121.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5122.      */
  5123.     public String toString(ServiceType serviceType,boolean prettyPrint) throws SerializerException {
  5124.         return this.objToXml(ServiceType.class, serviceType, prettyPrint).toString();
  5125.     }
  5126.    
  5127.    
  5128.    
  5129.     /*
  5130.      =================================================================================
  5131.      Object: transaction
  5132.      =================================================================================
  5133.     */
  5134.    
  5135.     /**
  5136.      * Serialize to file system in <var>fileName</var> the object <var>transaction</var> of type {@link org.openspcoop2.protocol.manifest.Transaction}
  5137.      *
  5138.      * @param fileName Xml file to serialize the object <var>transaction</var>
  5139.      * @param transaction Object to be serialized in xml file <var>fileName</var>
  5140.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5141.      */
  5142.     public void write(String fileName,Transaction transaction) throws SerializerException {
  5143.         this.objToXml(fileName, Transaction.class, transaction, false);
  5144.     }
  5145.     /**
  5146.      * Serialize to file system in <var>fileName</var> the object <var>transaction</var> of type {@link org.openspcoop2.protocol.manifest.Transaction}
  5147.      *
  5148.      * @param fileName Xml file to serialize the object <var>transaction</var>
  5149.      * @param transaction Object to be serialized in xml file <var>fileName</var>
  5150.      * @param prettyPrint if true output the XML with indenting
  5151.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5152.      */
  5153.     public void write(String fileName,Transaction transaction,boolean prettyPrint) throws SerializerException {
  5154.         this.objToXml(fileName, Transaction.class, transaction, prettyPrint);
  5155.     }
  5156.    
  5157.     /**
  5158.      * Serialize to file system in <var>file</var> the object <var>transaction</var> of type {@link org.openspcoop2.protocol.manifest.Transaction}
  5159.      *
  5160.      * @param file Xml file to serialize the object <var>transaction</var>
  5161.      * @param transaction Object to be serialized in xml file <var>fileName</var>
  5162.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5163.      */
  5164.     public void write(File file,Transaction transaction) throws SerializerException {
  5165.         this.objToXml(file, Transaction.class, transaction, false);
  5166.     }
  5167.     /**
  5168.      * Serialize to file system in <var>file</var> the object <var>transaction</var> of type {@link org.openspcoop2.protocol.manifest.Transaction}
  5169.      *
  5170.      * @param file Xml file to serialize the object <var>transaction</var>
  5171.      * @param transaction Object to be serialized in xml file <var>fileName</var>
  5172.      * @param prettyPrint if true output the XML with indenting
  5173.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5174.      */
  5175.     public void write(File file,Transaction transaction,boolean prettyPrint) throws SerializerException {
  5176.         this.objToXml(file, Transaction.class, transaction, prettyPrint);
  5177.     }
  5178.    
  5179.     /**
  5180.      * Serialize to output stream <var>out</var> the object <var>transaction</var> of type {@link org.openspcoop2.protocol.manifest.Transaction}
  5181.      *
  5182.      * @param out OutputStream to serialize the object <var>transaction</var>
  5183.      * @param transaction Object to be serialized in xml file <var>fileName</var>
  5184.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5185.      */
  5186.     public void write(OutputStream out,Transaction transaction) throws SerializerException {
  5187.         this.objToXml(out, Transaction.class, transaction, false);
  5188.     }
  5189.     /**
  5190.      * Serialize to output stream <var>out</var> the object <var>transaction</var> of type {@link org.openspcoop2.protocol.manifest.Transaction}
  5191.      *
  5192.      * @param out OutputStream to serialize the object <var>transaction</var>
  5193.      * @param transaction Object to be serialized in xml file <var>fileName</var>
  5194.      * @param prettyPrint if true output the XML with indenting
  5195.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5196.      */
  5197.     public void write(OutputStream out,Transaction transaction,boolean prettyPrint) throws SerializerException {
  5198.         this.objToXml(out, Transaction.class, transaction, prettyPrint);
  5199.     }
  5200.            
  5201.     /**
  5202.      * Serialize to byte array the object <var>transaction</var> of type {@link org.openspcoop2.protocol.manifest.Transaction}
  5203.      *
  5204.      * @param transaction Object to be serialized
  5205.      * @return Object to be serialized in byte array
  5206.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5207.      */
  5208.     public byte[] toByteArray(Transaction transaction) throws SerializerException {
  5209.         return this.objToXml(Transaction.class, transaction, false).toByteArray();
  5210.     }
  5211.     /**
  5212.      * Serialize to byte array the object <var>transaction</var> of type {@link org.openspcoop2.protocol.manifest.Transaction}
  5213.      *
  5214.      * @param transaction Object to be serialized
  5215.      * @param prettyPrint if true output the XML with indenting
  5216.      * @return Object to be serialized in byte array
  5217.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5218.      */
  5219.     public byte[] toByteArray(Transaction transaction,boolean prettyPrint) throws SerializerException {
  5220.         return this.objToXml(Transaction.class, transaction, prettyPrint).toByteArray();
  5221.     }
  5222.    
  5223.     /**
  5224.      * Serialize to String the object <var>transaction</var> of type {@link org.openspcoop2.protocol.manifest.Transaction}
  5225.      *
  5226.      * @param transaction Object to be serialized
  5227.      * @return Object to be serialized as String
  5228.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5229.      */
  5230.     public String toString(Transaction transaction) throws SerializerException {
  5231.         return this.objToXml(Transaction.class, transaction, false).toString();
  5232.     }
  5233.     /**
  5234.      * Serialize to String the object <var>transaction</var> of type {@link org.openspcoop2.protocol.manifest.Transaction}
  5235.      *
  5236.      * @param transaction Object to be serialized
  5237.      * @param prettyPrint if true output the XML with indenting
  5238.      * @return Object to be serialized as String
  5239.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5240.      */
  5241.     public String toString(Transaction transaction,boolean prettyPrint) throws SerializerException {
  5242.         return this.objToXml(Transaction.class, transaction, prettyPrint).toString();
  5243.     }
  5244.    
  5245.    
  5246.    
  5247.     /*
  5248.      =================================================================================
  5249.      Object: IntegrationConfigurationResourceIdentificationMode
  5250.      =================================================================================
  5251.     */
  5252.    
  5253.     /**
  5254.      * Serialize to file system in <var>fileName</var> the object <var>integrationConfigurationResourceIdentificationMode</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationMode}
  5255.      *
  5256.      * @param fileName Xml file to serialize the object <var>integrationConfigurationResourceIdentificationMode</var>
  5257.      * @param integrationConfigurationResourceIdentificationMode Object to be serialized in xml file <var>fileName</var>
  5258.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5259.      */
  5260.     public void write(String fileName,IntegrationConfigurationResourceIdentificationMode integrationConfigurationResourceIdentificationMode) throws SerializerException {
  5261.         this.objToXml(fileName, IntegrationConfigurationResourceIdentificationMode.class, integrationConfigurationResourceIdentificationMode, false);
  5262.     }
  5263.     /**
  5264.      * Serialize to file system in <var>fileName</var> the object <var>integrationConfigurationResourceIdentificationMode</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationMode}
  5265.      *
  5266.      * @param fileName Xml file to serialize the object <var>integrationConfigurationResourceIdentificationMode</var>
  5267.      * @param integrationConfigurationResourceIdentificationMode Object to be serialized in xml file <var>fileName</var>
  5268.      * @param prettyPrint if true output the XML with indenting
  5269.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5270.      */
  5271.     public void write(String fileName,IntegrationConfigurationResourceIdentificationMode integrationConfigurationResourceIdentificationMode,boolean prettyPrint) throws SerializerException {
  5272.         this.objToXml(fileName, IntegrationConfigurationResourceIdentificationMode.class, integrationConfigurationResourceIdentificationMode, prettyPrint);
  5273.     }
  5274.    
  5275.     /**
  5276.      * Serialize to file system in <var>file</var> the object <var>integrationConfigurationResourceIdentificationMode</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationMode}
  5277.      *
  5278.      * @param file Xml file to serialize the object <var>integrationConfigurationResourceIdentificationMode</var>
  5279.      * @param integrationConfigurationResourceIdentificationMode Object to be serialized in xml file <var>fileName</var>
  5280.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5281.      */
  5282.     public void write(File file,IntegrationConfigurationResourceIdentificationMode integrationConfigurationResourceIdentificationMode) throws SerializerException {
  5283.         this.objToXml(file, IntegrationConfigurationResourceIdentificationMode.class, integrationConfigurationResourceIdentificationMode, false);
  5284.     }
  5285.     /**
  5286.      * Serialize to file system in <var>file</var> the object <var>integrationConfigurationResourceIdentificationMode</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationMode}
  5287.      *
  5288.      * @param file Xml file to serialize the object <var>integrationConfigurationResourceIdentificationMode</var>
  5289.      * @param integrationConfigurationResourceIdentificationMode Object to be serialized in xml file <var>fileName</var>
  5290.      * @param prettyPrint if true output the XML with indenting
  5291.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5292.      */
  5293.     public void write(File file,IntegrationConfigurationResourceIdentificationMode integrationConfigurationResourceIdentificationMode,boolean prettyPrint) throws SerializerException {
  5294.         this.objToXml(file, IntegrationConfigurationResourceIdentificationMode.class, integrationConfigurationResourceIdentificationMode, prettyPrint);
  5295.     }
  5296.    
  5297.     /**
  5298.      * Serialize to output stream <var>out</var> the object <var>integrationConfigurationResourceIdentificationMode</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationMode}
  5299.      *
  5300.      * @param out OutputStream to serialize the object <var>integrationConfigurationResourceIdentificationMode</var>
  5301.      * @param integrationConfigurationResourceIdentificationMode Object to be serialized in xml file <var>fileName</var>
  5302.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5303.      */
  5304.     public void write(OutputStream out,IntegrationConfigurationResourceIdentificationMode integrationConfigurationResourceIdentificationMode) throws SerializerException {
  5305.         this.objToXml(out, IntegrationConfigurationResourceIdentificationMode.class, integrationConfigurationResourceIdentificationMode, false);
  5306.     }
  5307.     /**
  5308.      * Serialize to output stream <var>out</var> the object <var>integrationConfigurationResourceIdentificationMode</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationMode}
  5309.      *
  5310.      * @param out OutputStream to serialize the object <var>integrationConfigurationResourceIdentificationMode</var>
  5311.      * @param integrationConfigurationResourceIdentificationMode Object to be serialized in xml file <var>fileName</var>
  5312.      * @param prettyPrint if true output the XML with indenting
  5313.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5314.      */
  5315.     public void write(OutputStream out,IntegrationConfigurationResourceIdentificationMode integrationConfigurationResourceIdentificationMode,boolean prettyPrint) throws SerializerException {
  5316.         this.objToXml(out, IntegrationConfigurationResourceIdentificationMode.class, integrationConfigurationResourceIdentificationMode, prettyPrint);
  5317.     }
  5318.            
  5319.     /**
  5320.      * Serialize to byte array the object <var>integrationConfigurationResourceIdentificationMode</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationMode}
  5321.      *
  5322.      * @param integrationConfigurationResourceIdentificationMode Object to be serialized
  5323.      * @return Object to be serialized in byte array
  5324.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5325.      */
  5326.     public byte[] toByteArray(IntegrationConfigurationResourceIdentificationMode integrationConfigurationResourceIdentificationMode) throws SerializerException {
  5327.         return this.objToXml(IntegrationConfigurationResourceIdentificationMode.class, integrationConfigurationResourceIdentificationMode, false).toByteArray();
  5328.     }
  5329.     /**
  5330.      * Serialize to byte array the object <var>integrationConfigurationResourceIdentificationMode</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationMode}
  5331.      *
  5332.      * @param integrationConfigurationResourceIdentificationMode Object to be serialized
  5333.      * @param prettyPrint if true output the XML with indenting
  5334.      * @return Object to be serialized in byte array
  5335.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5336.      */
  5337.     public byte[] toByteArray(IntegrationConfigurationResourceIdentificationMode integrationConfigurationResourceIdentificationMode,boolean prettyPrint) throws SerializerException {
  5338.         return this.objToXml(IntegrationConfigurationResourceIdentificationMode.class, integrationConfigurationResourceIdentificationMode, prettyPrint).toByteArray();
  5339.     }
  5340.    
  5341.     /**
  5342.      * Serialize to String the object <var>integrationConfigurationResourceIdentificationMode</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationMode}
  5343.      *
  5344.      * @param integrationConfigurationResourceIdentificationMode Object to be serialized
  5345.      * @return Object to be serialized as String
  5346.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5347.      */
  5348.     public String toString(IntegrationConfigurationResourceIdentificationMode integrationConfigurationResourceIdentificationMode) throws SerializerException {
  5349.         return this.objToXml(IntegrationConfigurationResourceIdentificationMode.class, integrationConfigurationResourceIdentificationMode, false).toString();
  5350.     }
  5351.     /**
  5352.      * Serialize to String the object <var>integrationConfigurationResourceIdentificationMode</var> of type {@link org.openspcoop2.protocol.manifest.IntegrationConfigurationResourceIdentificationMode}
  5353.      *
  5354.      * @param integrationConfigurationResourceIdentificationMode Object to be serialized
  5355.      * @param prettyPrint if true output the XML with indenting
  5356.      * @return Object to be serialized as String
  5357.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5358.      */
  5359.     public String toString(IntegrationConfigurationResourceIdentificationMode integrationConfigurationResourceIdentificationMode,boolean prettyPrint) throws SerializerException {
  5360.         return this.objToXml(IntegrationConfigurationResourceIdentificationMode.class, integrationConfigurationResourceIdentificationMode, prettyPrint).toString();
  5361.     }
  5362.    
  5363.    
  5364.    
  5365.     /*
  5366.      =================================================================================
  5367.      Object: RFC7807
  5368.      =================================================================================
  5369.     */
  5370.    
  5371.     /**
  5372.      * Serialize to file system in <var>fileName</var> the object <var>rfC7807</var> of type {@link org.openspcoop2.protocol.manifest.RFC7807}
  5373.      *
  5374.      * @param fileName Xml file to serialize the object <var>rfC7807</var>
  5375.      * @param rfC7807 Object to be serialized in xml file <var>fileName</var>
  5376.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5377.      */
  5378.     public void write(String fileName,RFC7807 rfC7807) throws SerializerException {
  5379.         this.objToXml(fileName, RFC7807.class, rfC7807, false);
  5380.     }
  5381.     /**
  5382.      * Serialize to file system in <var>fileName</var> the object <var>rfC7807</var> of type {@link org.openspcoop2.protocol.manifest.RFC7807}
  5383.      *
  5384.      * @param fileName Xml file to serialize the object <var>rfC7807</var>
  5385.      * @param rfC7807 Object to be serialized in xml file <var>fileName</var>
  5386.      * @param prettyPrint if true output the XML with indenting
  5387.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5388.      */
  5389.     public void write(String fileName,RFC7807 rfC7807,boolean prettyPrint) throws SerializerException {
  5390.         this.objToXml(fileName, RFC7807.class, rfC7807, prettyPrint);
  5391.     }
  5392.    
  5393.     /**
  5394.      * Serialize to file system in <var>file</var> the object <var>rfC7807</var> of type {@link org.openspcoop2.protocol.manifest.RFC7807}
  5395.      *
  5396.      * @param file Xml file to serialize the object <var>rfC7807</var>
  5397.      * @param rfC7807 Object to be serialized in xml file <var>fileName</var>
  5398.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5399.      */
  5400.     public void write(File file,RFC7807 rfC7807) throws SerializerException {
  5401.         this.objToXml(file, RFC7807.class, rfC7807, false);
  5402.     }
  5403.     /**
  5404.      * Serialize to file system in <var>file</var> the object <var>rfC7807</var> of type {@link org.openspcoop2.protocol.manifest.RFC7807}
  5405.      *
  5406.      * @param file Xml file to serialize the object <var>rfC7807</var>
  5407.      * @param rfC7807 Object to be serialized in xml file <var>fileName</var>
  5408.      * @param prettyPrint if true output the XML with indenting
  5409.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5410.      */
  5411.     public void write(File file,RFC7807 rfC7807,boolean prettyPrint) throws SerializerException {
  5412.         this.objToXml(file, RFC7807.class, rfC7807, prettyPrint);
  5413.     }
  5414.    
  5415.     /**
  5416.      * Serialize to output stream <var>out</var> the object <var>rfC7807</var> of type {@link org.openspcoop2.protocol.manifest.RFC7807}
  5417.      *
  5418.      * @param out OutputStream to serialize the object <var>rfC7807</var>
  5419.      * @param rfC7807 Object to be serialized in xml file <var>fileName</var>
  5420.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5421.      */
  5422.     public void write(OutputStream out,RFC7807 rfC7807) throws SerializerException {
  5423.         this.objToXml(out, RFC7807.class, rfC7807, false);
  5424.     }
  5425.     /**
  5426.      * Serialize to output stream <var>out</var> the object <var>rfC7807</var> of type {@link org.openspcoop2.protocol.manifest.RFC7807}
  5427.      *
  5428.      * @param out OutputStream to serialize the object <var>rfC7807</var>
  5429.      * @param rfC7807 Object to be serialized in xml file <var>fileName</var>
  5430.      * @param prettyPrint if true output the XML with indenting
  5431.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5432.      */
  5433.     public void write(OutputStream out,RFC7807 rfC7807,boolean prettyPrint) throws SerializerException {
  5434.         this.objToXml(out, RFC7807.class, rfC7807, prettyPrint);
  5435.     }
  5436.            
  5437.     /**
  5438.      * Serialize to byte array the object <var>rfC7807</var> of type {@link org.openspcoop2.protocol.manifest.RFC7807}
  5439.      *
  5440.      * @param rfC7807 Object to be serialized
  5441.      * @return Object to be serialized in byte array
  5442.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5443.      */
  5444.     public byte[] toByteArray(RFC7807 rfC7807) throws SerializerException {
  5445.         return this.objToXml(RFC7807.class, rfC7807, false).toByteArray();
  5446.     }
  5447.     /**
  5448.      * Serialize to byte array the object <var>rfC7807</var> of type {@link org.openspcoop2.protocol.manifest.RFC7807}
  5449.      *
  5450.      * @param rfC7807 Object to be serialized
  5451.      * @param prettyPrint if true output the XML with indenting
  5452.      * @return Object to be serialized in byte array
  5453.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5454.      */
  5455.     public byte[] toByteArray(RFC7807 rfC7807,boolean prettyPrint) throws SerializerException {
  5456.         return this.objToXml(RFC7807.class, rfC7807, prettyPrint).toByteArray();
  5457.     }
  5458.    
  5459.     /**
  5460.      * Serialize to String the object <var>rfC7807</var> of type {@link org.openspcoop2.protocol.manifest.RFC7807}
  5461.      *
  5462.      * @param rfC7807 Object to be serialized
  5463.      * @return Object to be serialized as String
  5464.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5465.      */
  5466.     public String toString(RFC7807 rfC7807) throws SerializerException {
  5467.         return this.objToXml(RFC7807.class, rfC7807, false).toString();
  5468.     }
  5469.     /**
  5470.      * Serialize to String the object <var>rfC7807</var> of type {@link org.openspcoop2.protocol.manifest.RFC7807}
  5471.      *
  5472.      * @param rfC7807 Object to be serialized
  5473.      * @param prettyPrint if true output the XML with indenting
  5474.      * @return Object to be serialized as String
  5475.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5476.      */
  5477.     public String toString(RFC7807 rfC7807,boolean prettyPrint) throws SerializerException {
  5478.         return this.objToXml(RFC7807.class, rfC7807, prettyPrint).toString();
  5479.     }
  5480.    
  5481.    
  5482.    
  5483.     /*
  5484.      =================================================================================
  5485.      Object: RestMediaTypeDefaultMapping
  5486.      =================================================================================
  5487.     */
  5488.    
  5489.     /**
  5490.      * Serialize to file system in <var>fileName</var> the object <var>restMediaTypeDefaultMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeDefaultMapping}
  5491.      *
  5492.      * @param fileName Xml file to serialize the object <var>restMediaTypeDefaultMapping</var>
  5493.      * @param restMediaTypeDefaultMapping Object to be serialized in xml file <var>fileName</var>
  5494.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5495.      */
  5496.     public void write(String fileName,RestMediaTypeDefaultMapping restMediaTypeDefaultMapping) throws SerializerException {
  5497.         this.objToXml(fileName, RestMediaTypeDefaultMapping.class, restMediaTypeDefaultMapping, false);
  5498.     }
  5499.     /**
  5500.      * Serialize to file system in <var>fileName</var> the object <var>restMediaTypeDefaultMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeDefaultMapping}
  5501.      *
  5502.      * @param fileName Xml file to serialize the object <var>restMediaTypeDefaultMapping</var>
  5503.      * @param restMediaTypeDefaultMapping Object to be serialized in xml file <var>fileName</var>
  5504.      * @param prettyPrint if true output the XML with indenting
  5505.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5506.      */
  5507.     public void write(String fileName,RestMediaTypeDefaultMapping restMediaTypeDefaultMapping,boolean prettyPrint) throws SerializerException {
  5508.         this.objToXml(fileName, RestMediaTypeDefaultMapping.class, restMediaTypeDefaultMapping, prettyPrint);
  5509.     }
  5510.    
  5511.     /**
  5512.      * Serialize to file system in <var>file</var> the object <var>restMediaTypeDefaultMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeDefaultMapping}
  5513.      *
  5514.      * @param file Xml file to serialize the object <var>restMediaTypeDefaultMapping</var>
  5515.      * @param restMediaTypeDefaultMapping Object to be serialized in xml file <var>fileName</var>
  5516.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5517.      */
  5518.     public void write(File file,RestMediaTypeDefaultMapping restMediaTypeDefaultMapping) throws SerializerException {
  5519.         this.objToXml(file, RestMediaTypeDefaultMapping.class, restMediaTypeDefaultMapping, false);
  5520.     }
  5521.     /**
  5522.      * Serialize to file system in <var>file</var> the object <var>restMediaTypeDefaultMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeDefaultMapping}
  5523.      *
  5524.      * @param file Xml file to serialize the object <var>restMediaTypeDefaultMapping</var>
  5525.      * @param restMediaTypeDefaultMapping Object to be serialized in xml file <var>fileName</var>
  5526.      * @param prettyPrint if true output the XML with indenting
  5527.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5528.      */
  5529.     public void write(File file,RestMediaTypeDefaultMapping restMediaTypeDefaultMapping,boolean prettyPrint) throws SerializerException {
  5530.         this.objToXml(file, RestMediaTypeDefaultMapping.class, restMediaTypeDefaultMapping, prettyPrint);
  5531.     }
  5532.    
  5533.     /**
  5534.      * Serialize to output stream <var>out</var> the object <var>restMediaTypeDefaultMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeDefaultMapping}
  5535.      *
  5536.      * @param out OutputStream to serialize the object <var>restMediaTypeDefaultMapping</var>
  5537.      * @param restMediaTypeDefaultMapping Object to be serialized in xml file <var>fileName</var>
  5538.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5539.      */
  5540.     public void write(OutputStream out,RestMediaTypeDefaultMapping restMediaTypeDefaultMapping) throws SerializerException {
  5541.         this.objToXml(out, RestMediaTypeDefaultMapping.class, restMediaTypeDefaultMapping, false);
  5542.     }
  5543.     /**
  5544.      * Serialize to output stream <var>out</var> the object <var>restMediaTypeDefaultMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeDefaultMapping}
  5545.      *
  5546.      * @param out OutputStream to serialize the object <var>restMediaTypeDefaultMapping</var>
  5547.      * @param restMediaTypeDefaultMapping Object to be serialized in xml file <var>fileName</var>
  5548.      * @param prettyPrint if true output the XML with indenting
  5549.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5550.      */
  5551.     public void write(OutputStream out,RestMediaTypeDefaultMapping restMediaTypeDefaultMapping,boolean prettyPrint) throws SerializerException {
  5552.         this.objToXml(out, RestMediaTypeDefaultMapping.class, restMediaTypeDefaultMapping, prettyPrint);
  5553.     }
  5554.            
  5555.     /**
  5556.      * Serialize to byte array the object <var>restMediaTypeDefaultMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeDefaultMapping}
  5557.      *
  5558.      * @param restMediaTypeDefaultMapping Object to be serialized
  5559.      * @return Object to be serialized in byte array
  5560.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5561.      */
  5562.     public byte[] toByteArray(RestMediaTypeDefaultMapping restMediaTypeDefaultMapping) throws SerializerException {
  5563.         return this.objToXml(RestMediaTypeDefaultMapping.class, restMediaTypeDefaultMapping, false).toByteArray();
  5564.     }
  5565.     /**
  5566.      * Serialize to byte array the object <var>restMediaTypeDefaultMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeDefaultMapping}
  5567.      *
  5568.      * @param restMediaTypeDefaultMapping Object to be serialized
  5569.      * @param prettyPrint if true output the XML with indenting
  5570.      * @return Object to be serialized in byte array
  5571.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5572.      */
  5573.     public byte[] toByteArray(RestMediaTypeDefaultMapping restMediaTypeDefaultMapping,boolean prettyPrint) throws SerializerException {
  5574.         return this.objToXml(RestMediaTypeDefaultMapping.class, restMediaTypeDefaultMapping, prettyPrint).toByteArray();
  5575.     }
  5576.    
  5577.     /**
  5578.      * Serialize to String the object <var>restMediaTypeDefaultMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeDefaultMapping}
  5579.      *
  5580.      * @param restMediaTypeDefaultMapping Object to be serialized
  5581.      * @return Object to be serialized as String
  5582.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5583.      */
  5584.     public String toString(RestMediaTypeDefaultMapping restMediaTypeDefaultMapping) throws SerializerException {
  5585.         return this.objToXml(RestMediaTypeDefaultMapping.class, restMediaTypeDefaultMapping, false).toString();
  5586.     }
  5587.     /**
  5588.      * Serialize to String the object <var>restMediaTypeDefaultMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeDefaultMapping}
  5589.      *
  5590.      * @param restMediaTypeDefaultMapping Object to be serialized
  5591.      * @param prettyPrint if true output the XML with indenting
  5592.      * @return Object to be serialized as String
  5593.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5594.      */
  5595.     public String toString(RestMediaTypeDefaultMapping restMediaTypeDefaultMapping,boolean prettyPrint) throws SerializerException {
  5596.         return this.objToXml(RestMediaTypeDefaultMapping.class, restMediaTypeDefaultMapping, prettyPrint).toString();
  5597.     }
  5598.    
  5599.    
  5600.    
  5601.     /*
  5602.      =================================================================================
  5603.      Object: RestMediaTypeUndefinedMapping
  5604.      =================================================================================
  5605.     */
  5606.    
  5607.     /**
  5608.      * Serialize to file system in <var>fileName</var> the object <var>restMediaTypeUndefinedMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeUndefinedMapping}
  5609.      *
  5610.      * @param fileName Xml file to serialize the object <var>restMediaTypeUndefinedMapping</var>
  5611.      * @param restMediaTypeUndefinedMapping Object to be serialized in xml file <var>fileName</var>
  5612.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5613.      */
  5614.     public void write(String fileName,RestMediaTypeUndefinedMapping restMediaTypeUndefinedMapping) throws SerializerException {
  5615.         this.objToXml(fileName, RestMediaTypeUndefinedMapping.class, restMediaTypeUndefinedMapping, false);
  5616.     }
  5617.     /**
  5618.      * Serialize to file system in <var>fileName</var> the object <var>restMediaTypeUndefinedMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeUndefinedMapping}
  5619.      *
  5620.      * @param fileName Xml file to serialize the object <var>restMediaTypeUndefinedMapping</var>
  5621.      * @param restMediaTypeUndefinedMapping Object to be serialized in xml file <var>fileName</var>
  5622.      * @param prettyPrint if true output the XML with indenting
  5623.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5624.      */
  5625.     public void write(String fileName,RestMediaTypeUndefinedMapping restMediaTypeUndefinedMapping,boolean prettyPrint) throws SerializerException {
  5626.         this.objToXml(fileName, RestMediaTypeUndefinedMapping.class, restMediaTypeUndefinedMapping, prettyPrint);
  5627.     }
  5628.    
  5629.     /**
  5630.      * Serialize to file system in <var>file</var> the object <var>restMediaTypeUndefinedMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeUndefinedMapping}
  5631.      *
  5632.      * @param file Xml file to serialize the object <var>restMediaTypeUndefinedMapping</var>
  5633.      * @param restMediaTypeUndefinedMapping Object to be serialized in xml file <var>fileName</var>
  5634.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5635.      */
  5636.     public void write(File file,RestMediaTypeUndefinedMapping restMediaTypeUndefinedMapping) throws SerializerException {
  5637.         this.objToXml(file, RestMediaTypeUndefinedMapping.class, restMediaTypeUndefinedMapping, false);
  5638.     }
  5639.     /**
  5640.      * Serialize to file system in <var>file</var> the object <var>restMediaTypeUndefinedMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeUndefinedMapping}
  5641.      *
  5642.      * @param file Xml file to serialize the object <var>restMediaTypeUndefinedMapping</var>
  5643.      * @param restMediaTypeUndefinedMapping Object to be serialized in xml file <var>fileName</var>
  5644.      * @param prettyPrint if true output the XML with indenting
  5645.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5646.      */
  5647.     public void write(File file,RestMediaTypeUndefinedMapping restMediaTypeUndefinedMapping,boolean prettyPrint) throws SerializerException {
  5648.         this.objToXml(file, RestMediaTypeUndefinedMapping.class, restMediaTypeUndefinedMapping, prettyPrint);
  5649.     }
  5650.    
  5651.     /**
  5652.      * Serialize to output stream <var>out</var> the object <var>restMediaTypeUndefinedMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeUndefinedMapping}
  5653.      *
  5654.      * @param out OutputStream to serialize the object <var>restMediaTypeUndefinedMapping</var>
  5655.      * @param restMediaTypeUndefinedMapping Object to be serialized in xml file <var>fileName</var>
  5656.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5657.      */
  5658.     public void write(OutputStream out,RestMediaTypeUndefinedMapping restMediaTypeUndefinedMapping) throws SerializerException {
  5659.         this.objToXml(out, RestMediaTypeUndefinedMapping.class, restMediaTypeUndefinedMapping, false);
  5660.     }
  5661.     /**
  5662.      * Serialize to output stream <var>out</var> the object <var>restMediaTypeUndefinedMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeUndefinedMapping}
  5663.      *
  5664.      * @param out OutputStream to serialize the object <var>restMediaTypeUndefinedMapping</var>
  5665.      * @param restMediaTypeUndefinedMapping Object to be serialized in xml file <var>fileName</var>
  5666.      * @param prettyPrint if true output the XML with indenting
  5667.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5668.      */
  5669.     public void write(OutputStream out,RestMediaTypeUndefinedMapping restMediaTypeUndefinedMapping,boolean prettyPrint) throws SerializerException {
  5670.         this.objToXml(out, RestMediaTypeUndefinedMapping.class, restMediaTypeUndefinedMapping, prettyPrint);
  5671.     }
  5672.            
  5673.     /**
  5674.      * Serialize to byte array the object <var>restMediaTypeUndefinedMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeUndefinedMapping}
  5675.      *
  5676.      * @param restMediaTypeUndefinedMapping Object to be serialized
  5677.      * @return Object to be serialized in byte array
  5678.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5679.      */
  5680.     public byte[] toByteArray(RestMediaTypeUndefinedMapping restMediaTypeUndefinedMapping) throws SerializerException {
  5681.         return this.objToXml(RestMediaTypeUndefinedMapping.class, restMediaTypeUndefinedMapping, false).toByteArray();
  5682.     }
  5683.     /**
  5684.      * Serialize to byte array the object <var>restMediaTypeUndefinedMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeUndefinedMapping}
  5685.      *
  5686.      * @param restMediaTypeUndefinedMapping Object to be serialized
  5687.      * @param prettyPrint if true output the XML with indenting
  5688.      * @return Object to be serialized in byte array
  5689.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5690.      */
  5691.     public byte[] toByteArray(RestMediaTypeUndefinedMapping restMediaTypeUndefinedMapping,boolean prettyPrint) throws SerializerException {
  5692.         return this.objToXml(RestMediaTypeUndefinedMapping.class, restMediaTypeUndefinedMapping, prettyPrint).toByteArray();
  5693.     }
  5694.    
  5695.     /**
  5696.      * Serialize to String the object <var>restMediaTypeUndefinedMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeUndefinedMapping}
  5697.      *
  5698.      * @param restMediaTypeUndefinedMapping Object to be serialized
  5699.      * @return Object to be serialized as String
  5700.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5701.      */
  5702.     public String toString(RestMediaTypeUndefinedMapping restMediaTypeUndefinedMapping) throws SerializerException {
  5703.         return this.objToXml(RestMediaTypeUndefinedMapping.class, restMediaTypeUndefinedMapping, false).toString();
  5704.     }
  5705.     /**
  5706.      * Serialize to String the object <var>restMediaTypeUndefinedMapping</var> of type {@link org.openspcoop2.protocol.manifest.RestMediaTypeUndefinedMapping}
  5707.      *
  5708.      * @param restMediaTypeUndefinedMapping Object to be serialized
  5709.      * @param prettyPrint if true output the XML with indenting
  5710.      * @return Object to be serialized as String
  5711.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5712.      */
  5713.     public String toString(RestMediaTypeUndefinedMapping restMediaTypeUndefinedMapping,boolean prettyPrint) throws SerializerException {
  5714.         return this.objToXml(RestMediaTypeUndefinedMapping.class, restMediaTypeUndefinedMapping, prettyPrint).toString();
  5715.     }
  5716.    
  5717.    
  5718.    
  5719.     /*
  5720.      =================================================================================
  5721.      Object: OrganizationType
  5722.      =================================================================================
  5723.     */
  5724.    
  5725.     /**
  5726.      * Serialize to file system in <var>fileName</var> the object <var>organizationType</var> of type {@link org.openspcoop2.protocol.manifest.OrganizationType}
  5727.      *
  5728.      * @param fileName Xml file to serialize the object <var>organizationType</var>
  5729.      * @param organizationType Object to be serialized in xml file <var>fileName</var>
  5730.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5731.      */
  5732.     public void write(String fileName,OrganizationType organizationType) throws SerializerException {
  5733.         this.objToXml(fileName, OrganizationType.class, organizationType, false);
  5734.     }
  5735.     /**
  5736.      * Serialize to file system in <var>fileName</var> the object <var>organizationType</var> of type {@link org.openspcoop2.protocol.manifest.OrganizationType}
  5737.      *
  5738.      * @param fileName Xml file to serialize the object <var>organizationType</var>
  5739.      * @param organizationType Object to be serialized in xml file <var>fileName</var>
  5740.      * @param prettyPrint if true output the XML with indenting
  5741.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5742.      */
  5743.     public void write(String fileName,OrganizationType organizationType,boolean prettyPrint) throws SerializerException {
  5744.         this.objToXml(fileName, OrganizationType.class, organizationType, prettyPrint);
  5745.     }
  5746.    
  5747.     /**
  5748.      * Serialize to file system in <var>file</var> the object <var>organizationType</var> of type {@link org.openspcoop2.protocol.manifest.OrganizationType}
  5749.      *
  5750.      * @param file Xml file to serialize the object <var>organizationType</var>
  5751.      * @param organizationType Object to be serialized in xml file <var>fileName</var>
  5752.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5753.      */
  5754.     public void write(File file,OrganizationType organizationType) throws SerializerException {
  5755.         this.objToXml(file, OrganizationType.class, organizationType, false);
  5756.     }
  5757.     /**
  5758.      * Serialize to file system in <var>file</var> the object <var>organizationType</var> of type {@link org.openspcoop2.protocol.manifest.OrganizationType}
  5759.      *
  5760.      * @param file Xml file to serialize the object <var>organizationType</var>
  5761.      * @param organizationType Object to be serialized in xml file <var>fileName</var>
  5762.      * @param prettyPrint if true output the XML with indenting
  5763.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5764.      */
  5765.     public void write(File file,OrganizationType organizationType,boolean prettyPrint) throws SerializerException {
  5766.         this.objToXml(file, OrganizationType.class, organizationType, prettyPrint);
  5767.     }
  5768.    
  5769.     /**
  5770.      * Serialize to output stream <var>out</var> the object <var>organizationType</var> of type {@link org.openspcoop2.protocol.manifest.OrganizationType}
  5771.      *
  5772.      * @param out OutputStream to serialize the object <var>organizationType</var>
  5773.      * @param organizationType Object to be serialized in xml file <var>fileName</var>
  5774.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5775.      */
  5776.     public void write(OutputStream out,OrganizationType organizationType) throws SerializerException {
  5777.         this.objToXml(out, OrganizationType.class, organizationType, false);
  5778.     }
  5779.     /**
  5780.      * Serialize to output stream <var>out</var> the object <var>organizationType</var> of type {@link org.openspcoop2.protocol.manifest.OrganizationType}
  5781.      *
  5782.      * @param out OutputStream to serialize the object <var>organizationType</var>
  5783.      * @param organizationType Object to be serialized in xml file <var>fileName</var>
  5784.      * @param prettyPrint if true output the XML with indenting
  5785.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5786.      */
  5787.     public void write(OutputStream out,OrganizationType organizationType,boolean prettyPrint) throws SerializerException {
  5788.         this.objToXml(out, OrganizationType.class, organizationType, prettyPrint);
  5789.     }
  5790.            
  5791.     /**
  5792.      * Serialize to byte array the object <var>organizationType</var> of type {@link org.openspcoop2.protocol.manifest.OrganizationType}
  5793.      *
  5794.      * @param organizationType Object to be serialized
  5795.      * @return Object to be serialized in byte array
  5796.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5797.      */
  5798.     public byte[] toByteArray(OrganizationType organizationType) throws SerializerException {
  5799.         return this.objToXml(OrganizationType.class, organizationType, false).toByteArray();
  5800.     }
  5801.     /**
  5802.      * Serialize to byte array the object <var>organizationType</var> of type {@link org.openspcoop2.protocol.manifest.OrganizationType}
  5803.      *
  5804.      * @param organizationType Object to be serialized
  5805.      * @param prettyPrint if true output the XML with indenting
  5806.      * @return Object to be serialized in byte array
  5807.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5808.      */
  5809.     public byte[] toByteArray(OrganizationType organizationType,boolean prettyPrint) throws SerializerException {
  5810.         return this.objToXml(OrganizationType.class, organizationType, prettyPrint).toByteArray();
  5811.     }
  5812.    
  5813.     /**
  5814.      * Serialize to String the object <var>organizationType</var> of type {@link org.openspcoop2.protocol.manifest.OrganizationType}
  5815.      *
  5816.      * @param organizationType Object to be serialized
  5817.      * @return Object to be serialized as String
  5818.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5819.      */
  5820.     public String toString(OrganizationType organizationType) throws SerializerException {
  5821.         return this.objToXml(OrganizationType.class, organizationType, false).toString();
  5822.     }
  5823.     /**
  5824.      * Serialize to String the object <var>organizationType</var> of type {@link org.openspcoop2.protocol.manifest.OrganizationType}
  5825.      *
  5826.      * @param organizationType Object to be serialized
  5827.      * @param prettyPrint if true output the XML with indenting
  5828.      * @return Object to be serialized as String
  5829.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5830.      */
  5831.     public String toString(OrganizationType organizationType,boolean prettyPrint) throws SerializerException {
  5832.         return this.objToXml(OrganizationType.class, organizationType, prettyPrint).toString();
  5833.     }
  5834.    
  5835.    
  5836.    
  5837.     /*
  5838.      =================================================================================
  5839.      Object: Context
  5840.      =================================================================================
  5841.     */
  5842.    
  5843.     /**
  5844.      * Serialize to file system in <var>fileName</var> the object <var>context</var> of type {@link org.openspcoop2.protocol.manifest.Context}
  5845.      *
  5846.      * @param fileName Xml file to serialize the object <var>context</var>
  5847.      * @param context Object to be serialized in xml file <var>fileName</var>
  5848.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5849.      */
  5850.     public void write(String fileName,Context context) throws SerializerException {
  5851.         this.objToXml(fileName, Context.class, context, false);
  5852.     }
  5853.     /**
  5854.      * Serialize to file system in <var>fileName</var> the object <var>context</var> of type {@link org.openspcoop2.protocol.manifest.Context}
  5855.      *
  5856.      * @param fileName Xml file to serialize the object <var>context</var>
  5857.      * @param context Object to be serialized in xml file <var>fileName</var>
  5858.      * @param prettyPrint if true output the XML with indenting
  5859.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5860.      */
  5861.     public void write(String fileName,Context context,boolean prettyPrint) throws SerializerException {
  5862.         this.objToXml(fileName, Context.class, context, prettyPrint);
  5863.     }
  5864.    
  5865.     /**
  5866.      * Serialize to file system in <var>file</var> the object <var>context</var> of type {@link org.openspcoop2.protocol.manifest.Context}
  5867.      *
  5868.      * @param file Xml file to serialize the object <var>context</var>
  5869.      * @param context Object to be serialized in xml file <var>fileName</var>
  5870.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5871.      */
  5872.     public void write(File file,Context context) throws SerializerException {
  5873.         this.objToXml(file, Context.class, context, false);
  5874.     }
  5875.     /**
  5876.      * Serialize to file system in <var>file</var> the object <var>context</var> of type {@link org.openspcoop2.protocol.manifest.Context}
  5877.      *
  5878.      * @param file Xml file to serialize the object <var>context</var>
  5879.      * @param context Object to be serialized in xml file <var>fileName</var>
  5880.      * @param prettyPrint if true output the XML with indenting
  5881.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5882.      */
  5883.     public void write(File file,Context context,boolean prettyPrint) throws SerializerException {
  5884.         this.objToXml(file, Context.class, context, prettyPrint);
  5885.     }
  5886.    
  5887.     /**
  5888.      * Serialize to output stream <var>out</var> the object <var>context</var> of type {@link org.openspcoop2.protocol.manifest.Context}
  5889.      *
  5890.      * @param out OutputStream to serialize the object <var>context</var>
  5891.      * @param context Object to be serialized in xml file <var>fileName</var>
  5892.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5893.      */
  5894.     public void write(OutputStream out,Context context) throws SerializerException {
  5895.         this.objToXml(out, Context.class, context, false);
  5896.     }
  5897.     /**
  5898.      * Serialize to output stream <var>out</var> the object <var>context</var> of type {@link org.openspcoop2.protocol.manifest.Context}
  5899.      *
  5900.      * @param out OutputStream to serialize the object <var>context</var>
  5901.      * @param context Object to be serialized in xml file <var>fileName</var>
  5902.      * @param prettyPrint if true output the XML with indenting
  5903.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5904.      */
  5905.     public void write(OutputStream out,Context context,boolean prettyPrint) throws SerializerException {
  5906.         this.objToXml(out, Context.class, context, prettyPrint);
  5907.     }
  5908.            
  5909.     /**
  5910.      * Serialize to byte array the object <var>context</var> of type {@link org.openspcoop2.protocol.manifest.Context}
  5911.      *
  5912.      * @param context Object to be serialized
  5913.      * @return Object to be serialized in byte array
  5914.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5915.      */
  5916.     public byte[] toByteArray(Context context) throws SerializerException {
  5917.         return this.objToXml(Context.class, context, false).toByteArray();
  5918.     }
  5919.     /**
  5920.      * Serialize to byte array the object <var>context</var> of type {@link org.openspcoop2.protocol.manifest.Context}
  5921.      *
  5922.      * @param context Object to be serialized
  5923.      * @param prettyPrint if true output the XML with indenting
  5924.      * @return Object to be serialized in byte array
  5925.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5926.      */
  5927.     public byte[] toByteArray(Context context,boolean prettyPrint) throws SerializerException {
  5928.         return this.objToXml(Context.class, context, prettyPrint).toByteArray();
  5929.     }
  5930.    
  5931.     /**
  5932.      * Serialize to String the object <var>context</var> of type {@link org.openspcoop2.protocol.manifest.Context}
  5933.      *
  5934.      * @param context Object to be serialized
  5935.      * @return Object to be serialized as String
  5936.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5937.      */
  5938.     public String toString(Context context) throws SerializerException {
  5939.         return this.objToXml(Context.class, context, false).toString();
  5940.     }
  5941.     /**
  5942.      * Serialize to String the object <var>context</var> of type {@link org.openspcoop2.protocol.manifest.Context}
  5943.      *
  5944.      * @param context Object to be serialized
  5945.      * @param prettyPrint if true output the XML with indenting
  5946.      * @return Object to be serialized as String
  5947.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5948.      */
  5949.     public String toString(Context context,boolean prettyPrint) throws SerializerException {
  5950.         return this.objToXml(Context.class, context, prettyPrint).toString();
  5951.     }
  5952.    
  5953.    
  5954.    
  5955.     /*
  5956.      =================================================================================
  5957.      Object: DefaultIntegrationError
  5958.      =================================================================================
  5959.     */
  5960.    
  5961.     /**
  5962.      * Serialize to file system in <var>fileName</var> the object <var>defaultIntegrationError</var> of type {@link org.openspcoop2.protocol.manifest.DefaultIntegrationError}
  5963.      *
  5964.      * @param fileName Xml file to serialize the object <var>defaultIntegrationError</var>
  5965.      * @param defaultIntegrationError Object to be serialized in xml file <var>fileName</var>
  5966.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5967.      */
  5968.     public void write(String fileName,DefaultIntegrationError defaultIntegrationError) throws SerializerException {
  5969.         this.objToXml(fileName, DefaultIntegrationError.class, defaultIntegrationError, false);
  5970.     }
  5971.     /**
  5972.      * Serialize to file system in <var>fileName</var> the object <var>defaultIntegrationError</var> of type {@link org.openspcoop2.protocol.manifest.DefaultIntegrationError}
  5973.      *
  5974.      * @param fileName Xml file to serialize the object <var>defaultIntegrationError</var>
  5975.      * @param defaultIntegrationError Object to be serialized in xml file <var>fileName</var>
  5976.      * @param prettyPrint if true output the XML with indenting
  5977.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5978.      */
  5979.     public void write(String fileName,DefaultIntegrationError defaultIntegrationError,boolean prettyPrint) throws SerializerException {
  5980.         this.objToXml(fileName, DefaultIntegrationError.class, defaultIntegrationError, prettyPrint);
  5981.     }
  5982.    
  5983.     /**
  5984.      * Serialize to file system in <var>file</var> the object <var>defaultIntegrationError</var> of type {@link org.openspcoop2.protocol.manifest.DefaultIntegrationError}
  5985.      *
  5986.      * @param file Xml file to serialize the object <var>defaultIntegrationError</var>
  5987.      * @param defaultIntegrationError Object to be serialized in xml file <var>fileName</var>
  5988.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  5989.      */
  5990.     public void write(File file,DefaultIntegrationError defaultIntegrationError) throws SerializerException {
  5991.         this.objToXml(file, DefaultIntegrationError.class, defaultIntegrationError, false);
  5992.     }
  5993.     /**
  5994.      * Serialize to file system in <var>file</var> the object <var>defaultIntegrationError</var> of type {@link org.openspcoop2.protocol.manifest.DefaultIntegrationError}
  5995.      *
  5996.      * @param file Xml file to serialize the object <var>defaultIntegrationError</var>
  5997.      * @param defaultIntegrationError Object to be serialized in xml file <var>fileName</var>
  5998.      * @param prettyPrint if true output the XML with indenting
  5999.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6000.      */
  6001.     public void write(File file,DefaultIntegrationError defaultIntegrationError,boolean prettyPrint) throws SerializerException {
  6002.         this.objToXml(file, DefaultIntegrationError.class, defaultIntegrationError, prettyPrint);
  6003.     }
  6004.    
  6005.     /**
  6006.      * Serialize to output stream <var>out</var> the object <var>defaultIntegrationError</var> of type {@link org.openspcoop2.protocol.manifest.DefaultIntegrationError}
  6007.      *
  6008.      * @param out OutputStream to serialize the object <var>defaultIntegrationError</var>
  6009.      * @param defaultIntegrationError Object to be serialized in xml file <var>fileName</var>
  6010.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6011.      */
  6012.     public void write(OutputStream out,DefaultIntegrationError defaultIntegrationError) throws SerializerException {
  6013.         this.objToXml(out, DefaultIntegrationError.class, defaultIntegrationError, false);
  6014.     }
  6015.     /**
  6016.      * Serialize to output stream <var>out</var> the object <var>defaultIntegrationError</var> of type {@link org.openspcoop2.protocol.manifest.DefaultIntegrationError}
  6017.      *
  6018.      * @param out OutputStream to serialize the object <var>defaultIntegrationError</var>
  6019.      * @param defaultIntegrationError Object to be serialized in xml file <var>fileName</var>
  6020.      * @param prettyPrint if true output the XML with indenting
  6021.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6022.      */
  6023.     public void write(OutputStream out,DefaultIntegrationError defaultIntegrationError,boolean prettyPrint) throws SerializerException {
  6024.         this.objToXml(out, DefaultIntegrationError.class, defaultIntegrationError, prettyPrint);
  6025.     }
  6026.            
  6027.     /**
  6028.      * Serialize to byte array the object <var>defaultIntegrationError</var> of type {@link org.openspcoop2.protocol.manifest.DefaultIntegrationError}
  6029.      *
  6030.      * @param defaultIntegrationError Object to be serialized
  6031.      * @return Object to be serialized in byte array
  6032.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6033.      */
  6034.     public byte[] toByteArray(DefaultIntegrationError defaultIntegrationError) throws SerializerException {
  6035.         return this.objToXml(DefaultIntegrationError.class, defaultIntegrationError, false).toByteArray();
  6036.     }
  6037.     /**
  6038.      * Serialize to byte array the object <var>defaultIntegrationError</var> of type {@link org.openspcoop2.protocol.manifest.DefaultIntegrationError}
  6039.      *
  6040.      * @param defaultIntegrationError Object to be serialized
  6041.      * @param prettyPrint if true output the XML with indenting
  6042.      * @return Object to be serialized in byte array
  6043.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6044.      */
  6045.     public byte[] toByteArray(DefaultIntegrationError defaultIntegrationError,boolean prettyPrint) throws SerializerException {
  6046.         return this.objToXml(DefaultIntegrationError.class, defaultIntegrationError, prettyPrint).toByteArray();
  6047.     }
  6048.    
  6049.     /**
  6050.      * Serialize to String the object <var>defaultIntegrationError</var> of type {@link org.openspcoop2.protocol.manifest.DefaultIntegrationError}
  6051.      *
  6052.      * @param defaultIntegrationError Object to be serialized
  6053.      * @return Object to be serialized as String
  6054.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6055.      */
  6056.     public String toString(DefaultIntegrationError defaultIntegrationError) throws SerializerException {
  6057.         return this.objToXml(DefaultIntegrationError.class, defaultIntegrationError, false).toString();
  6058.     }
  6059.     /**
  6060.      * Serialize to String the object <var>defaultIntegrationError</var> of type {@link org.openspcoop2.protocol.manifest.DefaultIntegrationError}
  6061.      *
  6062.      * @param defaultIntegrationError Object to be serialized
  6063.      * @param prettyPrint if true output the XML with indenting
  6064.      * @return Object to be serialized as String
  6065.      * @throws SerializerException The exception that is thrown when an error occurs during serialization
  6066.      */
  6067.     public String toString(DefaultIntegrationError defaultIntegrationError,boolean prettyPrint) throws SerializerException {
  6068.         return this.objToXml(DefaultIntegrationError.class, defaultIntegrationError, prettyPrint).toString();
  6069.     }
  6070.    
  6071.    
  6072.    

  6073. }