AbstractDeserializer.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.DeserializerException;

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

  72. import java.io.InputStream;
  73. import java.io.File;

  74. /**    
  75.  * XML Deserializer of beans
  76.  *
  77.  * @author Poli Andrea (poli@link.it)
  78.  * @author $Author$
  79.  * @version $Rev$, $Date$
  80.  */

  81. public abstract class AbstractDeserializer extends org.openspcoop2.generic_project.serializer.AbstractDeserializerBase {



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

  3232. }