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

  21. import org.openspcoop2.generic_project.exception.DeserializerException;

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

  48. import java.io.InputStream;
  49. import java.io.File;

  50. /**    
  51.  * XML Deserializer of beans
  52.  *
  53.  * @author Poli Andrea (poli@link.it)
  54.  * @author $Author$
  55.  * @version $Rev$, $Date$
  56.  */

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



  58.     /*
  59.      =================================================================================
  60.      Object: ReplaceMatchFieldType
  61.      =================================================================================
  62.     */
  63.    
  64.     /**
  65.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchFieldType}
  66.      *
  67.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchFieldType}
  68.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchFieldType}
  69.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  70.      */
  71.     public ReplaceMatchFieldType readReplaceMatchFieldType(String fileName) throws DeserializerException {
  72.         return (ReplaceMatchFieldType) this.xmlToObj(fileName, ReplaceMatchFieldType.class);
  73.     }
  74.    
  75.     /**
  76.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchFieldType}
  77.      *
  78.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchFieldType}
  79.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchFieldType}
  80.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  81.      */
  82.     public ReplaceMatchFieldType readReplaceMatchFieldType(File file) throws DeserializerException {
  83.         return (ReplaceMatchFieldType) this.xmlToObj(file, ReplaceMatchFieldType.class);
  84.     }
  85.    
  86.     /**
  87.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchFieldType}
  88.      *
  89.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchFieldType}
  90.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchFieldType}
  91.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  92.      */
  93.     public ReplaceMatchFieldType readReplaceMatchFieldType(InputStream in) throws DeserializerException {
  94.         return (ReplaceMatchFieldType) this.xmlToObj(in, ReplaceMatchFieldType.class);
  95.     }  
  96.    
  97.     /**
  98.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchFieldType}
  99.      *
  100.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchFieldType}
  101.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchFieldType}
  102.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  103.      */
  104.     public ReplaceMatchFieldType readReplaceMatchFieldType(byte[] in) throws DeserializerException {
  105.         return (ReplaceMatchFieldType) this.xmlToObj(in, ReplaceMatchFieldType.class);
  106.     }  
  107.    
  108.     /**
  109.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchFieldType}
  110.      *
  111.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchFieldType}
  112.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchFieldType}
  113.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  114.      */
  115.     public ReplaceMatchFieldType readReplaceMatchFieldTypeFromString(String in) throws DeserializerException {
  116.         return (ReplaceMatchFieldType) this.xmlToObj(in.getBytes(), ReplaceMatchFieldType.class);
  117.     }  
  118.    
  119.    
  120.    
  121.     /*
  122.      =================================================================================
  123.      Object: replaceMatchType
  124.      =================================================================================
  125.     */
  126.    
  127.     /**
  128.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchType}
  129.      *
  130.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchType}
  131.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchType}
  132.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  133.      */
  134.     public ReplaceMatchType readReplaceMatchType(String fileName) throws DeserializerException {
  135.         return (ReplaceMatchType) this.xmlToObj(fileName, ReplaceMatchType.class);
  136.     }
  137.    
  138.     /**
  139.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchType}
  140.      *
  141.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchType}
  142.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchType}
  143.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  144.      */
  145.     public ReplaceMatchType readReplaceMatchType(File file) throws DeserializerException {
  146.         return (ReplaceMatchType) this.xmlToObj(file, ReplaceMatchType.class);
  147.     }
  148.    
  149.     /**
  150.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchType}
  151.      *
  152.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchType}
  153.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchType}
  154.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  155.      */
  156.     public ReplaceMatchType readReplaceMatchType(InputStream in) throws DeserializerException {
  157.         return (ReplaceMatchType) this.xmlToObj(in, ReplaceMatchType.class);
  158.     }  
  159.    
  160.     /**
  161.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchType}
  162.      *
  163.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchType}
  164.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchType}
  165.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  166.      */
  167.     public ReplaceMatchType readReplaceMatchType(byte[] in) throws DeserializerException {
  168.         return (ReplaceMatchType) this.xmlToObj(in, ReplaceMatchType.class);
  169.     }  
  170.    
  171.     /**
  172.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchType}
  173.      *
  174.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchType}
  175.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ReplaceMatchType}
  176.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  177.      */
  178.     public ReplaceMatchType readReplaceMatchTypeFromString(String in) throws DeserializerException {
  179.         return (ReplaceMatchType) this.xmlToObj(in.getBytes(), ReplaceMatchType.class);
  180.     }  
  181.    
  182.    
  183.    
  184.     /*
  185.      =================================================================================
  186.      Object: ConditionsType
  187.      =================================================================================
  188.     */
  189.    
  190.     /**
  191.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.ConditionsType}
  192.      *
  193.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ConditionsType}
  194.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ConditionsType}
  195.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  196.      */
  197.     public ConditionsType readConditionsType(String fileName) throws DeserializerException {
  198.         return (ConditionsType) this.xmlToObj(fileName, ConditionsType.class);
  199.     }
  200.    
  201.     /**
  202.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.ConditionsType}
  203.      *
  204.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ConditionsType}
  205.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ConditionsType}
  206.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  207.      */
  208.     public ConditionsType readConditionsType(File file) throws DeserializerException {
  209.         return (ConditionsType) this.xmlToObj(file, ConditionsType.class);
  210.     }
  211.    
  212.     /**
  213.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ConditionsType}
  214.      *
  215.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ConditionsType}
  216.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ConditionsType}
  217.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  218.      */
  219.     public ConditionsType readConditionsType(InputStream in) throws DeserializerException {
  220.         return (ConditionsType) this.xmlToObj(in, ConditionsType.class);
  221.     }  
  222.    
  223.     /**
  224.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ConditionsType}
  225.      *
  226.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ConditionsType}
  227.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ConditionsType}
  228.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  229.      */
  230.     public ConditionsType readConditionsType(byte[] in) throws DeserializerException {
  231.         return (ConditionsType) this.xmlToObj(in, ConditionsType.class);
  232.     }  
  233.    
  234.     /**
  235.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ConditionsType}
  236.      *
  237.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ConditionsType}
  238.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ConditionsType}
  239.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  240.      */
  241.     public ConditionsType readConditionsTypeFromString(String in) throws DeserializerException {
  242.         return (ConditionsType) this.xmlToObj(in.getBytes(), ConditionsType.class);
  243.     }  
  244.    
  245.    
  246.    
  247.     /*
  248.      =================================================================================
  249.      Object: Fruitore
  250.      =================================================================================
  251.     */
  252.    
  253.     /**
  254.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.Fruitore}
  255.      *
  256.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Fruitore}
  257.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Fruitore}
  258.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  259.      */
  260.     public Fruitore readFruitore(String fileName) throws DeserializerException {
  261.         return (Fruitore) this.xmlToObj(fileName, Fruitore.class);
  262.     }
  263.    
  264.     /**
  265.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.Fruitore}
  266.      *
  267.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Fruitore}
  268.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Fruitore}
  269.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  270.      */
  271.     public Fruitore readFruitore(File file) throws DeserializerException {
  272.         return (Fruitore) this.xmlToObj(file, Fruitore.class);
  273.     }
  274.    
  275.     /**
  276.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Fruitore}
  277.      *
  278.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Fruitore}
  279.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Fruitore}
  280.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  281.      */
  282.     public Fruitore readFruitore(InputStream in) throws DeserializerException {
  283.         return (Fruitore) this.xmlToObj(in, Fruitore.class);
  284.     }  
  285.    
  286.     /**
  287.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Fruitore}
  288.      *
  289.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Fruitore}
  290.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Fruitore}
  291.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  292.      */
  293.     public Fruitore readFruitore(byte[] in) throws DeserializerException {
  294.         return (Fruitore) this.xmlToObj(in, Fruitore.class);
  295.     }  
  296.    
  297.     /**
  298.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Fruitore}
  299.      *
  300.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Fruitore}
  301.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Fruitore}
  302.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  303.      */
  304.     public Fruitore readFruitoreFromString(String in) throws DeserializerException {
  305.         return (Fruitore) this.xmlToObj(in.getBytes(), Fruitore.class);
  306.     }  
  307.    
  308.    
  309.    
  310.     /*
  311.      =================================================================================
  312.      Object: replaceFruitoreMatchType
  313.      =================================================================================
  314.     */
  315.    
  316.     /**
  317.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.ReplaceFruitoreMatchType}
  318.      *
  319.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ReplaceFruitoreMatchType}
  320.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ReplaceFruitoreMatchType}
  321.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  322.      */
  323.     public ReplaceFruitoreMatchType readReplaceFruitoreMatchType(String fileName) throws DeserializerException {
  324.         return (ReplaceFruitoreMatchType) this.xmlToObj(fileName, ReplaceFruitoreMatchType.class);
  325.     }
  326.    
  327.     /**
  328.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.ReplaceFruitoreMatchType}
  329.      *
  330.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ReplaceFruitoreMatchType}
  331.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ReplaceFruitoreMatchType}
  332.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  333.      */
  334.     public ReplaceFruitoreMatchType readReplaceFruitoreMatchType(File file) throws DeserializerException {
  335.         return (ReplaceFruitoreMatchType) this.xmlToObj(file, ReplaceFruitoreMatchType.class);
  336.     }
  337.    
  338.     /**
  339.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ReplaceFruitoreMatchType}
  340.      *
  341.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ReplaceFruitoreMatchType}
  342.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ReplaceFruitoreMatchType}
  343.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  344.      */
  345.     public ReplaceFruitoreMatchType readReplaceFruitoreMatchType(InputStream in) throws DeserializerException {
  346.         return (ReplaceFruitoreMatchType) this.xmlToObj(in, ReplaceFruitoreMatchType.class);
  347.     }  
  348.    
  349.     /**
  350.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ReplaceFruitoreMatchType}
  351.      *
  352.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ReplaceFruitoreMatchType}
  353.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ReplaceFruitoreMatchType}
  354.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  355.      */
  356.     public ReplaceFruitoreMatchType readReplaceFruitoreMatchType(byte[] in) throws DeserializerException {
  357.         return (ReplaceFruitoreMatchType) this.xmlToObj(in, ReplaceFruitoreMatchType.class);
  358.     }  
  359.    
  360.     /**
  361.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ReplaceFruitoreMatchType}
  362.      *
  363.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ReplaceFruitoreMatchType}
  364.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ReplaceFruitoreMatchType}
  365.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  366.      */
  367.     public ReplaceFruitoreMatchType readReplaceFruitoreMatchTypeFromString(String in) throws DeserializerException {
  368.         return (ReplaceFruitoreMatchType) this.xmlToObj(in.getBytes(), ReplaceFruitoreMatchType.class);
  369.     }  
  370.    
  371.    
  372.    
  373.     /*
  374.      =================================================================================
  375.      Object: PortaDelegata
  376.      =================================================================================
  377.     */
  378.    
  379.     /**
  380.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.PortaDelegata}
  381.      *
  382.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.PortaDelegata}
  383.      * @return Object type {@link org.openspcoop2.protocol.information_missing.PortaDelegata}
  384.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  385.      */
  386.     public PortaDelegata readPortaDelegata(String fileName) throws DeserializerException {
  387.         return (PortaDelegata) this.xmlToObj(fileName, PortaDelegata.class);
  388.     }
  389.    
  390.     /**
  391.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.PortaDelegata}
  392.      *
  393.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.PortaDelegata}
  394.      * @return Object type {@link org.openspcoop2.protocol.information_missing.PortaDelegata}
  395.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  396.      */
  397.     public PortaDelegata readPortaDelegata(File file) throws DeserializerException {
  398.         return (PortaDelegata) this.xmlToObj(file, PortaDelegata.class);
  399.     }
  400.    
  401.     /**
  402.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.PortaDelegata}
  403.      *
  404.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.PortaDelegata}
  405.      * @return Object type {@link org.openspcoop2.protocol.information_missing.PortaDelegata}
  406.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  407.      */
  408.     public PortaDelegata readPortaDelegata(InputStream in) throws DeserializerException {
  409.         return (PortaDelegata) this.xmlToObj(in, PortaDelegata.class);
  410.     }  
  411.    
  412.     /**
  413.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.PortaDelegata}
  414.      *
  415.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.PortaDelegata}
  416.      * @return Object type {@link org.openspcoop2.protocol.information_missing.PortaDelegata}
  417.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  418.      */
  419.     public PortaDelegata readPortaDelegata(byte[] in) throws DeserializerException {
  420.         return (PortaDelegata) this.xmlToObj(in, PortaDelegata.class);
  421.     }  
  422.    
  423.     /**
  424.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.PortaDelegata}
  425.      *
  426.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.PortaDelegata}
  427.      * @return Object type {@link org.openspcoop2.protocol.information_missing.PortaDelegata}
  428.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  429.      */
  430.     public PortaDelegata readPortaDelegataFromString(String in) throws DeserializerException {
  431.         return (PortaDelegata) this.xmlToObj(in.getBytes(), PortaDelegata.class);
  432.     }  
  433.    
  434.    
  435.    
  436.     /*
  437.      =================================================================================
  438.      Object: ProprietaRequisitoInput
  439.      =================================================================================
  440.     */
  441.    
  442.     /**
  443.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.ProprietaRequisitoInput}
  444.      *
  445.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ProprietaRequisitoInput}
  446.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ProprietaRequisitoInput}
  447.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  448.      */
  449.     public ProprietaRequisitoInput readProprietaRequisitoInput(String fileName) throws DeserializerException {
  450.         return (ProprietaRequisitoInput) this.xmlToObj(fileName, ProprietaRequisitoInput.class);
  451.     }
  452.    
  453.     /**
  454.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.ProprietaRequisitoInput}
  455.      *
  456.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ProprietaRequisitoInput}
  457.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ProprietaRequisitoInput}
  458.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  459.      */
  460.     public ProprietaRequisitoInput readProprietaRequisitoInput(File file) throws DeserializerException {
  461.         return (ProprietaRequisitoInput) this.xmlToObj(file, ProprietaRequisitoInput.class);
  462.     }
  463.    
  464.     /**
  465.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ProprietaRequisitoInput}
  466.      *
  467.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ProprietaRequisitoInput}
  468.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ProprietaRequisitoInput}
  469.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  470.      */
  471.     public ProprietaRequisitoInput readProprietaRequisitoInput(InputStream in) throws DeserializerException {
  472.         return (ProprietaRequisitoInput) this.xmlToObj(in, ProprietaRequisitoInput.class);
  473.     }  
  474.    
  475.     /**
  476.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ProprietaRequisitoInput}
  477.      *
  478.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ProprietaRequisitoInput}
  479.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ProprietaRequisitoInput}
  480.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  481.      */
  482.     public ProprietaRequisitoInput readProprietaRequisitoInput(byte[] in) throws DeserializerException {
  483.         return (ProprietaRequisitoInput) this.xmlToObj(in, ProprietaRequisitoInput.class);
  484.     }  
  485.    
  486.     /**
  487.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ProprietaRequisitoInput}
  488.      *
  489.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ProprietaRequisitoInput}
  490.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ProprietaRequisitoInput}
  491.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  492.      */
  493.     public ProprietaRequisitoInput readProprietaRequisitoInputFromString(String in) throws DeserializerException {
  494.         return (ProprietaRequisitoInput) this.xmlToObj(in.getBytes(), ProprietaRequisitoInput.class);
  495.     }  
  496.    
  497.    
  498.    
  499.     /*
  500.      =================================================================================
  501.      Object: ProprietaDefault
  502.      =================================================================================
  503.     */
  504.    
  505.     /**
  506.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.ProprietaDefault}
  507.      *
  508.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ProprietaDefault}
  509.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ProprietaDefault}
  510.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  511.      */
  512.     public ProprietaDefault readProprietaDefault(String fileName) throws DeserializerException {
  513.         return (ProprietaDefault) this.xmlToObj(fileName, ProprietaDefault.class);
  514.     }
  515.    
  516.     /**
  517.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.ProprietaDefault}
  518.      *
  519.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ProprietaDefault}
  520.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ProprietaDefault}
  521.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  522.      */
  523.     public ProprietaDefault readProprietaDefault(File file) throws DeserializerException {
  524.         return (ProprietaDefault) this.xmlToObj(file, ProprietaDefault.class);
  525.     }
  526.    
  527.     /**
  528.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ProprietaDefault}
  529.      *
  530.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ProprietaDefault}
  531.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ProprietaDefault}
  532.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  533.      */
  534.     public ProprietaDefault readProprietaDefault(InputStream in) throws DeserializerException {
  535.         return (ProprietaDefault) this.xmlToObj(in, ProprietaDefault.class);
  536.     }  
  537.    
  538.     /**
  539.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ProprietaDefault}
  540.      *
  541.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ProprietaDefault}
  542.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ProprietaDefault}
  543.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  544.      */
  545.     public ProprietaDefault readProprietaDefault(byte[] in) throws DeserializerException {
  546.         return (ProprietaDefault) this.xmlToObj(in, ProprietaDefault.class);
  547.     }  
  548.    
  549.     /**
  550.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ProprietaDefault}
  551.      *
  552.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ProprietaDefault}
  553.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ProprietaDefault}
  554.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  555.      */
  556.     public ProprietaDefault readProprietaDefaultFromString(String in) throws DeserializerException {
  557.         return (ProprietaDefault) this.xmlToObj(in.getBytes(), ProprietaDefault.class);
  558.     }  
  559.    
  560.    
  561.    
  562.     /*
  563.      =================================================================================
  564.      Object: AccordoServizioParteSpecifica
  565.      =================================================================================
  566.     */
  567.    
  568.     /**
  569.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteSpecifica}
  570.      *
  571.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteSpecifica}
  572.      * @return Object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteSpecifica}
  573.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  574.      */
  575.     public AccordoServizioParteSpecifica readAccordoServizioParteSpecifica(String fileName) throws DeserializerException {
  576.         return (AccordoServizioParteSpecifica) this.xmlToObj(fileName, AccordoServizioParteSpecifica.class);
  577.     }
  578.    
  579.     /**
  580.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteSpecifica}
  581.      *
  582.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteSpecifica}
  583.      * @return Object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteSpecifica}
  584.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  585.      */
  586.     public AccordoServizioParteSpecifica readAccordoServizioParteSpecifica(File file) throws DeserializerException {
  587.         return (AccordoServizioParteSpecifica) this.xmlToObj(file, AccordoServizioParteSpecifica.class);
  588.     }
  589.    
  590.     /**
  591.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteSpecifica}
  592.      *
  593.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteSpecifica}
  594.      * @return Object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteSpecifica}
  595.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  596.      */
  597.     public AccordoServizioParteSpecifica readAccordoServizioParteSpecifica(InputStream in) throws DeserializerException {
  598.         return (AccordoServizioParteSpecifica) this.xmlToObj(in, AccordoServizioParteSpecifica.class);
  599.     }  
  600.    
  601.     /**
  602.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteSpecifica}
  603.      *
  604.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteSpecifica}
  605.      * @return Object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteSpecifica}
  606.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  607.      */
  608.     public AccordoServizioParteSpecifica readAccordoServizioParteSpecifica(byte[] in) throws DeserializerException {
  609.         return (AccordoServizioParteSpecifica) this.xmlToObj(in, AccordoServizioParteSpecifica.class);
  610.     }  
  611.    
  612.     /**
  613.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteSpecifica}
  614.      *
  615.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteSpecifica}
  616.      * @return Object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteSpecifica}
  617.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  618.      */
  619.     public AccordoServizioParteSpecifica readAccordoServizioParteSpecificaFromString(String in) throws DeserializerException {
  620.         return (AccordoServizioParteSpecifica) this.xmlToObj(in.getBytes(), AccordoServizioParteSpecifica.class);
  621.     }  
  622.    
  623.    
  624.    
  625.     /*
  626.      =================================================================================
  627.      Object: Default
  628.      =================================================================================
  629.     */
  630.    
  631.     /**
  632.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.Default}
  633.      *
  634.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Default}
  635.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Default}
  636.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  637.      */
  638.     public Default readDefault(String fileName) throws DeserializerException {
  639.         return (Default) this.xmlToObj(fileName, Default.class);
  640.     }
  641.    
  642.     /**
  643.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.Default}
  644.      *
  645.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Default}
  646.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Default}
  647.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  648.      */
  649.     public Default readDefault(File file) throws DeserializerException {
  650.         return (Default) this.xmlToObj(file, Default.class);
  651.     }
  652.    
  653.     /**
  654.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Default}
  655.      *
  656.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Default}
  657.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Default}
  658.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  659.      */
  660.     public Default readDefault(InputStream in) throws DeserializerException {
  661.         return (Default) this.xmlToObj(in, Default.class);
  662.     }  
  663.    
  664.     /**
  665.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Default}
  666.      *
  667.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Default}
  668.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Default}
  669.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  670.      */
  671.     public Default readDefault(byte[] in) throws DeserializerException {
  672.         return (Default) this.xmlToObj(in, Default.class);
  673.     }  
  674.    
  675.     /**
  676.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Default}
  677.      *
  678.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Default}
  679.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Default}
  680.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  681.      */
  682.     public Default readDefaultFromString(String in) throws DeserializerException {
  683.         return (Default) this.xmlToObj(in.getBytes(), Default.class);
  684.     }  
  685.    
  686.    
  687.    
  688.     /*
  689.      =================================================================================
  690.      Object: DescriptionType
  691.      =================================================================================
  692.     */
  693.    
  694.     /**
  695.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.DescriptionType}
  696.      *
  697.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.DescriptionType}
  698.      * @return Object type {@link org.openspcoop2.protocol.information_missing.DescriptionType}
  699.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  700.      */
  701.     public DescriptionType readDescriptionType(String fileName) throws DeserializerException {
  702.         return (DescriptionType) this.xmlToObj(fileName, DescriptionType.class);
  703.     }
  704.    
  705.     /**
  706.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.DescriptionType}
  707.      *
  708.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.DescriptionType}
  709.      * @return Object type {@link org.openspcoop2.protocol.information_missing.DescriptionType}
  710.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  711.      */
  712.     public DescriptionType readDescriptionType(File file) throws DeserializerException {
  713.         return (DescriptionType) this.xmlToObj(file, DescriptionType.class);
  714.     }
  715.    
  716.     /**
  717.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.DescriptionType}
  718.      *
  719.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.DescriptionType}
  720.      * @return Object type {@link org.openspcoop2.protocol.information_missing.DescriptionType}
  721.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  722.      */
  723.     public DescriptionType readDescriptionType(InputStream in) throws DeserializerException {
  724.         return (DescriptionType) this.xmlToObj(in, DescriptionType.class);
  725.     }  
  726.    
  727.     /**
  728.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.DescriptionType}
  729.      *
  730.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.DescriptionType}
  731.      * @return Object type {@link org.openspcoop2.protocol.information_missing.DescriptionType}
  732.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  733.      */
  734.     public DescriptionType readDescriptionType(byte[] in) throws DeserializerException {
  735.         return (DescriptionType) this.xmlToObj(in, DescriptionType.class);
  736.     }  
  737.    
  738.     /**
  739.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.DescriptionType}
  740.      *
  741.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.DescriptionType}
  742.      * @return Object type {@link org.openspcoop2.protocol.information_missing.DescriptionType}
  743.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  744.      */
  745.     public DescriptionType readDescriptionTypeFromString(String in) throws DeserializerException {
  746.         return (DescriptionType) this.xmlToObj(in.getBytes(), DescriptionType.class);
  747.     }  
  748.    
  749.    
  750.    
  751.     /*
  752.      =================================================================================
  753.      Object: ConditionType
  754.      =================================================================================
  755.     */
  756.    
  757.     /**
  758.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.ConditionType}
  759.      *
  760.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ConditionType}
  761.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ConditionType}
  762.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  763.      */
  764.     public ConditionType readConditionType(String fileName) throws DeserializerException {
  765.         return (ConditionType) this.xmlToObj(fileName, ConditionType.class);
  766.     }
  767.    
  768.     /**
  769.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.ConditionType}
  770.      *
  771.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ConditionType}
  772.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ConditionType}
  773.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  774.      */
  775.     public ConditionType readConditionType(File file) throws DeserializerException {
  776.         return (ConditionType) this.xmlToObj(file, ConditionType.class);
  777.     }
  778.    
  779.     /**
  780.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ConditionType}
  781.      *
  782.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ConditionType}
  783.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ConditionType}
  784.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  785.      */
  786.     public ConditionType readConditionType(InputStream in) throws DeserializerException {
  787.         return (ConditionType) this.xmlToObj(in, ConditionType.class);
  788.     }  
  789.    
  790.     /**
  791.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ConditionType}
  792.      *
  793.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ConditionType}
  794.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ConditionType}
  795.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  796.      */
  797.     public ConditionType readConditionType(byte[] in) throws DeserializerException {
  798.         return (ConditionType) this.xmlToObj(in, ConditionType.class);
  799.     }  
  800.    
  801.     /**
  802.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ConditionType}
  803.      *
  804.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ConditionType}
  805.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ConditionType}
  806.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  807.      */
  808.     public ConditionType readConditionTypeFromString(String in) throws DeserializerException {
  809.         return (ConditionType) this.xmlToObj(in.getBytes(), ConditionType.class);
  810.     }  
  811.    
  812.    
  813.    
  814.     /*
  815.      =================================================================================
  816.      Object: AccordoServizioParteComune
  817.      =================================================================================
  818.     */
  819.    
  820.     /**
  821.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteComune}
  822.      *
  823.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteComune}
  824.      * @return Object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteComune}
  825.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  826.      */
  827.     public AccordoServizioParteComune readAccordoServizioParteComune(String fileName) throws DeserializerException {
  828.         return (AccordoServizioParteComune) this.xmlToObj(fileName, AccordoServizioParteComune.class);
  829.     }
  830.    
  831.     /**
  832.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteComune}
  833.      *
  834.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteComune}
  835.      * @return Object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteComune}
  836.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  837.      */
  838.     public AccordoServizioParteComune readAccordoServizioParteComune(File file) throws DeserializerException {
  839.         return (AccordoServizioParteComune) this.xmlToObj(file, AccordoServizioParteComune.class);
  840.     }
  841.    
  842.     /**
  843.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteComune}
  844.      *
  845.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteComune}
  846.      * @return Object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteComune}
  847.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  848.      */
  849.     public AccordoServizioParteComune readAccordoServizioParteComune(InputStream in) throws DeserializerException {
  850.         return (AccordoServizioParteComune) this.xmlToObj(in, AccordoServizioParteComune.class);
  851.     }  
  852.    
  853.     /**
  854.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteComune}
  855.      *
  856.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteComune}
  857.      * @return Object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteComune}
  858.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  859.      */
  860.     public AccordoServizioParteComune readAccordoServizioParteComune(byte[] in) throws DeserializerException {
  861.         return (AccordoServizioParteComune) this.xmlToObj(in, AccordoServizioParteComune.class);
  862.     }  
  863.    
  864.     /**
  865.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteComune}
  866.      *
  867.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteComune}
  868.      * @return Object type {@link org.openspcoop2.protocol.information_missing.AccordoServizioParteComune}
  869.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  870.      */
  871.     public AccordoServizioParteComune readAccordoServizioParteComuneFromString(String in) throws DeserializerException {
  872.         return (AccordoServizioParteComune) this.xmlToObj(in.getBytes(), AccordoServizioParteComune.class);
  873.     }  
  874.    
  875.    
  876.    
  877.     /*
  878.      =================================================================================
  879.      Object: PortaApplicativa
  880.      =================================================================================
  881.     */
  882.    
  883.     /**
  884.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.PortaApplicativa}
  885.      *
  886.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.PortaApplicativa}
  887.      * @return Object type {@link org.openspcoop2.protocol.information_missing.PortaApplicativa}
  888.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  889.      */
  890.     public PortaApplicativa readPortaApplicativa(String fileName) throws DeserializerException {
  891.         return (PortaApplicativa) this.xmlToObj(fileName, PortaApplicativa.class);
  892.     }
  893.    
  894.     /**
  895.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.PortaApplicativa}
  896.      *
  897.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.PortaApplicativa}
  898.      * @return Object type {@link org.openspcoop2.protocol.information_missing.PortaApplicativa}
  899.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  900.      */
  901.     public PortaApplicativa readPortaApplicativa(File file) throws DeserializerException {
  902.         return (PortaApplicativa) this.xmlToObj(file, PortaApplicativa.class);
  903.     }
  904.    
  905.     /**
  906.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.PortaApplicativa}
  907.      *
  908.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.PortaApplicativa}
  909.      * @return Object type {@link org.openspcoop2.protocol.information_missing.PortaApplicativa}
  910.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  911.      */
  912.     public PortaApplicativa readPortaApplicativa(InputStream in) throws DeserializerException {
  913.         return (PortaApplicativa) this.xmlToObj(in, PortaApplicativa.class);
  914.     }  
  915.    
  916.     /**
  917.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.PortaApplicativa}
  918.      *
  919.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.PortaApplicativa}
  920.      * @return Object type {@link org.openspcoop2.protocol.information_missing.PortaApplicativa}
  921.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  922.      */
  923.     public PortaApplicativa readPortaApplicativa(byte[] in) throws DeserializerException {
  924.         return (PortaApplicativa) this.xmlToObj(in, PortaApplicativa.class);
  925.     }  
  926.    
  927.     /**
  928.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.PortaApplicativa}
  929.      *
  930.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.PortaApplicativa}
  931.      * @return Object type {@link org.openspcoop2.protocol.information_missing.PortaApplicativa}
  932.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  933.      */
  934.     public PortaApplicativa readPortaApplicativaFromString(String in) throws DeserializerException {
  935.         return (PortaApplicativa) this.xmlToObj(in.getBytes(), PortaApplicativa.class);
  936.     }  
  937.    
  938.    
  939.    
  940.     /*
  941.      =================================================================================
  942.      Object: ServizioApplicativo
  943.      =================================================================================
  944.     */
  945.    
  946.     /**
  947.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.ServizioApplicativo}
  948.      *
  949.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ServizioApplicativo}
  950.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ServizioApplicativo}
  951.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  952.      */
  953.     public ServizioApplicativo readServizioApplicativo(String fileName) throws DeserializerException {
  954.         return (ServizioApplicativo) this.xmlToObj(fileName, ServizioApplicativo.class);
  955.     }
  956.    
  957.     /**
  958.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.ServizioApplicativo}
  959.      *
  960.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ServizioApplicativo}
  961.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ServizioApplicativo}
  962.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  963.      */
  964.     public ServizioApplicativo readServizioApplicativo(File file) throws DeserializerException {
  965.         return (ServizioApplicativo) this.xmlToObj(file, ServizioApplicativo.class);
  966.     }
  967.    
  968.     /**
  969.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ServizioApplicativo}
  970.      *
  971.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ServizioApplicativo}
  972.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ServizioApplicativo}
  973.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  974.      */
  975.     public ServizioApplicativo readServizioApplicativo(InputStream in) throws DeserializerException {
  976.         return (ServizioApplicativo) this.xmlToObj(in, ServizioApplicativo.class);
  977.     }  
  978.    
  979.     /**
  980.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ServizioApplicativo}
  981.      *
  982.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ServizioApplicativo}
  983.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ServizioApplicativo}
  984.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  985.      */
  986.     public ServizioApplicativo readServizioApplicativo(byte[] in) throws DeserializerException {
  987.         return (ServizioApplicativo) this.xmlToObj(in, ServizioApplicativo.class);
  988.     }  
  989.    
  990.     /**
  991.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.ServizioApplicativo}
  992.      *
  993.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.ServizioApplicativo}
  994.      * @return Object type {@link org.openspcoop2.protocol.information_missing.ServizioApplicativo}
  995.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  996.      */
  997.     public ServizioApplicativo readServizioApplicativoFromString(String in) throws DeserializerException {
  998.         return (ServizioApplicativo) this.xmlToObj(in.getBytes(), ServizioApplicativo.class);
  999.     }  
  1000.    
  1001.    
  1002.    
  1003.     /*
  1004.      =================================================================================
  1005.      Object: RequisitoProtocollo
  1006.      =================================================================================
  1007.     */
  1008.    
  1009.     /**
  1010.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.RequisitoProtocollo}
  1011.      *
  1012.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.RequisitoProtocollo}
  1013.      * @return Object type {@link org.openspcoop2.protocol.information_missing.RequisitoProtocollo}
  1014.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1015.      */
  1016.     public RequisitoProtocollo readRequisitoProtocollo(String fileName) throws DeserializerException {
  1017.         return (RequisitoProtocollo) this.xmlToObj(fileName, RequisitoProtocollo.class);
  1018.     }
  1019.    
  1020.     /**
  1021.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.RequisitoProtocollo}
  1022.      *
  1023.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.RequisitoProtocollo}
  1024.      * @return Object type {@link org.openspcoop2.protocol.information_missing.RequisitoProtocollo}
  1025.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1026.      */
  1027.     public RequisitoProtocollo readRequisitoProtocollo(File file) throws DeserializerException {
  1028.         return (RequisitoProtocollo) this.xmlToObj(file, RequisitoProtocollo.class);
  1029.     }
  1030.    
  1031.     /**
  1032.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.RequisitoProtocollo}
  1033.      *
  1034.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.RequisitoProtocollo}
  1035.      * @return Object type {@link org.openspcoop2.protocol.information_missing.RequisitoProtocollo}
  1036.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1037.      */
  1038.     public RequisitoProtocollo readRequisitoProtocollo(InputStream in) throws DeserializerException {
  1039.         return (RequisitoProtocollo) this.xmlToObj(in, RequisitoProtocollo.class);
  1040.     }  
  1041.    
  1042.     /**
  1043.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.RequisitoProtocollo}
  1044.      *
  1045.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.RequisitoProtocollo}
  1046.      * @return Object type {@link org.openspcoop2.protocol.information_missing.RequisitoProtocollo}
  1047.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1048.      */
  1049.     public RequisitoProtocollo readRequisitoProtocollo(byte[] in) throws DeserializerException {
  1050.         return (RequisitoProtocollo) this.xmlToObj(in, RequisitoProtocollo.class);
  1051.     }  
  1052.    
  1053.     /**
  1054.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.RequisitoProtocollo}
  1055.      *
  1056.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.RequisitoProtocollo}
  1057.      * @return Object type {@link org.openspcoop2.protocol.information_missing.RequisitoProtocollo}
  1058.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1059.      */
  1060.     public RequisitoProtocollo readRequisitoProtocolloFromString(String in) throws DeserializerException {
  1061.         return (RequisitoProtocollo) this.xmlToObj(in.getBytes(), RequisitoProtocollo.class);
  1062.     }  
  1063.    
  1064.    
  1065.    
  1066.     /*
  1067.      =================================================================================
  1068.      Object: AccordoCooperazione
  1069.      =================================================================================
  1070.     */
  1071.    
  1072.     /**
  1073.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.AccordoCooperazione}
  1074.      *
  1075.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.AccordoCooperazione}
  1076.      * @return Object type {@link org.openspcoop2.protocol.information_missing.AccordoCooperazione}
  1077.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1078.      */
  1079.     public AccordoCooperazione readAccordoCooperazione(String fileName) throws DeserializerException {
  1080.         return (AccordoCooperazione) this.xmlToObj(fileName, AccordoCooperazione.class);
  1081.     }
  1082.    
  1083.     /**
  1084.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.AccordoCooperazione}
  1085.      *
  1086.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.AccordoCooperazione}
  1087.      * @return Object type {@link org.openspcoop2.protocol.information_missing.AccordoCooperazione}
  1088.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1089.      */
  1090.     public AccordoCooperazione readAccordoCooperazione(File file) throws DeserializerException {
  1091.         return (AccordoCooperazione) this.xmlToObj(file, AccordoCooperazione.class);
  1092.     }
  1093.    
  1094.     /**
  1095.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.AccordoCooperazione}
  1096.      *
  1097.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.AccordoCooperazione}
  1098.      * @return Object type {@link org.openspcoop2.protocol.information_missing.AccordoCooperazione}
  1099.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1100.      */
  1101.     public AccordoCooperazione readAccordoCooperazione(InputStream in) throws DeserializerException {
  1102.         return (AccordoCooperazione) this.xmlToObj(in, AccordoCooperazione.class);
  1103.     }  
  1104.    
  1105.     /**
  1106.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.AccordoCooperazione}
  1107.      *
  1108.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.AccordoCooperazione}
  1109.      * @return Object type {@link org.openspcoop2.protocol.information_missing.AccordoCooperazione}
  1110.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1111.      */
  1112.     public AccordoCooperazione readAccordoCooperazione(byte[] in) throws DeserializerException {
  1113.         return (AccordoCooperazione) this.xmlToObj(in, AccordoCooperazione.class);
  1114.     }  
  1115.    
  1116.     /**
  1117.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.AccordoCooperazione}
  1118.      *
  1119.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.AccordoCooperazione}
  1120.      * @return Object type {@link org.openspcoop2.protocol.information_missing.AccordoCooperazione}
  1121.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1122.      */
  1123.     public AccordoCooperazione readAccordoCooperazioneFromString(String in) throws DeserializerException {
  1124.         return (AccordoCooperazione) this.xmlToObj(in.getBytes(), AccordoCooperazione.class);
  1125.     }  
  1126.    
  1127.    
  1128.    
  1129.     /*
  1130.      =================================================================================
  1131.      Object: Requisiti
  1132.      =================================================================================
  1133.     */
  1134.    
  1135.     /**
  1136.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.Requisiti}
  1137.      *
  1138.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Requisiti}
  1139.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Requisiti}
  1140.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1141.      */
  1142.     public Requisiti readRequisiti(String fileName) throws DeserializerException {
  1143.         return (Requisiti) this.xmlToObj(fileName, Requisiti.class);
  1144.     }
  1145.    
  1146.     /**
  1147.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.Requisiti}
  1148.      *
  1149.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Requisiti}
  1150.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Requisiti}
  1151.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1152.      */
  1153.     public Requisiti readRequisiti(File file) throws DeserializerException {
  1154.         return (Requisiti) this.xmlToObj(file, Requisiti.class);
  1155.     }
  1156.    
  1157.     /**
  1158.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Requisiti}
  1159.      *
  1160.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Requisiti}
  1161.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Requisiti}
  1162.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1163.      */
  1164.     public Requisiti readRequisiti(InputStream in) throws DeserializerException {
  1165.         return (Requisiti) this.xmlToObj(in, Requisiti.class);
  1166.     }  
  1167.    
  1168.     /**
  1169.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Requisiti}
  1170.      *
  1171.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Requisiti}
  1172.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Requisiti}
  1173.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1174.      */
  1175.     public Requisiti readRequisiti(byte[] in) throws DeserializerException {
  1176.         return (Requisiti) this.xmlToObj(in, Requisiti.class);
  1177.     }  
  1178.    
  1179.     /**
  1180.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Requisiti}
  1181.      *
  1182.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Requisiti}
  1183.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Requisiti}
  1184.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1185.      */
  1186.     public Requisiti readRequisitiFromString(String in) throws DeserializerException {
  1187.         return (Requisiti) this.xmlToObj(in.getBytes(), Requisiti.class);
  1188.     }  
  1189.    
  1190.    
  1191.    
  1192.     /*
  1193.      =================================================================================
  1194.      Object: RequisitoInput
  1195.      =================================================================================
  1196.     */
  1197.    
  1198.     /**
  1199.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.RequisitoInput}
  1200.      *
  1201.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.RequisitoInput}
  1202.      * @return Object type {@link org.openspcoop2.protocol.information_missing.RequisitoInput}
  1203.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1204.      */
  1205.     public RequisitoInput readRequisitoInput(String fileName) throws DeserializerException {
  1206.         return (RequisitoInput) this.xmlToObj(fileName, RequisitoInput.class);
  1207.     }
  1208.    
  1209.     /**
  1210.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.RequisitoInput}
  1211.      *
  1212.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.RequisitoInput}
  1213.      * @return Object type {@link org.openspcoop2.protocol.information_missing.RequisitoInput}
  1214.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1215.      */
  1216.     public RequisitoInput readRequisitoInput(File file) throws DeserializerException {
  1217.         return (RequisitoInput) this.xmlToObj(file, RequisitoInput.class);
  1218.     }
  1219.    
  1220.     /**
  1221.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.RequisitoInput}
  1222.      *
  1223.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.RequisitoInput}
  1224.      * @return Object type {@link org.openspcoop2.protocol.information_missing.RequisitoInput}
  1225.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1226.      */
  1227.     public RequisitoInput readRequisitoInput(InputStream in) throws DeserializerException {
  1228.         return (RequisitoInput) this.xmlToObj(in, RequisitoInput.class);
  1229.     }  
  1230.    
  1231.     /**
  1232.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.RequisitoInput}
  1233.      *
  1234.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.RequisitoInput}
  1235.      * @return Object type {@link org.openspcoop2.protocol.information_missing.RequisitoInput}
  1236.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1237.      */
  1238.     public RequisitoInput readRequisitoInput(byte[] in) throws DeserializerException {
  1239.         return (RequisitoInput) this.xmlToObj(in, RequisitoInput.class);
  1240.     }  
  1241.    
  1242.     /**
  1243.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.RequisitoInput}
  1244.      *
  1245.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.RequisitoInput}
  1246.      * @return Object type {@link org.openspcoop2.protocol.information_missing.RequisitoInput}
  1247.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1248.      */
  1249.     public RequisitoInput readRequisitoInputFromString(String in) throws DeserializerException {
  1250.         return (RequisitoInput) this.xmlToObj(in.getBytes(), RequisitoInput.class);
  1251.     }  
  1252.    
  1253.    
  1254.    
  1255.     /*
  1256.      =================================================================================
  1257.      Object: openspcoop2
  1258.      =================================================================================
  1259.     */
  1260.    
  1261.     /**
  1262.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.Openspcoop2}
  1263.      *
  1264.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Openspcoop2}
  1265.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Openspcoop2}
  1266.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1267.      */
  1268.     public Openspcoop2 readOpenspcoop2(String fileName) throws DeserializerException {
  1269.         return (Openspcoop2) this.xmlToObj(fileName, Openspcoop2.class);
  1270.     }
  1271.    
  1272.     /**
  1273.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.Openspcoop2}
  1274.      *
  1275.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Openspcoop2}
  1276.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Openspcoop2}
  1277.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1278.      */
  1279.     public Openspcoop2 readOpenspcoop2(File file) throws DeserializerException {
  1280.         return (Openspcoop2) this.xmlToObj(file, Openspcoop2.class);
  1281.     }
  1282.    
  1283.     /**
  1284.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Openspcoop2}
  1285.      *
  1286.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Openspcoop2}
  1287.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Openspcoop2}
  1288.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1289.      */
  1290.     public Openspcoop2 readOpenspcoop2(InputStream in) throws DeserializerException {
  1291.         return (Openspcoop2) this.xmlToObj(in, Openspcoop2.class);
  1292.     }  
  1293.    
  1294.     /**
  1295.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Openspcoop2}
  1296.      *
  1297.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Openspcoop2}
  1298.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Openspcoop2}
  1299.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1300.      */
  1301.     public Openspcoop2 readOpenspcoop2(byte[] in) throws DeserializerException {
  1302.         return (Openspcoop2) this.xmlToObj(in, Openspcoop2.class);
  1303.     }  
  1304.    
  1305.     /**
  1306.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Openspcoop2}
  1307.      *
  1308.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Openspcoop2}
  1309.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Openspcoop2}
  1310.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1311.      */
  1312.     public Openspcoop2 readOpenspcoop2FromString(String in) throws DeserializerException {
  1313.         return (Openspcoop2) this.xmlToObj(in.getBytes(), Openspcoop2.class);
  1314.     }  
  1315.    
  1316.    
  1317.    
  1318.     /*
  1319.      =================================================================================
  1320.      Object: operazione
  1321.      =================================================================================
  1322.     */
  1323.    
  1324.     /**
  1325.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.Operazione}
  1326.      *
  1327.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Operazione}
  1328.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Operazione}
  1329.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1330.      */
  1331.     public Operazione readOperazione(String fileName) throws DeserializerException {
  1332.         return (Operazione) this.xmlToObj(fileName, Operazione.class);
  1333.     }
  1334.    
  1335.     /**
  1336.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.Operazione}
  1337.      *
  1338.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Operazione}
  1339.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Operazione}
  1340.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1341.      */
  1342.     public Operazione readOperazione(File file) throws DeserializerException {
  1343.         return (Operazione) this.xmlToObj(file, Operazione.class);
  1344.     }
  1345.    
  1346.     /**
  1347.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Operazione}
  1348.      *
  1349.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Operazione}
  1350.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Operazione}
  1351.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1352.      */
  1353.     public Operazione readOperazione(InputStream in) throws DeserializerException {
  1354.         return (Operazione) this.xmlToObj(in, Operazione.class);
  1355.     }  
  1356.    
  1357.     /**
  1358.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Operazione}
  1359.      *
  1360.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Operazione}
  1361.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Operazione}
  1362.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1363.      */
  1364.     public Operazione readOperazione(byte[] in) throws DeserializerException {
  1365.         return (Operazione) this.xmlToObj(in, Operazione.class);
  1366.     }  
  1367.    
  1368.     /**
  1369.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Operazione}
  1370.      *
  1371.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Operazione}
  1372.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Operazione}
  1373.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1374.      */
  1375.     public Operazione readOperazioneFromString(String in) throws DeserializerException {
  1376.         return (Operazione) this.xmlToObj(in.getBytes(), Operazione.class);
  1377.     }  
  1378.    
  1379.    
  1380.    
  1381.     /*
  1382.      =================================================================================
  1383.      Object: Soggetto
  1384.      =================================================================================
  1385.     */
  1386.    
  1387.     /**
  1388.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.Soggetto}
  1389.      *
  1390.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Soggetto}
  1391.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Soggetto}
  1392.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1393.      */
  1394.     public Soggetto readSoggetto(String fileName) throws DeserializerException {
  1395.         return (Soggetto) this.xmlToObj(fileName, Soggetto.class);
  1396.     }
  1397.    
  1398.     /**
  1399.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.Soggetto}
  1400.      *
  1401.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Soggetto}
  1402.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Soggetto}
  1403.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1404.      */
  1405.     public Soggetto readSoggetto(File file) throws DeserializerException {
  1406.         return (Soggetto) this.xmlToObj(file, Soggetto.class);
  1407.     }
  1408.    
  1409.     /**
  1410.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Soggetto}
  1411.      *
  1412.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Soggetto}
  1413.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Soggetto}
  1414.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1415.      */
  1416.     public Soggetto readSoggetto(InputStream in) throws DeserializerException {
  1417.         return (Soggetto) this.xmlToObj(in, Soggetto.class);
  1418.     }  
  1419.    
  1420.     /**
  1421.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Soggetto}
  1422.      *
  1423.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Soggetto}
  1424.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Soggetto}
  1425.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1426.      */
  1427.     public Soggetto readSoggetto(byte[] in) throws DeserializerException {
  1428.         return (Soggetto) this.xmlToObj(in, Soggetto.class);
  1429.     }  
  1430.    
  1431.     /**
  1432.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Soggetto}
  1433.      *
  1434.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Soggetto}
  1435.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Soggetto}
  1436.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1437.      */
  1438.     public Soggetto readSoggettoFromString(String in) throws DeserializerException {
  1439.         return (Soggetto) this.xmlToObj(in.getBytes(), Soggetto.class);
  1440.     }  
  1441.    
  1442.    
  1443.    
  1444.     /*
  1445.      =================================================================================
  1446.      Object: Input
  1447.      =================================================================================
  1448.     */
  1449.    
  1450.     /**
  1451.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.Input}
  1452.      *
  1453.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Input}
  1454.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Input}
  1455.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1456.      */
  1457.     public Input readInput(String fileName) throws DeserializerException {
  1458.         return (Input) this.xmlToObj(fileName, Input.class);
  1459.     }
  1460.    
  1461.     /**
  1462.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.Input}
  1463.      *
  1464.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Input}
  1465.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Input}
  1466.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1467.      */
  1468.     public Input readInput(File file) throws DeserializerException {
  1469.         return (Input) this.xmlToObj(file, Input.class);
  1470.     }
  1471.    
  1472.     /**
  1473.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Input}
  1474.      *
  1475.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Input}
  1476.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Input}
  1477.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1478.      */
  1479.     public Input readInput(InputStream in) throws DeserializerException {
  1480.         return (Input) this.xmlToObj(in, Input.class);
  1481.     }  
  1482.    
  1483.     /**
  1484.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Input}
  1485.      *
  1486.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Input}
  1487.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Input}
  1488.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1489.      */
  1490.     public Input readInput(byte[] in) throws DeserializerException {
  1491.         return (Input) this.xmlToObj(in, Input.class);
  1492.     }  
  1493.    
  1494.     /**
  1495.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Input}
  1496.      *
  1497.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Input}
  1498.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Input}
  1499.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1500.      */
  1501.     public Input readInputFromString(String in) throws DeserializerException {
  1502.         return (Input) this.xmlToObj(in.getBytes(), Input.class);
  1503.     }  
  1504.    
  1505.    
  1506.    
  1507.     /*
  1508.      =================================================================================
  1509.      Object: Proprieta
  1510.      =================================================================================
  1511.     */
  1512.    
  1513.     /**
  1514.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.Proprieta}
  1515.      *
  1516.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Proprieta}
  1517.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Proprieta}
  1518.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1519.      */
  1520.     public Proprieta readProprieta(String fileName) throws DeserializerException {
  1521.         return (Proprieta) this.xmlToObj(fileName, Proprieta.class);
  1522.     }
  1523.    
  1524.     /**
  1525.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.Proprieta}
  1526.      *
  1527.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Proprieta}
  1528.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Proprieta}
  1529.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1530.      */
  1531.     public Proprieta readProprieta(File file) throws DeserializerException {
  1532.         return (Proprieta) this.xmlToObj(file, Proprieta.class);
  1533.     }
  1534.    
  1535.     /**
  1536.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Proprieta}
  1537.      *
  1538.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Proprieta}
  1539.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Proprieta}
  1540.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1541.      */
  1542.     public Proprieta readProprieta(InputStream in) throws DeserializerException {
  1543.         return (Proprieta) this.xmlToObj(in, Proprieta.class);
  1544.     }  
  1545.    
  1546.     /**
  1547.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Proprieta}
  1548.      *
  1549.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Proprieta}
  1550.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Proprieta}
  1551.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1552.      */
  1553.     public Proprieta readProprieta(byte[] in) throws DeserializerException {
  1554.         return (Proprieta) this.xmlToObj(in, Proprieta.class);
  1555.     }  
  1556.    
  1557.     /**
  1558.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Proprieta}
  1559.      *
  1560.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Proprieta}
  1561.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Proprieta}
  1562.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1563.      */
  1564.     public Proprieta readProprietaFromString(String in) throws DeserializerException {
  1565.         return (Proprieta) this.xmlToObj(in.getBytes(), Proprieta.class);
  1566.     }  
  1567.    
  1568.    
  1569.    
  1570.     /*
  1571.      =================================================================================
  1572.      Object: Wizard
  1573.      =================================================================================
  1574.     */
  1575.    
  1576.     /**
  1577.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.Wizard}
  1578.      *
  1579.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Wizard}
  1580.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Wizard}
  1581.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1582.      */
  1583.     public Wizard readWizard(String fileName) throws DeserializerException {
  1584.         return (Wizard) this.xmlToObj(fileName, Wizard.class);
  1585.     }
  1586.    
  1587.     /**
  1588.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.Wizard}
  1589.      *
  1590.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Wizard}
  1591.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Wizard}
  1592.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1593.      */
  1594.     public Wizard readWizard(File file) throws DeserializerException {
  1595.         return (Wizard) this.xmlToObj(file, Wizard.class);
  1596.     }
  1597.    
  1598.     /**
  1599.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Wizard}
  1600.      *
  1601.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Wizard}
  1602.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Wizard}
  1603.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1604.      */
  1605.     public Wizard readWizard(InputStream in) throws DeserializerException {
  1606.         return (Wizard) this.xmlToObj(in, Wizard.class);
  1607.     }  
  1608.    
  1609.     /**
  1610.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Wizard}
  1611.      *
  1612.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Wizard}
  1613.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Wizard}
  1614.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1615.      */
  1616.     public Wizard readWizard(byte[] in) throws DeserializerException {
  1617.         return (Wizard) this.xmlToObj(in, Wizard.class);
  1618.     }  
  1619.    
  1620.     /**
  1621.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Wizard}
  1622.      *
  1623.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Wizard}
  1624.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Wizard}
  1625.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1626.      */
  1627.     public Wizard readWizardFromString(String in) throws DeserializerException {
  1628.         return (Wizard) this.xmlToObj(in.getBytes(), Wizard.class);
  1629.     }  
  1630.    
  1631.    
  1632.    
  1633.     /*
  1634.      =================================================================================
  1635.      Object: Description
  1636.      =================================================================================
  1637.     */
  1638.    
  1639.     /**
  1640.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.protocol.information_missing.Description}
  1641.      *
  1642.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Description}
  1643.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Description}
  1644.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1645.      */
  1646.     public Description readDescription(String fileName) throws DeserializerException {
  1647.         return (Description) this.xmlToObj(fileName, Description.class);
  1648.     }
  1649.    
  1650.     /**
  1651.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.protocol.information_missing.Description}
  1652.      *
  1653.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Description}
  1654.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Description}
  1655.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1656.      */
  1657.     public Description readDescription(File file) throws DeserializerException {
  1658.         return (Description) this.xmlToObj(file, Description.class);
  1659.     }
  1660.    
  1661.     /**
  1662.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Description}
  1663.      *
  1664.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Description}
  1665.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Description}
  1666.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1667.      */
  1668.     public Description readDescription(InputStream in) throws DeserializerException {
  1669.         return (Description) this.xmlToObj(in, Description.class);
  1670.     }  
  1671.    
  1672.     /**
  1673.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Description}
  1674.      *
  1675.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Description}
  1676.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Description}
  1677.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1678.      */
  1679.     public Description readDescription(byte[] in) throws DeserializerException {
  1680.         return (Description) this.xmlToObj(in, Description.class);
  1681.     }  
  1682.    
  1683.     /**
  1684.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.protocol.information_missing.Description}
  1685.      *
  1686.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.protocol.information_missing.Description}
  1687.      * @return Object type {@link org.openspcoop2.protocol.information_missing.Description}
  1688.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1689.      */
  1690.     public Description readDescriptionFromString(String in) throws DeserializerException {
  1691.         return (Description) this.xmlToObj(in.getBytes(), Description.class);
  1692.     }  
  1693.    
  1694.    
  1695.    

  1696. }