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.core.commons.search.utils.serializer;

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

  22. import org.openspcoop2.core.commons.search.Operation;
  23. import org.openspcoop2.core.commons.search.IdPortType;
  24. import org.openspcoop2.core.commons.search.PortaApplicativa;
  25. import org.openspcoop2.core.commons.search.IdSoggetto;
  26. import org.openspcoop2.core.commons.search.PortaApplicativaServizioApplicativo;
  27. import org.openspcoop2.core.commons.search.PortaApplicativaAzione;
  28. import org.openspcoop2.core.commons.search.Resource;
  29. import org.openspcoop2.core.commons.search.IdAccordoServizioParteComune;
  30. import org.openspcoop2.core.commons.search.AccordoServizioParteComuneAzione;
  31. import org.openspcoop2.core.commons.search.IdRuolo;
  32. import org.openspcoop2.core.commons.search.IdPortaDominio;
  33. import org.openspcoop2.core.commons.search.IdAccordoServizioParteSpecifica;
  34. import org.openspcoop2.core.commons.search.ServizioApplicativoRuolo;
  35. import org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneAzione;
  36. import org.openspcoop2.core.commons.search.AccordoServizioParteSpecifica;
  37. import org.openspcoop2.core.commons.search.ServizioApplicativoProprietaProtocollo;
  38. import org.openspcoop2.core.commons.search.Ruolo;
  39. import org.openspcoop2.core.commons.search.SoggettoRuolo;
  40. import org.openspcoop2.core.commons.search.ServizioApplicativo;
  41. import org.openspcoop2.core.commons.search.IdGruppo;
  42. import org.openspcoop2.core.commons.search.AccordoServizioParteComuneGruppo;
  43. import org.openspcoop2.core.commons.search.IdServizioApplicativo;
  44. import org.openspcoop2.core.commons.search.PortType;
  45. import org.openspcoop2.core.commons.search.IdPortaDelegata;
  46. import org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneGruppo;
  47. import org.openspcoop2.core.commons.search.PortaDelegataAzione;
  48. import org.openspcoop2.core.commons.search.IdFruitore;
  49. import org.openspcoop2.core.commons.search.IdOperation;
  50. import org.openspcoop2.core.commons.search.Soggetto;
  51. import org.openspcoop2.core.commons.search.Gruppo;
  52. import org.openspcoop2.core.commons.search.AccordoServizioParteComune;
  53. import org.openspcoop2.core.commons.search.PortaDominio;
  54. import org.openspcoop2.core.commons.search.IdPortaApplicativa;
  55. import org.openspcoop2.core.commons.search.IdResource;
  56. import org.openspcoop2.core.commons.search.PortaDelegataServizioApplicativo;
  57. import org.openspcoop2.core.commons.search.Fruitore;
  58. import org.openspcoop2.core.commons.search.PortaDelegata;
  59. import org.openspcoop2.core.commons.search.IdSoggettoRuolo;

  60. import java.io.InputStream;
  61. import java.io.File;

  62. /**    
  63.  * XML Deserializer of beans
  64.  *
  65.  * @author Poli Andrea (poli@link.it)
  66.  * @author $Author$
  67.  * @version $Rev$, $Date$
  68.  */

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



  70.     /*
  71.      =================================================================================
  72.      Object: operation
  73.      =================================================================================
  74.     */
  75.    
  76.     /**
  77.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.Operation}
  78.      *
  79.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Operation}
  80.      * @return Object type {@link org.openspcoop2.core.commons.search.Operation}
  81.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  82.      */
  83.     public Operation readOperation(String fileName) throws DeserializerException {
  84.         return (Operation) this.xmlToObj(fileName, Operation.class);
  85.     }
  86.    
  87.     /**
  88.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.Operation}
  89.      *
  90.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Operation}
  91.      * @return Object type {@link org.openspcoop2.core.commons.search.Operation}
  92.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  93.      */
  94.     public Operation readOperation(File file) throws DeserializerException {
  95.         return (Operation) this.xmlToObj(file, Operation.class);
  96.     }
  97.    
  98.     /**
  99.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.Operation}
  100.      *
  101.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Operation}
  102.      * @return Object type {@link org.openspcoop2.core.commons.search.Operation}
  103.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  104.      */
  105.     public Operation readOperation(InputStream in) throws DeserializerException {
  106.         return (Operation) this.xmlToObj(in, Operation.class);
  107.     }  
  108.    
  109.     /**
  110.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.Operation}
  111.      *
  112.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Operation}
  113.      * @return Object type {@link org.openspcoop2.core.commons.search.Operation}
  114.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  115.      */
  116.     public Operation readOperation(byte[] in) throws DeserializerException {
  117.         return (Operation) this.xmlToObj(in, Operation.class);
  118.     }  
  119.    
  120.     /**
  121.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.Operation}
  122.      *
  123.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Operation}
  124.      * @return Object type {@link org.openspcoop2.core.commons.search.Operation}
  125.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  126.      */
  127.     public Operation readOperationFromString(String in) throws DeserializerException {
  128.         return (Operation) this.xmlToObj(in.getBytes(), Operation.class);
  129.     }  
  130.    
  131.    
  132.    
  133.     /*
  134.      =================================================================================
  135.      Object: id-port-type
  136.      =================================================================================
  137.     */
  138.    
  139.     /**
  140.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.IdPortType}
  141.      *
  142.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdPortType}
  143.      * @return Object type {@link org.openspcoop2.core.commons.search.IdPortType}
  144.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  145.      */
  146.     public IdPortType readIdPortType(String fileName) throws DeserializerException {
  147.         return (IdPortType) this.xmlToObj(fileName, IdPortType.class);
  148.     }
  149.    
  150.     /**
  151.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.IdPortType}
  152.      *
  153.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdPortType}
  154.      * @return Object type {@link org.openspcoop2.core.commons.search.IdPortType}
  155.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  156.      */
  157.     public IdPortType readIdPortType(File file) throws DeserializerException {
  158.         return (IdPortType) this.xmlToObj(file, IdPortType.class);
  159.     }
  160.    
  161.     /**
  162.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdPortType}
  163.      *
  164.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdPortType}
  165.      * @return Object type {@link org.openspcoop2.core.commons.search.IdPortType}
  166.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  167.      */
  168.     public IdPortType readIdPortType(InputStream in) throws DeserializerException {
  169.         return (IdPortType) this.xmlToObj(in, IdPortType.class);
  170.     }  
  171.    
  172.     /**
  173.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdPortType}
  174.      *
  175.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdPortType}
  176.      * @return Object type {@link org.openspcoop2.core.commons.search.IdPortType}
  177.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  178.      */
  179.     public IdPortType readIdPortType(byte[] in) throws DeserializerException {
  180.         return (IdPortType) this.xmlToObj(in, IdPortType.class);
  181.     }  
  182.    
  183.     /**
  184.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdPortType}
  185.      *
  186.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdPortType}
  187.      * @return Object type {@link org.openspcoop2.core.commons.search.IdPortType}
  188.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  189.      */
  190.     public IdPortType readIdPortTypeFromString(String in) throws DeserializerException {
  191.         return (IdPortType) this.xmlToObj(in.getBytes(), IdPortType.class);
  192.     }  
  193.    
  194.    
  195.    
  196.     /*
  197.      =================================================================================
  198.      Object: porta-applicativa
  199.      =================================================================================
  200.     */
  201.    
  202.     /**
  203.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.PortaApplicativa}
  204.      *
  205.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaApplicativa}
  206.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaApplicativa}
  207.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  208.      */
  209.     public PortaApplicativa readPortaApplicativa(String fileName) throws DeserializerException {
  210.         return (PortaApplicativa) this.xmlToObj(fileName, PortaApplicativa.class);
  211.     }
  212.    
  213.     /**
  214.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.PortaApplicativa}
  215.      *
  216.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaApplicativa}
  217.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaApplicativa}
  218.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  219.      */
  220.     public PortaApplicativa readPortaApplicativa(File file) throws DeserializerException {
  221.         return (PortaApplicativa) this.xmlToObj(file, PortaApplicativa.class);
  222.     }
  223.    
  224.     /**
  225.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortaApplicativa}
  226.      *
  227.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaApplicativa}
  228.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaApplicativa}
  229.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  230.      */
  231.     public PortaApplicativa readPortaApplicativa(InputStream in) throws DeserializerException {
  232.         return (PortaApplicativa) this.xmlToObj(in, PortaApplicativa.class);
  233.     }  
  234.    
  235.     /**
  236.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortaApplicativa}
  237.      *
  238.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaApplicativa}
  239.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaApplicativa}
  240.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  241.      */
  242.     public PortaApplicativa readPortaApplicativa(byte[] in) throws DeserializerException {
  243.         return (PortaApplicativa) this.xmlToObj(in, PortaApplicativa.class);
  244.     }  
  245.    
  246.     /**
  247.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortaApplicativa}
  248.      *
  249.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaApplicativa}
  250.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaApplicativa}
  251.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  252.      */
  253.     public PortaApplicativa readPortaApplicativaFromString(String in) throws DeserializerException {
  254.         return (PortaApplicativa) this.xmlToObj(in.getBytes(), PortaApplicativa.class);
  255.     }  
  256.    
  257.    
  258.    
  259.     /*
  260.      =================================================================================
  261.      Object: id-soggetto
  262.      =================================================================================
  263.     */
  264.    
  265.     /**
  266.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.IdSoggetto}
  267.      *
  268.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdSoggetto}
  269.      * @return Object type {@link org.openspcoop2.core.commons.search.IdSoggetto}
  270.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  271.      */
  272.     public IdSoggetto readIdSoggetto(String fileName) throws DeserializerException {
  273.         return (IdSoggetto) this.xmlToObj(fileName, IdSoggetto.class);
  274.     }
  275.    
  276.     /**
  277.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.IdSoggetto}
  278.      *
  279.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdSoggetto}
  280.      * @return Object type {@link org.openspcoop2.core.commons.search.IdSoggetto}
  281.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  282.      */
  283.     public IdSoggetto readIdSoggetto(File file) throws DeserializerException {
  284.         return (IdSoggetto) this.xmlToObj(file, IdSoggetto.class);
  285.     }
  286.    
  287.     /**
  288.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdSoggetto}
  289.      *
  290.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdSoggetto}
  291.      * @return Object type {@link org.openspcoop2.core.commons.search.IdSoggetto}
  292.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  293.      */
  294.     public IdSoggetto readIdSoggetto(InputStream in) throws DeserializerException {
  295.         return (IdSoggetto) this.xmlToObj(in, IdSoggetto.class);
  296.     }  
  297.    
  298.     /**
  299.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdSoggetto}
  300.      *
  301.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdSoggetto}
  302.      * @return Object type {@link org.openspcoop2.core.commons.search.IdSoggetto}
  303.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  304.      */
  305.     public IdSoggetto readIdSoggetto(byte[] in) throws DeserializerException {
  306.         return (IdSoggetto) this.xmlToObj(in, IdSoggetto.class);
  307.     }  
  308.    
  309.     /**
  310.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdSoggetto}
  311.      *
  312.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdSoggetto}
  313.      * @return Object type {@link org.openspcoop2.core.commons.search.IdSoggetto}
  314.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  315.      */
  316.     public IdSoggetto readIdSoggettoFromString(String in) throws DeserializerException {
  317.         return (IdSoggetto) this.xmlToObj(in.getBytes(), IdSoggetto.class);
  318.     }  
  319.    
  320.    
  321.    
  322.     /*
  323.      =================================================================================
  324.      Object: porta-applicativa-servizio-applicativo
  325.      =================================================================================
  326.     */
  327.    
  328.     /**
  329.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.PortaApplicativaServizioApplicativo}
  330.      *
  331.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaApplicativaServizioApplicativo}
  332.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaApplicativaServizioApplicativo}
  333.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  334.      */
  335.     public PortaApplicativaServizioApplicativo readPortaApplicativaServizioApplicativo(String fileName) throws DeserializerException {
  336.         return (PortaApplicativaServizioApplicativo) this.xmlToObj(fileName, PortaApplicativaServizioApplicativo.class);
  337.     }
  338.    
  339.     /**
  340.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.PortaApplicativaServizioApplicativo}
  341.      *
  342.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaApplicativaServizioApplicativo}
  343.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaApplicativaServizioApplicativo}
  344.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  345.      */
  346.     public PortaApplicativaServizioApplicativo readPortaApplicativaServizioApplicativo(File file) throws DeserializerException {
  347.         return (PortaApplicativaServizioApplicativo) this.xmlToObj(file, PortaApplicativaServizioApplicativo.class);
  348.     }
  349.    
  350.     /**
  351.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortaApplicativaServizioApplicativo}
  352.      *
  353.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaApplicativaServizioApplicativo}
  354.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaApplicativaServizioApplicativo}
  355.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  356.      */
  357.     public PortaApplicativaServizioApplicativo readPortaApplicativaServizioApplicativo(InputStream in) throws DeserializerException {
  358.         return (PortaApplicativaServizioApplicativo) this.xmlToObj(in, PortaApplicativaServizioApplicativo.class);
  359.     }  
  360.    
  361.     /**
  362.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortaApplicativaServizioApplicativo}
  363.      *
  364.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaApplicativaServizioApplicativo}
  365.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaApplicativaServizioApplicativo}
  366.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  367.      */
  368.     public PortaApplicativaServizioApplicativo readPortaApplicativaServizioApplicativo(byte[] in) throws DeserializerException {
  369.         return (PortaApplicativaServizioApplicativo) this.xmlToObj(in, PortaApplicativaServizioApplicativo.class);
  370.     }  
  371.    
  372.     /**
  373.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortaApplicativaServizioApplicativo}
  374.      *
  375.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaApplicativaServizioApplicativo}
  376.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaApplicativaServizioApplicativo}
  377.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  378.      */
  379.     public PortaApplicativaServizioApplicativo readPortaApplicativaServizioApplicativoFromString(String in) throws DeserializerException {
  380.         return (PortaApplicativaServizioApplicativo) this.xmlToObj(in.getBytes(), PortaApplicativaServizioApplicativo.class);
  381.     }  
  382.    
  383.    
  384.    
  385.     /*
  386.      =================================================================================
  387.      Object: porta-applicativa-azione
  388.      =================================================================================
  389.     */
  390.    
  391.     /**
  392.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.PortaApplicativaAzione}
  393.      *
  394.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaApplicativaAzione}
  395.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaApplicativaAzione}
  396.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  397.      */
  398.     public PortaApplicativaAzione readPortaApplicativaAzione(String fileName) throws DeserializerException {
  399.         return (PortaApplicativaAzione) this.xmlToObj(fileName, PortaApplicativaAzione.class);
  400.     }
  401.    
  402.     /**
  403.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.PortaApplicativaAzione}
  404.      *
  405.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaApplicativaAzione}
  406.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaApplicativaAzione}
  407.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  408.      */
  409.     public PortaApplicativaAzione readPortaApplicativaAzione(File file) throws DeserializerException {
  410.         return (PortaApplicativaAzione) this.xmlToObj(file, PortaApplicativaAzione.class);
  411.     }
  412.    
  413.     /**
  414.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortaApplicativaAzione}
  415.      *
  416.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaApplicativaAzione}
  417.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaApplicativaAzione}
  418.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  419.      */
  420.     public PortaApplicativaAzione readPortaApplicativaAzione(InputStream in) throws DeserializerException {
  421.         return (PortaApplicativaAzione) this.xmlToObj(in, PortaApplicativaAzione.class);
  422.     }  
  423.    
  424.     /**
  425.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortaApplicativaAzione}
  426.      *
  427.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaApplicativaAzione}
  428.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaApplicativaAzione}
  429.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  430.      */
  431.     public PortaApplicativaAzione readPortaApplicativaAzione(byte[] in) throws DeserializerException {
  432.         return (PortaApplicativaAzione) this.xmlToObj(in, PortaApplicativaAzione.class);
  433.     }  
  434.    
  435.     /**
  436.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortaApplicativaAzione}
  437.      *
  438.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaApplicativaAzione}
  439.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaApplicativaAzione}
  440.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  441.      */
  442.     public PortaApplicativaAzione readPortaApplicativaAzioneFromString(String in) throws DeserializerException {
  443.         return (PortaApplicativaAzione) this.xmlToObj(in.getBytes(), PortaApplicativaAzione.class);
  444.     }  
  445.    
  446.    
  447.    
  448.     /*
  449.      =================================================================================
  450.      Object: resource
  451.      =================================================================================
  452.     */
  453.    
  454.     /**
  455.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.Resource}
  456.      *
  457.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Resource}
  458.      * @return Object type {@link org.openspcoop2.core.commons.search.Resource}
  459.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  460.      */
  461.     public Resource readResource(String fileName) throws DeserializerException {
  462.         return (Resource) this.xmlToObj(fileName, Resource.class);
  463.     }
  464.    
  465.     /**
  466.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.Resource}
  467.      *
  468.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Resource}
  469.      * @return Object type {@link org.openspcoop2.core.commons.search.Resource}
  470.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  471.      */
  472.     public Resource readResource(File file) throws DeserializerException {
  473.         return (Resource) this.xmlToObj(file, Resource.class);
  474.     }
  475.    
  476.     /**
  477.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.Resource}
  478.      *
  479.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Resource}
  480.      * @return Object type {@link org.openspcoop2.core.commons.search.Resource}
  481.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  482.      */
  483.     public Resource readResource(InputStream in) throws DeserializerException {
  484.         return (Resource) this.xmlToObj(in, Resource.class);
  485.     }  
  486.    
  487.     /**
  488.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.Resource}
  489.      *
  490.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Resource}
  491.      * @return Object type {@link org.openspcoop2.core.commons.search.Resource}
  492.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  493.      */
  494.     public Resource readResource(byte[] in) throws DeserializerException {
  495.         return (Resource) this.xmlToObj(in, Resource.class);
  496.     }  
  497.    
  498.     /**
  499.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.Resource}
  500.      *
  501.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Resource}
  502.      * @return Object type {@link org.openspcoop2.core.commons.search.Resource}
  503.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  504.      */
  505.     public Resource readResourceFromString(String in) throws DeserializerException {
  506.         return (Resource) this.xmlToObj(in.getBytes(), Resource.class);
  507.     }  
  508.    
  509.    
  510.    
  511.     /*
  512.      =================================================================================
  513.      Object: id-accordo-servizio-parte-comune
  514.      =================================================================================
  515.     */
  516.    
  517.     /**
  518.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComune}
  519.      *
  520.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComune}
  521.      * @return Object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComune}
  522.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  523.      */
  524.     public IdAccordoServizioParteComune readIdAccordoServizioParteComune(String fileName) throws DeserializerException {
  525.         return (IdAccordoServizioParteComune) this.xmlToObj(fileName, IdAccordoServizioParteComune.class);
  526.     }
  527.    
  528.     /**
  529.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComune}
  530.      *
  531.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComune}
  532.      * @return Object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComune}
  533.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  534.      */
  535.     public IdAccordoServizioParteComune readIdAccordoServizioParteComune(File file) throws DeserializerException {
  536.         return (IdAccordoServizioParteComune) this.xmlToObj(file, IdAccordoServizioParteComune.class);
  537.     }
  538.    
  539.     /**
  540.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComune}
  541.      *
  542.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComune}
  543.      * @return Object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComune}
  544.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  545.      */
  546.     public IdAccordoServizioParteComune readIdAccordoServizioParteComune(InputStream in) throws DeserializerException {
  547.         return (IdAccordoServizioParteComune) this.xmlToObj(in, IdAccordoServizioParteComune.class);
  548.     }  
  549.    
  550.     /**
  551.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComune}
  552.      *
  553.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComune}
  554.      * @return Object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComune}
  555.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  556.      */
  557.     public IdAccordoServizioParteComune readIdAccordoServizioParteComune(byte[] in) throws DeserializerException {
  558.         return (IdAccordoServizioParteComune) this.xmlToObj(in, IdAccordoServizioParteComune.class);
  559.     }  
  560.    
  561.     /**
  562.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComune}
  563.      *
  564.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComune}
  565.      * @return Object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComune}
  566.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  567.      */
  568.     public IdAccordoServizioParteComune readIdAccordoServizioParteComuneFromString(String in) throws DeserializerException {
  569.         return (IdAccordoServizioParteComune) this.xmlToObj(in.getBytes(), IdAccordoServizioParteComune.class);
  570.     }  
  571.    
  572.    
  573.    
  574.     /*
  575.      =================================================================================
  576.      Object: accordo-servizio-parte-comune-azione
  577.      =================================================================================
  578.     */
  579.    
  580.     /**
  581.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneAzione}
  582.      *
  583.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneAzione}
  584.      * @return Object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneAzione}
  585.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  586.      */
  587.     public AccordoServizioParteComuneAzione readAccordoServizioParteComuneAzione(String fileName) throws DeserializerException {
  588.         return (AccordoServizioParteComuneAzione) this.xmlToObj(fileName, AccordoServizioParteComuneAzione.class);
  589.     }
  590.    
  591.     /**
  592.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneAzione}
  593.      *
  594.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneAzione}
  595.      * @return Object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneAzione}
  596.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  597.      */
  598.     public AccordoServizioParteComuneAzione readAccordoServizioParteComuneAzione(File file) throws DeserializerException {
  599.         return (AccordoServizioParteComuneAzione) this.xmlToObj(file, AccordoServizioParteComuneAzione.class);
  600.     }
  601.    
  602.     /**
  603.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneAzione}
  604.      *
  605.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneAzione}
  606.      * @return Object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneAzione}
  607.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  608.      */
  609.     public AccordoServizioParteComuneAzione readAccordoServizioParteComuneAzione(InputStream in) throws DeserializerException {
  610.         return (AccordoServizioParteComuneAzione) this.xmlToObj(in, AccordoServizioParteComuneAzione.class);
  611.     }  
  612.    
  613.     /**
  614.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneAzione}
  615.      *
  616.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneAzione}
  617.      * @return Object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneAzione}
  618.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  619.      */
  620.     public AccordoServizioParteComuneAzione readAccordoServizioParteComuneAzione(byte[] in) throws DeserializerException {
  621.         return (AccordoServizioParteComuneAzione) this.xmlToObj(in, AccordoServizioParteComuneAzione.class);
  622.     }  
  623.    
  624.     /**
  625.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneAzione}
  626.      *
  627.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneAzione}
  628.      * @return Object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneAzione}
  629.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  630.      */
  631.     public AccordoServizioParteComuneAzione readAccordoServizioParteComuneAzioneFromString(String in) throws DeserializerException {
  632.         return (AccordoServizioParteComuneAzione) this.xmlToObj(in.getBytes(), AccordoServizioParteComuneAzione.class);
  633.     }  
  634.    
  635.    
  636.    
  637.     /*
  638.      =================================================================================
  639.      Object: id-ruolo
  640.      =================================================================================
  641.     */
  642.    
  643.     /**
  644.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.IdRuolo}
  645.      *
  646.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdRuolo}
  647.      * @return Object type {@link org.openspcoop2.core.commons.search.IdRuolo}
  648.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  649.      */
  650.     public IdRuolo readIdRuolo(String fileName) throws DeserializerException {
  651.         return (IdRuolo) this.xmlToObj(fileName, IdRuolo.class);
  652.     }
  653.    
  654.     /**
  655.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.IdRuolo}
  656.      *
  657.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdRuolo}
  658.      * @return Object type {@link org.openspcoop2.core.commons.search.IdRuolo}
  659.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  660.      */
  661.     public IdRuolo readIdRuolo(File file) throws DeserializerException {
  662.         return (IdRuolo) this.xmlToObj(file, IdRuolo.class);
  663.     }
  664.    
  665.     /**
  666.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdRuolo}
  667.      *
  668.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdRuolo}
  669.      * @return Object type {@link org.openspcoop2.core.commons.search.IdRuolo}
  670.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  671.      */
  672.     public IdRuolo readIdRuolo(InputStream in) throws DeserializerException {
  673.         return (IdRuolo) this.xmlToObj(in, IdRuolo.class);
  674.     }  
  675.    
  676.     /**
  677.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdRuolo}
  678.      *
  679.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdRuolo}
  680.      * @return Object type {@link org.openspcoop2.core.commons.search.IdRuolo}
  681.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  682.      */
  683.     public IdRuolo readIdRuolo(byte[] in) throws DeserializerException {
  684.         return (IdRuolo) this.xmlToObj(in, IdRuolo.class);
  685.     }  
  686.    
  687.     /**
  688.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdRuolo}
  689.      *
  690.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdRuolo}
  691.      * @return Object type {@link org.openspcoop2.core.commons.search.IdRuolo}
  692.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  693.      */
  694.     public IdRuolo readIdRuoloFromString(String in) throws DeserializerException {
  695.         return (IdRuolo) this.xmlToObj(in.getBytes(), IdRuolo.class);
  696.     }  
  697.    
  698.    
  699.    
  700.     /*
  701.      =================================================================================
  702.      Object: id-porta-dominio
  703.      =================================================================================
  704.     */
  705.    
  706.     /**
  707.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.IdPortaDominio}
  708.      *
  709.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdPortaDominio}
  710.      * @return Object type {@link org.openspcoop2.core.commons.search.IdPortaDominio}
  711.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  712.      */
  713.     public IdPortaDominio readIdPortaDominio(String fileName) throws DeserializerException {
  714.         return (IdPortaDominio) this.xmlToObj(fileName, IdPortaDominio.class);
  715.     }
  716.    
  717.     /**
  718.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.IdPortaDominio}
  719.      *
  720.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdPortaDominio}
  721.      * @return Object type {@link org.openspcoop2.core.commons.search.IdPortaDominio}
  722.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  723.      */
  724.     public IdPortaDominio readIdPortaDominio(File file) throws DeserializerException {
  725.         return (IdPortaDominio) this.xmlToObj(file, IdPortaDominio.class);
  726.     }
  727.    
  728.     /**
  729.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdPortaDominio}
  730.      *
  731.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdPortaDominio}
  732.      * @return Object type {@link org.openspcoop2.core.commons.search.IdPortaDominio}
  733.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  734.      */
  735.     public IdPortaDominio readIdPortaDominio(InputStream in) throws DeserializerException {
  736.         return (IdPortaDominio) this.xmlToObj(in, IdPortaDominio.class);
  737.     }  
  738.    
  739.     /**
  740.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdPortaDominio}
  741.      *
  742.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdPortaDominio}
  743.      * @return Object type {@link org.openspcoop2.core.commons.search.IdPortaDominio}
  744.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  745.      */
  746.     public IdPortaDominio readIdPortaDominio(byte[] in) throws DeserializerException {
  747.         return (IdPortaDominio) this.xmlToObj(in, IdPortaDominio.class);
  748.     }  
  749.    
  750.     /**
  751.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdPortaDominio}
  752.      *
  753.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdPortaDominio}
  754.      * @return Object type {@link org.openspcoop2.core.commons.search.IdPortaDominio}
  755.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  756.      */
  757.     public IdPortaDominio readIdPortaDominioFromString(String in) throws DeserializerException {
  758.         return (IdPortaDominio) this.xmlToObj(in.getBytes(), IdPortaDominio.class);
  759.     }  
  760.    
  761.    
  762.    
  763.     /*
  764.      =================================================================================
  765.      Object: id-accordo-servizio-parte-specifica
  766.      =================================================================================
  767.     */
  768.    
  769.     /**
  770.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteSpecifica}
  771.      *
  772.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteSpecifica}
  773.      * @return Object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteSpecifica}
  774.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  775.      */
  776.     public IdAccordoServizioParteSpecifica readIdAccordoServizioParteSpecifica(String fileName) throws DeserializerException {
  777.         return (IdAccordoServizioParteSpecifica) this.xmlToObj(fileName, IdAccordoServizioParteSpecifica.class);
  778.     }
  779.    
  780.     /**
  781.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteSpecifica}
  782.      *
  783.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteSpecifica}
  784.      * @return Object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteSpecifica}
  785.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  786.      */
  787.     public IdAccordoServizioParteSpecifica readIdAccordoServizioParteSpecifica(File file) throws DeserializerException {
  788.         return (IdAccordoServizioParteSpecifica) this.xmlToObj(file, IdAccordoServizioParteSpecifica.class);
  789.     }
  790.    
  791.     /**
  792.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteSpecifica}
  793.      *
  794.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteSpecifica}
  795.      * @return Object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteSpecifica}
  796.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  797.      */
  798.     public IdAccordoServizioParteSpecifica readIdAccordoServizioParteSpecifica(InputStream in) throws DeserializerException {
  799.         return (IdAccordoServizioParteSpecifica) this.xmlToObj(in, IdAccordoServizioParteSpecifica.class);
  800.     }  
  801.    
  802.     /**
  803.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteSpecifica}
  804.      *
  805.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteSpecifica}
  806.      * @return Object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteSpecifica}
  807.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  808.      */
  809.     public IdAccordoServizioParteSpecifica readIdAccordoServizioParteSpecifica(byte[] in) throws DeserializerException {
  810.         return (IdAccordoServizioParteSpecifica) this.xmlToObj(in, IdAccordoServizioParteSpecifica.class);
  811.     }  
  812.    
  813.     /**
  814.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteSpecifica}
  815.      *
  816.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteSpecifica}
  817.      * @return Object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteSpecifica}
  818.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  819.      */
  820.     public IdAccordoServizioParteSpecifica readIdAccordoServizioParteSpecificaFromString(String in) throws DeserializerException {
  821.         return (IdAccordoServizioParteSpecifica) this.xmlToObj(in.getBytes(), IdAccordoServizioParteSpecifica.class);
  822.     }  
  823.    
  824.    
  825.    
  826.     /*
  827.      =================================================================================
  828.      Object: servizio-applicativo-ruolo
  829.      =================================================================================
  830.     */
  831.    
  832.     /**
  833.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoRuolo}
  834.      *
  835.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoRuolo}
  836.      * @return Object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoRuolo}
  837.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  838.      */
  839.     public ServizioApplicativoRuolo readServizioApplicativoRuolo(String fileName) throws DeserializerException {
  840.         return (ServizioApplicativoRuolo) this.xmlToObj(fileName, ServizioApplicativoRuolo.class);
  841.     }
  842.    
  843.     /**
  844.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoRuolo}
  845.      *
  846.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoRuolo}
  847.      * @return Object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoRuolo}
  848.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  849.      */
  850.     public ServizioApplicativoRuolo readServizioApplicativoRuolo(File file) throws DeserializerException {
  851.         return (ServizioApplicativoRuolo) this.xmlToObj(file, ServizioApplicativoRuolo.class);
  852.     }
  853.    
  854.     /**
  855.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoRuolo}
  856.      *
  857.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoRuolo}
  858.      * @return Object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoRuolo}
  859.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  860.      */
  861.     public ServizioApplicativoRuolo readServizioApplicativoRuolo(InputStream in) throws DeserializerException {
  862.         return (ServizioApplicativoRuolo) this.xmlToObj(in, ServizioApplicativoRuolo.class);
  863.     }  
  864.    
  865.     /**
  866.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoRuolo}
  867.      *
  868.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoRuolo}
  869.      * @return Object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoRuolo}
  870.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  871.      */
  872.     public ServizioApplicativoRuolo readServizioApplicativoRuolo(byte[] in) throws DeserializerException {
  873.         return (ServizioApplicativoRuolo) this.xmlToObj(in, ServizioApplicativoRuolo.class);
  874.     }  
  875.    
  876.     /**
  877.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoRuolo}
  878.      *
  879.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoRuolo}
  880.      * @return Object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoRuolo}
  881.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  882.      */
  883.     public ServizioApplicativoRuolo readServizioApplicativoRuoloFromString(String in) throws DeserializerException {
  884.         return (ServizioApplicativoRuolo) this.xmlToObj(in.getBytes(), ServizioApplicativoRuolo.class);
  885.     }  
  886.    
  887.    
  888.    
  889.     /*
  890.      =================================================================================
  891.      Object: id-accordo-servizio-parte-comune-azione
  892.      =================================================================================
  893.     */
  894.    
  895.     /**
  896.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneAzione}
  897.      *
  898.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneAzione}
  899.      * @return Object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneAzione}
  900.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  901.      */
  902.     public IdAccordoServizioParteComuneAzione readIdAccordoServizioParteComuneAzione(String fileName) throws DeserializerException {
  903.         return (IdAccordoServizioParteComuneAzione) this.xmlToObj(fileName, IdAccordoServizioParteComuneAzione.class);
  904.     }
  905.    
  906.     /**
  907.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneAzione}
  908.      *
  909.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneAzione}
  910.      * @return Object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneAzione}
  911.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  912.      */
  913.     public IdAccordoServizioParteComuneAzione readIdAccordoServizioParteComuneAzione(File file) throws DeserializerException {
  914.         return (IdAccordoServizioParteComuneAzione) this.xmlToObj(file, IdAccordoServizioParteComuneAzione.class);
  915.     }
  916.    
  917.     /**
  918.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneAzione}
  919.      *
  920.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneAzione}
  921.      * @return Object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneAzione}
  922.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  923.      */
  924.     public IdAccordoServizioParteComuneAzione readIdAccordoServizioParteComuneAzione(InputStream in) throws DeserializerException {
  925.         return (IdAccordoServizioParteComuneAzione) this.xmlToObj(in, IdAccordoServizioParteComuneAzione.class);
  926.     }  
  927.    
  928.     /**
  929.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneAzione}
  930.      *
  931.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneAzione}
  932.      * @return Object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneAzione}
  933.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  934.      */
  935.     public IdAccordoServizioParteComuneAzione readIdAccordoServizioParteComuneAzione(byte[] in) throws DeserializerException {
  936.         return (IdAccordoServizioParteComuneAzione) this.xmlToObj(in, IdAccordoServizioParteComuneAzione.class);
  937.     }  
  938.    
  939.     /**
  940.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneAzione}
  941.      *
  942.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneAzione}
  943.      * @return Object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneAzione}
  944.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  945.      */
  946.     public IdAccordoServizioParteComuneAzione readIdAccordoServizioParteComuneAzioneFromString(String in) throws DeserializerException {
  947.         return (IdAccordoServizioParteComuneAzione) this.xmlToObj(in.getBytes(), IdAccordoServizioParteComuneAzione.class);
  948.     }  
  949.    
  950.    
  951.    
  952.     /*
  953.      =================================================================================
  954.      Object: accordo-servizio-parte-specifica
  955.      =================================================================================
  956.     */
  957.    
  958.     /**
  959.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteSpecifica}
  960.      *
  961.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteSpecifica}
  962.      * @return Object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteSpecifica}
  963.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  964.      */
  965.     public AccordoServizioParteSpecifica readAccordoServizioParteSpecifica(String fileName) throws DeserializerException {
  966.         return (AccordoServizioParteSpecifica) this.xmlToObj(fileName, AccordoServizioParteSpecifica.class);
  967.     }
  968.    
  969.     /**
  970.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteSpecifica}
  971.      *
  972.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteSpecifica}
  973.      * @return Object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteSpecifica}
  974.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  975.      */
  976.     public AccordoServizioParteSpecifica readAccordoServizioParteSpecifica(File file) throws DeserializerException {
  977.         return (AccordoServizioParteSpecifica) this.xmlToObj(file, AccordoServizioParteSpecifica.class);
  978.     }
  979.    
  980.     /**
  981.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteSpecifica}
  982.      *
  983.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteSpecifica}
  984.      * @return Object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteSpecifica}
  985.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  986.      */
  987.     public AccordoServizioParteSpecifica readAccordoServizioParteSpecifica(InputStream in) throws DeserializerException {
  988.         return (AccordoServizioParteSpecifica) this.xmlToObj(in, AccordoServizioParteSpecifica.class);
  989.     }  
  990.    
  991.     /**
  992.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteSpecifica}
  993.      *
  994.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteSpecifica}
  995.      * @return Object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteSpecifica}
  996.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  997.      */
  998.     public AccordoServizioParteSpecifica readAccordoServizioParteSpecifica(byte[] in) throws DeserializerException {
  999.         return (AccordoServizioParteSpecifica) this.xmlToObj(in, AccordoServizioParteSpecifica.class);
  1000.     }  
  1001.    
  1002.     /**
  1003.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteSpecifica}
  1004.      *
  1005.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteSpecifica}
  1006.      * @return Object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteSpecifica}
  1007.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1008.      */
  1009.     public AccordoServizioParteSpecifica readAccordoServizioParteSpecificaFromString(String in) throws DeserializerException {
  1010.         return (AccordoServizioParteSpecifica) this.xmlToObj(in.getBytes(), AccordoServizioParteSpecifica.class);
  1011.     }  
  1012.    
  1013.    
  1014.    
  1015.     /*
  1016.      =================================================================================
  1017.      Object: servizio-applicativo-proprieta-protocollo
  1018.      =================================================================================
  1019.     */
  1020.    
  1021.     /**
  1022.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoProprietaProtocollo}
  1023.      *
  1024.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoProprietaProtocollo}
  1025.      * @return Object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoProprietaProtocollo}
  1026.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1027.      */
  1028.     public ServizioApplicativoProprietaProtocollo readServizioApplicativoProprietaProtocollo(String fileName) throws DeserializerException {
  1029.         return (ServizioApplicativoProprietaProtocollo) this.xmlToObj(fileName, ServizioApplicativoProprietaProtocollo.class);
  1030.     }
  1031.    
  1032.     /**
  1033.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoProprietaProtocollo}
  1034.      *
  1035.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoProprietaProtocollo}
  1036.      * @return Object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoProprietaProtocollo}
  1037.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1038.      */
  1039.     public ServizioApplicativoProprietaProtocollo readServizioApplicativoProprietaProtocollo(File file) throws DeserializerException {
  1040.         return (ServizioApplicativoProprietaProtocollo) this.xmlToObj(file, ServizioApplicativoProprietaProtocollo.class);
  1041.     }
  1042.    
  1043.     /**
  1044.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoProprietaProtocollo}
  1045.      *
  1046.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoProprietaProtocollo}
  1047.      * @return Object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoProprietaProtocollo}
  1048.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1049.      */
  1050.     public ServizioApplicativoProprietaProtocollo readServizioApplicativoProprietaProtocollo(InputStream in) throws DeserializerException {
  1051.         return (ServizioApplicativoProprietaProtocollo) this.xmlToObj(in, ServizioApplicativoProprietaProtocollo.class);
  1052.     }  
  1053.    
  1054.     /**
  1055.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoProprietaProtocollo}
  1056.      *
  1057.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoProprietaProtocollo}
  1058.      * @return Object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoProprietaProtocollo}
  1059.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1060.      */
  1061.     public ServizioApplicativoProprietaProtocollo readServizioApplicativoProprietaProtocollo(byte[] in) throws DeserializerException {
  1062.         return (ServizioApplicativoProprietaProtocollo) this.xmlToObj(in, ServizioApplicativoProprietaProtocollo.class);
  1063.     }  
  1064.    
  1065.     /**
  1066.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoProprietaProtocollo}
  1067.      *
  1068.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoProprietaProtocollo}
  1069.      * @return Object type {@link org.openspcoop2.core.commons.search.ServizioApplicativoProprietaProtocollo}
  1070.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1071.      */
  1072.     public ServizioApplicativoProprietaProtocollo readServizioApplicativoProprietaProtocolloFromString(String in) throws DeserializerException {
  1073.         return (ServizioApplicativoProprietaProtocollo) this.xmlToObj(in.getBytes(), ServizioApplicativoProprietaProtocollo.class);
  1074.     }  
  1075.    
  1076.    
  1077.    
  1078.     /*
  1079.      =================================================================================
  1080.      Object: ruolo
  1081.      =================================================================================
  1082.     */
  1083.    
  1084.     /**
  1085.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.Ruolo}
  1086.      *
  1087.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Ruolo}
  1088.      * @return Object type {@link org.openspcoop2.core.commons.search.Ruolo}
  1089.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1090.      */
  1091.     public Ruolo readRuolo(String fileName) throws DeserializerException {
  1092.         return (Ruolo) this.xmlToObj(fileName, Ruolo.class);
  1093.     }
  1094.    
  1095.     /**
  1096.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.Ruolo}
  1097.      *
  1098.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Ruolo}
  1099.      * @return Object type {@link org.openspcoop2.core.commons.search.Ruolo}
  1100.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1101.      */
  1102.     public Ruolo readRuolo(File file) throws DeserializerException {
  1103.         return (Ruolo) this.xmlToObj(file, Ruolo.class);
  1104.     }
  1105.    
  1106.     /**
  1107.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.Ruolo}
  1108.      *
  1109.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Ruolo}
  1110.      * @return Object type {@link org.openspcoop2.core.commons.search.Ruolo}
  1111.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1112.      */
  1113.     public Ruolo readRuolo(InputStream in) throws DeserializerException {
  1114.         return (Ruolo) this.xmlToObj(in, Ruolo.class);
  1115.     }  
  1116.    
  1117.     /**
  1118.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.Ruolo}
  1119.      *
  1120.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Ruolo}
  1121.      * @return Object type {@link org.openspcoop2.core.commons.search.Ruolo}
  1122.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1123.      */
  1124.     public Ruolo readRuolo(byte[] in) throws DeserializerException {
  1125.         return (Ruolo) this.xmlToObj(in, Ruolo.class);
  1126.     }  
  1127.    
  1128.     /**
  1129.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.Ruolo}
  1130.      *
  1131.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Ruolo}
  1132.      * @return Object type {@link org.openspcoop2.core.commons.search.Ruolo}
  1133.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1134.      */
  1135.     public Ruolo readRuoloFromString(String in) throws DeserializerException {
  1136.         return (Ruolo) this.xmlToObj(in.getBytes(), Ruolo.class);
  1137.     }  
  1138.    
  1139.    
  1140.    
  1141.     /*
  1142.      =================================================================================
  1143.      Object: soggetto-ruolo
  1144.      =================================================================================
  1145.     */
  1146.    
  1147.     /**
  1148.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.SoggettoRuolo}
  1149.      *
  1150.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.SoggettoRuolo}
  1151.      * @return Object type {@link org.openspcoop2.core.commons.search.SoggettoRuolo}
  1152.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1153.      */
  1154.     public SoggettoRuolo readSoggettoRuolo(String fileName) throws DeserializerException {
  1155.         return (SoggettoRuolo) this.xmlToObj(fileName, SoggettoRuolo.class);
  1156.     }
  1157.    
  1158.     /**
  1159.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.SoggettoRuolo}
  1160.      *
  1161.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.SoggettoRuolo}
  1162.      * @return Object type {@link org.openspcoop2.core.commons.search.SoggettoRuolo}
  1163.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1164.      */
  1165.     public SoggettoRuolo readSoggettoRuolo(File file) throws DeserializerException {
  1166.         return (SoggettoRuolo) this.xmlToObj(file, SoggettoRuolo.class);
  1167.     }
  1168.    
  1169.     /**
  1170.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.SoggettoRuolo}
  1171.      *
  1172.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.SoggettoRuolo}
  1173.      * @return Object type {@link org.openspcoop2.core.commons.search.SoggettoRuolo}
  1174.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1175.      */
  1176.     public SoggettoRuolo readSoggettoRuolo(InputStream in) throws DeserializerException {
  1177.         return (SoggettoRuolo) this.xmlToObj(in, SoggettoRuolo.class);
  1178.     }  
  1179.    
  1180.     /**
  1181.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.SoggettoRuolo}
  1182.      *
  1183.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.SoggettoRuolo}
  1184.      * @return Object type {@link org.openspcoop2.core.commons.search.SoggettoRuolo}
  1185.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1186.      */
  1187.     public SoggettoRuolo readSoggettoRuolo(byte[] in) throws DeserializerException {
  1188.         return (SoggettoRuolo) this.xmlToObj(in, SoggettoRuolo.class);
  1189.     }  
  1190.    
  1191.     /**
  1192.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.SoggettoRuolo}
  1193.      *
  1194.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.SoggettoRuolo}
  1195.      * @return Object type {@link org.openspcoop2.core.commons.search.SoggettoRuolo}
  1196.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1197.      */
  1198.     public SoggettoRuolo readSoggettoRuoloFromString(String in) throws DeserializerException {
  1199.         return (SoggettoRuolo) this.xmlToObj(in.getBytes(), SoggettoRuolo.class);
  1200.     }  
  1201.    
  1202.    
  1203.    
  1204.     /*
  1205.      =================================================================================
  1206.      Object: servizio-applicativo
  1207.      =================================================================================
  1208.     */
  1209.    
  1210.     /**
  1211.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativo}
  1212.      *
  1213.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativo}
  1214.      * @return Object type {@link org.openspcoop2.core.commons.search.ServizioApplicativo}
  1215.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1216.      */
  1217.     public ServizioApplicativo readServizioApplicativo(String fileName) throws DeserializerException {
  1218.         return (ServizioApplicativo) this.xmlToObj(fileName, ServizioApplicativo.class);
  1219.     }
  1220.    
  1221.     /**
  1222.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativo}
  1223.      *
  1224.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativo}
  1225.      * @return Object type {@link org.openspcoop2.core.commons.search.ServizioApplicativo}
  1226.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1227.      */
  1228.     public ServizioApplicativo readServizioApplicativo(File file) throws DeserializerException {
  1229.         return (ServizioApplicativo) this.xmlToObj(file, ServizioApplicativo.class);
  1230.     }
  1231.    
  1232.     /**
  1233.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativo}
  1234.      *
  1235.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativo}
  1236.      * @return Object type {@link org.openspcoop2.core.commons.search.ServizioApplicativo}
  1237.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1238.      */
  1239.     public ServizioApplicativo readServizioApplicativo(InputStream in) throws DeserializerException {
  1240.         return (ServizioApplicativo) this.xmlToObj(in, ServizioApplicativo.class);
  1241.     }  
  1242.    
  1243.     /**
  1244.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativo}
  1245.      *
  1246.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativo}
  1247.      * @return Object type {@link org.openspcoop2.core.commons.search.ServizioApplicativo}
  1248.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1249.      */
  1250.     public ServizioApplicativo readServizioApplicativo(byte[] in) throws DeserializerException {
  1251.         return (ServizioApplicativo) this.xmlToObj(in, ServizioApplicativo.class);
  1252.     }  
  1253.    
  1254.     /**
  1255.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativo}
  1256.      *
  1257.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.ServizioApplicativo}
  1258.      * @return Object type {@link org.openspcoop2.core.commons.search.ServizioApplicativo}
  1259.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1260.      */
  1261.     public ServizioApplicativo readServizioApplicativoFromString(String in) throws DeserializerException {
  1262.         return (ServizioApplicativo) this.xmlToObj(in.getBytes(), ServizioApplicativo.class);
  1263.     }  
  1264.    
  1265.    
  1266.    
  1267.     /*
  1268.      =================================================================================
  1269.      Object: id-gruppo
  1270.      =================================================================================
  1271.     */
  1272.    
  1273.     /**
  1274.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.IdGruppo}
  1275.      *
  1276.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdGruppo}
  1277.      * @return Object type {@link org.openspcoop2.core.commons.search.IdGruppo}
  1278.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1279.      */
  1280.     public IdGruppo readIdGruppo(String fileName) throws DeserializerException {
  1281.         return (IdGruppo) this.xmlToObj(fileName, IdGruppo.class);
  1282.     }
  1283.    
  1284.     /**
  1285.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.IdGruppo}
  1286.      *
  1287.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdGruppo}
  1288.      * @return Object type {@link org.openspcoop2.core.commons.search.IdGruppo}
  1289.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1290.      */
  1291.     public IdGruppo readIdGruppo(File file) throws DeserializerException {
  1292.         return (IdGruppo) this.xmlToObj(file, IdGruppo.class);
  1293.     }
  1294.    
  1295.     /**
  1296.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdGruppo}
  1297.      *
  1298.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdGruppo}
  1299.      * @return Object type {@link org.openspcoop2.core.commons.search.IdGruppo}
  1300.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1301.      */
  1302.     public IdGruppo readIdGruppo(InputStream in) throws DeserializerException {
  1303.         return (IdGruppo) this.xmlToObj(in, IdGruppo.class);
  1304.     }  
  1305.    
  1306.     /**
  1307.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdGruppo}
  1308.      *
  1309.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdGruppo}
  1310.      * @return Object type {@link org.openspcoop2.core.commons.search.IdGruppo}
  1311.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1312.      */
  1313.     public IdGruppo readIdGruppo(byte[] in) throws DeserializerException {
  1314.         return (IdGruppo) this.xmlToObj(in, IdGruppo.class);
  1315.     }  
  1316.    
  1317.     /**
  1318.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdGruppo}
  1319.      *
  1320.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdGruppo}
  1321.      * @return Object type {@link org.openspcoop2.core.commons.search.IdGruppo}
  1322.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1323.      */
  1324.     public IdGruppo readIdGruppoFromString(String in) throws DeserializerException {
  1325.         return (IdGruppo) this.xmlToObj(in.getBytes(), IdGruppo.class);
  1326.     }  
  1327.    
  1328.    
  1329.    
  1330.     /*
  1331.      =================================================================================
  1332.      Object: accordo-servizio-parte-comune-gruppo
  1333.      =================================================================================
  1334.     */
  1335.    
  1336.     /**
  1337.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneGruppo}
  1338.      *
  1339.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneGruppo}
  1340.      * @return Object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneGruppo}
  1341.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1342.      */
  1343.     public AccordoServizioParteComuneGruppo readAccordoServizioParteComuneGruppo(String fileName) throws DeserializerException {
  1344.         return (AccordoServizioParteComuneGruppo) this.xmlToObj(fileName, AccordoServizioParteComuneGruppo.class);
  1345.     }
  1346.    
  1347.     /**
  1348.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneGruppo}
  1349.      *
  1350.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneGruppo}
  1351.      * @return Object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneGruppo}
  1352.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1353.      */
  1354.     public AccordoServizioParteComuneGruppo readAccordoServizioParteComuneGruppo(File file) throws DeserializerException {
  1355.         return (AccordoServizioParteComuneGruppo) this.xmlToObj(file, AccordoServizioParteComuneGruppo.class);
  1356.     }
  1357.    
  1358.     /**
  1359.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneGruppo}
  1360.      *
  1361.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneGruppo}
  1362.      * @return Object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneGruppo}
  1363.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1364.      */
  1365.     public AccordoServizioParteComuneGruppo readAccordoServizioParteComuneGruppo(InputStream in) throws DeserializerException {
  1366.         return (AccordoServizioParteComuneGruppo) this.xmlToObj(in, AccordoServizioParteComuneGruppo.class);
  1367.     }  
  1368.    
  1369.     /**
  1370.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneGruppo}
  1371.      *
  1372.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneGruppo}
  1373.      * @return Object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneGruppo}
  1374.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1375.      */
  1376.     public AccordoServizioParteComuneGruppo readAccordoServizioParteComuneGruppo(byte[] in) throws DeserializerException {
  1377.         return (AccordoServizioParteComuneGruppo) this.xmlToObj(in, AccordoServizioParteComuneGruppo.class);
  1378.     }  
  1379.    
  1380.     /**
  1381.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneGruppo}
  1382.      *
  1383.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneGruppo}
  1384.      * @return Object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComuneGruppo}
  1385.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1386.      */
  1387.     public AccordoServizioParteComuneGruppo readAccordoServizioParteComuneGruppoFromString(String in) throws DeserializerException {
  1388.         return (AccordoServizioParteComuneGruppo) this.xmlToObj(in.getBytes(), AccordoServizioParteComuneGruppo.class);
  1389.     }  
  1390.    
  1391.    
  1392.    
  1393.     /*
  1394.      =================================================================================
  1395.      Object: id-servizio-applicativo
  1396.      =================================================================================
  1397.     */
  1398.    
  1399.     /**
  1400.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.IdServizioApplicativo}
  1401.      *
  1402.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdServizioApplicativo}
  1403.      * @return Object type {@link org.openspcoop2.core.commons.search.IdServizioApplicativo}
  1404.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1405.      */
  1406.     public IdServizioApplicativo readIdServizioApplicativo(String fileName) throws DeserializerException {
  1407.         return (IdServizioApplicativo) this.xmlToObj(fileName, IdServizioApplicativo.class);
  1408.     }
  1409.    
  1410.     /**
  1411.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.IdServizioApplicativo}
  1412.      *
  1413.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdServizioApplicativo}
  1414.      * @return Object type {@link org.openspcoop2.core.commons.search.IdServizioApplicativo}
  1415.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1416.      */
  1417.     public IdServizioApplicativo readIdServizioApplicativo(File file) throws DeserializerException {
  1418.         return (IdServizioApplicativo) this.xmlToObj(file, IdServizioApplicativo.class);
  1419.     }
  1420.    
  1421.     /**
  1422.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdServizioApplicativo}
  1423.      *
  1424.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdServizioApplicativo}
  1425.      * @return Object type {@link org.openspcoop2.core.commons.search.IdServizioApplicativo}
  1426.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1427.      */
  1428.     public IdServizioApplicativo readIdServizioApplicativo(InputStream in) throws DeserializerException {
  1429.         return (IdServizioApplicativo) this.xmlToObj(in, IdServizioApplicativo.class);
  1430.     }  
  1431.    
  1432.     /**
  1433.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdServizioApplicativo}
  1434.      *
  1435.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdServizioApplicativo}
  1436.      * @return Object type {@link org.openspcoop2.core.commons.search.IdServizioApplicativo}
  1437.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1438.      */
  1439.     public IdServizioApplicativo readIdServizioApplicativo(byte[] in) throws DeserializerException {
  1440.         return (IdServizioApplicativo) this.xmlToObj(in, IdServizioApplicativo.class);
  1441.     }  
  1442.    
  1443.     /**
  1444.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdServizioApplicativo}
  1445.      *
  1446.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdServizioApplicativo}
  1447.      * @return Object type {@link org.openspcoop2.core.commons.search.IdServizioApplicativo}
  1448.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1449.      */
  1450.     public IdServizioApplicativo readIdServizioApplicativoFromString(String in) throws DeserializerException {
  1451.         return (IdServizioApplicativo) this.xmlToObj(in.getBytes(), IdServizioApplicativo.class);
  1452.     }  
  1453.    
  1454.    
  1455.    
  1456.     /*
  1457.      =================================================================================
  1458.      Object: port-type
  1459.      =================================================================================
  1460.     */
  1461.    
  1462.     /**
  1463.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.PortType}
  1464.      *
  1465.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortType}
  1466.      * @return Object type {@link org.openspcoop2.core.commons.search.PortType}
  1467.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1468.      */
  1469.     public PortType readPortType(String fileName) throws DeserializerException {
  1470.         return (PortType) this.xmlToObj(fileName, PortType.class);
  1471.     }
  1472.    
  1473.     /**
  1474.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.PortType}
  1475.      *
  1476.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortType}
  1477.      * @return Object type {@link org.openspcoop2.core.commons.search.PortType}
  1478.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1479.      */
  1480.     public PortType readPortType(File file) throws DeserializerException {
  1481.         return (PortType) this.xmlToObj(file, PortType.class);
  1482.     }
  1483.    
  1484.     /**
  1485.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortType}
  1486.      *
  1487.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortType}
  1488.      * @return Object type {@link org.openspcoop2.core.commons.search.PortType}
  1489.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1490.      */
  1491.     public PortType readPortType(InputStream in) throws DeserializerException {
  1492.         return (PortType) this.xmlToObj(in, PortType.class);
  1493.     }  
  1494.    
  1495.     /**
  1496.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortType}
  1497.      *
  1498.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortType}
  1499.      * @return Object type {@link org.openspcoop2.core.commons.search.PortType}
  1500.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1501.      */
  1502.     public PortType readPortType(byte[] in) throws DeserializerException {
  1503.         return (PortType) this.xmlToObj(in, PortType.class);
  1504.     }  
  1505.    
  1506.     /**
  1507.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortType}
  1508.      *
  1509.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortType}
  1510.      * @return Object type {@link org.openspcoop2.core.commons.search.PortType}
  1511.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1512.      */
  1513.     public PortType readPortTypeFromString(String in) throws DeserializerException {
  1514.         return (PortType) this.xmlToObj(in.getBytes(), PortType.class);
  1515.     }  
  1516.    
  1517.    
  1518.    
  1519.     /*
  1520.      =================================================================================
  1521.      Object: id-porta-delegata
  1522.      =================================================================================
  1523.     */
  1524.    
  1525.     /**
  1526.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.IdPortaDelegata}
  1527.      *
  1528.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdPortaDelegata}
  1529.      * @return Object type {@link org.openspcoop2.core.commons.search.IdPortaDelegata}
  1530.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1531.      */
  1532.     public IdPortaDelegata readIdPortaDelegata(String fileName) throws DeserializerException {
  1533.         return (IdPortaDelegata) this.xmlToObj(fileName, IdPortaDelegata.class);
  1534.     }
  1535.    
  1536.     /**
  1537.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.IdPortaDelegata}
  1538.      *
  1539.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdPortaDelegata}
  1540.      * @return Object type {@link org.openspcoop2.core.commons.search.IdPortaDelegata}
  1541.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1542.      */
  1543.     public IdPortaDelegata readIdPortaDelegata(File file) throws DeserializerException {
  1544.         return (IdPortaDelegata) this.xmlToObj(file, IdPortaDelegata.class);
  1545.     }
  1546.    
  1547.     /**
  1548.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdPortaDelegata}
  1549.      *
  1550.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdPortaDelegata}
  1551.      * @return Object type {@link org.openspcoop2.core.commons.search.IdPortaDelegata}
  1552.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1553.      */
  1554.     public IdPortaDelegata readIdPortaDelegata(InputStream in) throws DeserializerException {
  1555.         return (IdPortaDelegata) this.xmlToObj(in, IdPortaDelegata.class);
  1556.     }  
  1557.    
  1558.     /**
  1559.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdPortaDelegata}
  1560.      *
  1561.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdPortaDelegata}
  1562.      * @return Object type {@link org.openspcoop2.core.commons.search.IdPortaDelegata}
  1563.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1564.      */
  1565.     public IdPortaDelegata readIdPortaDelegata(byte[] in) throws DeserializerException {
  1566.         return (IdPortaDelegata) this.xmlToObj(in, IdPortaDelegata.class);
  1567.     }  
  1568.    
  1569.     /**
  1570.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdPortaDelegata}
  1571.      *
  1572.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdPortaDelegata}
  1573.      * @return Object type {@link org.openspcoop2.core.commons.search.IdPortaDelegata}
  1574.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1575.      */
  1576.     public IdPortaDelegata readIdPortaDelegataFromString(String in) throws DeserializerException {
  1577.         return (IdPortaDelegata) this.xmlToObj(in.getBytes(), IdPortaDelegata.class);
  1578.     }  
  1579.    
  1580.    
  1581.    
  1582.     /*
  1583.      =================================================================================
  1584.      Object: id-accordo-servizio-parte-comune-gruppo
  1585.      =================================================================================
  1586.     */
  1587.    
  1588.     /**
  1589.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneGruppo}
  1590.      *
  1591.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneGruppo}
  1592.      * @return Object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneGruppo}
  1593.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1594.      */
  1595.     public IdAccordoServizioParteComuneGruppo readIdAccordoServizioParteComuneGruppo(String fileName) throws DeserializerException {
  1596.         return (IdAccordoServizioParteComuneGruppo) this.xmlToObj(fileName, IdAccordoServizioParteComuneGruppo.class);
  1597.     }
  1598.    
  1599.     /**
  1600.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneGruppo}
  1601.      *
  1602.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneGruppo}
  1603.      * @return Object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneGruppo}
  1604.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1605.      */
  1606.     public IdAccordoServizioParteComuneGruppo readIdAccordoServizioParteComuneGruppo(File file) throws DeserializerException {
  1607.         return (IdAccordoServizioParteComuneGruppo) this.xmlToObj(file, IdAccordoServizioParteComuneGruppo.class);
  1608.     }
  1609.    
  1610.     /**
  1611.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneGruppo}
  1612.      *
  1613.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneGruppo}
  1614.      * @return Object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneGruppo}
  1615.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1616.      */
  1617.     public IdAccordoServizioParteComuneGruppo readIdAccordoServizioParteComuneGruppo(InputStream in) throws DeserializerException {
  1618.         return (IdAccordoServizioParteComuneGruppo) this.xmlToObj(in, IdAccordoServizioParteComuneGruppo.class);
  1619.     }  
  1620.    
  1621.     /**
  1622.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneGruppo}
  1623.      *
  1624.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneGruppo}
  1625.      * @return Object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneGruppo}
  1626.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1627.      */
  1628.     public IdAccordoServizioParteComuneGruppo readIdAccordoServizioParteComuneGruppo(byte[] in) throws DeserializerException {
  1629.         return (IdAccordoServizioParteComuneGruppo) this.xmlToObj(in, IdAccordoServizioParteComuneGruppo.class);
  1630.     }  
  1631.    
  1632.     /**
  1633.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneGruppo}
  1634.      *
  1635.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneGruppo}
  1636.      * @return Object type {@link org.openspcoop2.core.commons.search.IdAccordoServizioParteComuneGruppo}
  1637.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1638.      */
  1639.     public IdAccordoServizioParteComuneGruppo readIdAccordoServizioParteComuneGruppoFromString(String in) throws DeserializerException {
  1640.         return (IdAccordoServizioParteComuneGruppo) this.xmlToObj(in.getBytes(), IdAccordoServizioParteComuneGruppo.class);
  1641.     }  
  1642.    
  1643.    
  1644.    
  1645.     /*
  1646.      =================================================================================
  1647.      Object: porta-delegata-azione
  1648.      =================================================================================
  1649.     */
  1650.    
  1651.     /**
  1652.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.PortaDelegataAzione}
  1653.      *
  1654.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaDelegataAzione}
  1655.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaDelegataAzione}
  1656.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1657.      */
  1658.     public PortaDelegataAzione readPortaDelegataAzione(String fileName) throws DeserializerException {
  1659.         return (PortaDelegataAzione) this.xmlToObj(fileName, PortaDelegataAzione.class);
  1660.     }
  1661.    
  1662.     /**
  1663.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.PortaDelegataAzione}
  1664.      *
  1665.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaDelegataAzione}
  1666.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaDelegataAzione}
  1667.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1668.      */
  1669.     public PortaDelegataAzione readPortaDelegataAzione(File file) throws DeserializerException {
  1670.         return (PortaDelegataAzione) this.xmlToObj(file, PortaDelegataAzione.class);
  1671.     }
  1672.    
  1673.     /**
  1674.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortaDelegataAzione}
  1675.      *
  1676.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaDelegataAzione}
  1677.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaDelegataAzione}
  1678.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1679.      */
  1680.     public PortaDelegataAzione readPortaDelegataAzione(InputStream in) throws DeserializerException {
  1681.         return (PortaDelegataAzione) this.xmlToObj(in, PortaDelegataAzione.class);
  1682.     }  
  1683.    
  1684.     /**
  1685.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortaDelegataAzione}
  1686.      *
  1687.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaDelegataAzione}
  1688.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaDelegataAzione}
  1689.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1690.      */
  1691.     public PortaDelegataAzione readPortaDelegataAzione(byte[] in) throws DeserializerException {
  1692.         return (PortaDelegataAzione) this.xmlToObj(in, PortaDelegataAzione.class);
  1693.     }  
  1694.    
  1695.     /**
  1696.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortaDelegataAzione}
  1697.      *
  1698.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaDelegataAzione}
  1699.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaDelegataAzione}
  1700.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1701.      */
  1702.     public PortaDelegataAzione readPortaDelegataAzioneFromString(String in) throws DeserializerException {
  1703.         return (PortaDelegataAzione) this.xmlToObj(in.getBytes(), PortaDelegataAzione.class);
  1704.     }  
  1705.    
  1706.    
  1707.    
  1708.     /*
  1709.      =================================================================================
  1710.      Object: id-fruitore
  1711.      =================================================================================
  1712.     */
  1713.    
  1714.     /**
  1715.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.IdFruitore}
  1716.      *
  1717.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdFruitore}
  1718.      * @return Object type {@link org.openspcoop2.core.commons.search.IdFruitore}
  1719.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1720.      */
  1721.     public IdFruitore readIdFruitore(String fileName) throws DeserializerException {
  1722.         return (IdFruitore) this.xmlToObj(fileName, IdFruitore.class);
  1723.     }
  1724.    
  1725.     /**
  1726.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.IdFruitore}
  1727.      *
  1728.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdFruitore}
  1729.      * @return Object type {@link org.openspcoop2.core.commons.search.IdFruitore}
  1730.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1731.      */
  1732.     public IdFruitore readIdFruitore(File file) throws DeserializerException {
  1733.         return (IdFruitore) this.xmlToObj(file, IdFruitore.class);
  1734.     }
  1735.    
  1736.     /**
  1737.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdFruitore}
  1738.      *
  1739.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdFruitore}
  1740.      * @return Object type {@link org.openspcoop2.core.commons.search.IdFruitore}
  1741.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1742.      */
  1743.     public IdFruitore readIdFruitore(InputStream in) throws DeserializerException {
  1744.         return (IdFruitore) this.xmlToObj(in, IdFruitore.class);
  1745.     }  
  1746.    
  1747.     /**
  1748.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdFruitore}
  1749.      *
  1750.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdFruitore}
  1751.      * @return Object type {@link org.openspcoop2.core.commons.search.IdFruitore}
  1752.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1753.      */
  1754.     public IdFruitore readIdFruitore(byte[] in) throws DeserializerException {
  1755.         return (IdFruitore) this.xmlToObj(in, IdFruitore.class);
  1756.     }  
  1757.    
  1758.     /**
  1759.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdFruitore}
  1760.      *
  1761.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdFruitore}
  1762.      * @return Object type {@link org.openspcoop2.core.commons.search.IdFruitore}
  1763.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1764.      */
  1765.     public IdFruitore readIdFruitoreFromString(String in) throws DeserializerException {
  1766.         return (IdFruitore) this.xmlToObj(in.getBytes(), IdFruitore.class);
  1767.     }  
  1768.    
  1769.    
  1770.    
  1771.     /*
  1772.      =================================================================================
  1773.      Object: id-operation
  1774.      =================================================================================
  1775.     */
  1776.    
  1777.     /**
  1778.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.IdOperation}
  1779.      *
  1780.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdOperation}
  1781.      * @return Object type {@link org.openspcoop2.core.commons.search.IdOperation}
  1782.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1783.      */
  1784.     public IdOperation readIdOperation(String fileName) throws DeserializerException {
  1785.         return (IdOperation) this.xmlToObj(fileName, IdOperation.class);
  1786.     }
  1787.    
  1788.     /**
  1789.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.IdOperation}
  1790.      *
  1791.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdOperation}
  1792.      * @return Object type {@link org.openspcoop2.core.commons.search.IdOperation}
  1793.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1794.      */
  1795.     public IdOperation readIdOperation(File file) throws DeserializerException {
  1796.         return (IdOperation) this.xmlToObj(file, IdOperation.class);
  1797.     }
  1798.    
  1799.     /**
  1800.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdOperation}
  1801.      *
  1802.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdOperation}
  1803.      * @return Object type {@link org.openspcoop2.core.commons.search.IdOperation}
  1804.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1805.      */
  1806.     public IdOperation readIdOperation(InputStream in) throws DeserializerException {
  1807.         return (IdOperation) this.xmlToObj(in, IdOperation.class);
  1808.     }  
  1809.    
  1810.     /**
  1811.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdOperation}
  1812.      *
  1813.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdOperation}
  1814.      * @return Object type {@link org.openspcoop2.core.commons.search.IdOperation}
  1815.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1816.      */
  1817.     public IdOperation readIdOperation(byte[] in) throws DeserializerException {
  1818.         return (IdOperation) this.xmlToObj(in, IdOperation.class);
  1819.     }  
  1820.    
  1821.     /**
  1822.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdOperation}
  1823.      *
  1824.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdOperation}
  1825.      * @return Object type {@link org.openspcoop2.core.commons.search.IdOperation}
  1826.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1827.      */
  1828.     public IdOperation readIdOperationFromString(String in) throws DeserializerException {
  1829.         return (IdOperation) this.xmlToObj(in.getBytes(), IdOperation.class);
  1830.     }  
  1831.    
  1832.    
  1833.    
  1834.     /*
  1835.      =================================================================================
  1836.      Object: soggetto
  1837.      =================================================================================
  1838.     */
  1839.    
  1840.     /**
  1841.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.Soggetto}
  1842.      *
  1843.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Soggetto}
  1844.      * @return Object type {@link org.openspcoop2.core.commons.search.Soggetto}
  1845.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1846.      */
  1847.     public Soggetto readSoggetto(String fileName) throws DeserializerException {
  1848.         return (Soggetto) this.xmlToObj(fileName, Soggetto.class);
  1849.     }
  1850.    
  1851.     /**
  1852.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.Soggetto}
  1853.      *
  1854.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Soggetto}
  1855.      * @return Object type {@link org.openspcoop2.core.commons.search.Soggetto}
  1856.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1857.      */
  1858.     public Soggetto readSoggetto(File file) throws DeserializerException {
  1859.         return (Soggetto) this.xmlToObj(file, Soggetto.class);
  1860.     }
  1861.    
  1862.     /**
  1863.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.Soggetto}
  1864.      *
  1865.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Soggetto}
  1866.      * @return Object type {@link org.openspcoop2.core.commons.search.Soggetto}
  1867.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1868.      */
  1869.     public Soggetto readSoggetto(InputStream in) throws DeserializerException {
  1870.         return (Soggetto) this.xmlToObj(in, Soggetto.class);
  1871.     }  
  1872.    
  1873.     /**
  1874.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.Soggetto}
  1875.      *
  1876.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Soggetto}
  1877.      * @return Object type {@link org.openspcoop2.core.commons.search.Soggetto}
  1878.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1879.      */
  1880.     public Soggetto readSoggetto(byte[] in) throws DeserializerException {
  1881.         return (Soggetto) this.xmlToObj(in, Soggetto.class);
  1882.     }  
  1883.    
  1884.     /**
  1885.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.Soggetto}
  1886.      *
  1887.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Soggetto}
  1888.      * @return Object type {@link org.openspcoop2.core.commons.search.Soggetto}
  1889.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1890.      */
  1891.     public Soggetto readSoggettoFromString(String in) throws DeserializerException {
  1892.         return (Soggetto) this.xmlToObj(in.getBytes(), Soggetto.class);
  1893.     }  
  1894.    
  1895.    
  1896.    
  1897.     /*
  1898.      =================================================================================
  1899.      Object: gruppo
  1900.      =================================================================================
  1901.     */
  1902.    
  1903.     /**
  1904.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.Gruppo}
  1905.      *
  1906.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Gruppo}
  1907.      * @return Object type {@link org.openspcoop2.core.commons.search.Gruppo}
  1908.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1909.      */
  1910.     public Gruppo readGruppo(String fileName) throws DeserializerException {
  1911.         return (Gruppo) this.xmlToObj(fileName, Gruppo.class);
  1912.     }
  1913.    
  1914.     /**
  1915.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.Gruppo}
  1916.      *
  1917.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Gruppo}
  1918.      * @return Object type {@link org.openspcoop2.core.commons.search.Gruppo}
  1919.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1920.      */
  1921.     public Gruppo readGruppo(File file) throws DeserializerException {
  1922.         return (Gruppo) this.xmlToObj(file, Gruppo.class);
  1923.     }
  1924.    
  1925.     /**
  1926.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.Gruppo}
  1927.      *
  1928.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Gruppo}
  1929.      * @return Object type {@link org.openspcoop2.core.commons.search.Gruppo}
  1930.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1931.      */
  1932.     public Gruppo readGruppo(InputStream in) throws DeserializerException {
  1933.         return (Gruppo) this.xmlToObj(in, Gruppo.class);
  1934.     }  
  1935.    
  1936.     /**
  1937.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.Gruppo}
  1938.      *
  1939.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Gruppo}
  1940.      * @return Object type {@link org.openspcoop2.core.commons.search.Gruppo}
  1941.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1942.      */
  1943.     public Gruppo readGruppo(byte[] in) throws DeserializerException {
  1944.         return (Gruppo) this.xmlToObj(in, Gruppo.class);
  1945.     }  
  1946.    
  1947.     /**
  1948.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.Gruppo}
  1949.      *
  1950.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Gruppo}
  1951.      * @return Object type {@link org.openspcoop2.core.commons.search.Gruppo}
  1952.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1953.      */
  1954.     public Gruppo readGruppoFromString(String in) throws DeserializerException {
  1955.         return (Gruppo) this.xmlToObj(in.getBytes(), Gruppo.class);
  1956.     }  
  1957.    
  1958.    
  1959.    
  1960.     /*
  1961.      =================================================================================
  1962.      Object: accordo-servizio-parte-comune
  1963.      =================================================================================
  1964.     */
  1965.    
  1966.     /**
  1967.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComune}
  1968.      *
  1969.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComune}
  1970.      * @return Object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComune}
  1971.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1972.      */
  1973.     public AccordoServizioParteComune readAccordoServizioParteComune(String fileName) throws DeserializerException {
  1974.         return (AccordoServizioParteComune) this.xmlToObj(fileName, AccordoServizioParteComune.class);
  1975.     }
  1976.    
  1977.     /**
  1978.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComune}
  1979.      *
  1980.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComune}
  1981.      * @return Object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComune}
  1982.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1983.      */
  1984.     public AccordoServizioParteComune readAccordoServizioParteComune(File file) throws DeserializerException {
  1985.         return (AccordoServizioParteComune) this.xmlToObj(file, AccordoServizioParteComune.class);
  1986.     }
  1987.    
  1988.     /**
  1989.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComune}
  1990.      *
  1991.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComune}
  1992.      * @return Object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComune}
  1993.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  1994.      */
  1995.     public AccordoServizioParteComune readAccordoServizioParteComune(InputStream in) throws DeserializerException {
  1996.         return (AccordoServizioParteComune) this.xmlToObj(in, AccordoServizioParteComune.class);
  1997.     }  
  1998.    
  1999.     /**
  2000.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComune}
  2001.      *
  2002.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComune}
  2003.      * @return Object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComune}
  2004.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2005.      */
  2006.     public AccordoServizioParteComune readAccordoServizioParteComune(byte[] in) throws DeserializerException {
  2007.         return (AccordoServizioParteComune) this.xmlToObj(in, AccordoServizioParteComune.class);
  2008.     }  
  2009.    
  2010.     /**
  2011.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComune}
  2012.      *
  2013.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComune}
  2014.      * @return Object type {@link org.openspcoop2.core.commons.search.AccordoServizioParteComune}
  2015.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2016.      */
  2017.     public AccordoServizioParteComune readAccordoServizioParteComuneFromString(String in) throws DeserializerException {
  2018.         return (AccordoServizioParteComune) this.xmlToObj(in.getBytes(), AccordoServizioParteComune.class);
  2019.     }  
  2020.    
  2021.    
  2022.    
  2023.     /*
  2024.      =================================================================================
  2025.      Object: porta-dominio
  2026.      =================================================================================
  2027.     */
  2028.    
  2029.     /**
  2030.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.PortaDominio}
  2031.      *
  2032.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaDominio}
  2033.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaDominio}
  2034.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2035.      */
  2036.     public PortaDominio readPortaDominio(String fileName) throws DeserializerException {
  2037.         return (PortaDominio) this.xmlToObj(fileName, PortaDominio.class);
  2038.     }
  2039.    
  2040.     /**
  2041.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.PortaDominio}
  2042.      *
  2043.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaDominio}
  2044.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaDominio}
  2045.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2046.      */
  2047.     public PortaDominio readPortaDominio(File file) throws DeserializerException {
  2048.         return (PortaDominio) this.xmlToObj(file, PortaDominio.class);
  2049.     }
  2050.    
  2051.     /**
  2052.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortaDominio}
  2053.      *
  2054.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaDominio}
  2055.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaDominio}
  2056.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2057.      */
  2058.     public PortaDominio readPortaDominio(InputStream in) throws DeserializerException {
  2059.         return (PortaDominio) this.xmlToObj(in, PortaDominio.class);
  2060.     }  
  2061.    
  2062.     /**
  2063.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortaDominio}
  2064.      *
  2065.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaDominio}
  2066.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaDominio}
  2067.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2068.      */
  2069.     public PortaDominio readPortaDominio(byte[] in) throws DeserializerException {
  2070.         return (PortaDominio) this.xmlToObj(in, PortaDominio.class);
  2071.     }  
  2072.    
  2073.     /**
  2074.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortaDominio}
  2075.      *
  2076.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaDominio}
  2077.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaDominio}
  2078.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2079.      */
  2080.     public PortaDominio readPortaDominioFromString(String in) throws DeserializerException {
  2081.         return (PortaDominio) this.xmlToObj(in.getBytes(), PortaDominio.class);
  2082.     }  
  2083.    
  2084.    
  2085.    
  2086.     /*
  2087.      =================================================================================
  2088.      Object: id-porta-applicativa
  2089.      =================================================================================
  2090.     */
  2091.    
  2092.     /**
  2093.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.IdPortaApplicativa}
  2094.      *
  2095.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdPortaApplicativa}
  2096.      * @return Object type {@link org.openspcoop2.core.commons.search.IdPortaApplicativa}
  2097.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2098.      */
  2099.     public IdPortaApplicativa readIdPortaApplicativa(String fileName) throws DeserializerException {
  2100.         return (IdPortaApplicativa) this.xmlToObj(fileName, IdPortaApplicativa.class);
  2101.     }
  2102.    
  2103.     /**
  2104.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.IdPortaApplicativa}
  2105.      *
  2106.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdPortaApplicativa}
  2107.      * @return Object type {@link org.openspcoop2.core.commons.search.IdPortaApplicativa}
  2108.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2109.      */
  2110.     public IdPortaApplicativa readIdPortaApplicativa(File file) throws DeserializerException {
  2111.         return (IdPortaApplicativa) this.xmlToObj(file, IdPortaApplicativa.class);
  2112.     }
  2113.    
  2114.     /**
  2115.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdPortaApplicativa}
  2116.      *
  2117.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdPortaApplicativa}
  2118.      * @return Object type {@link org.openspcoop2.core.commons.search.IdPortaApplicativa}
  2119.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2120.      */
  2121.     public IdPortaApplicativa readIdPortaApplicativa(InputStream in) throws DeserializerException {
  2122.         return (IdPortaApplicativa) this.xmlToObj(in, IdPortaApplicativa.class);
  2123.     }  
  2124.    
  2125.     /**
  2126.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdPortaApplicativa}
  2127.      *
  2128.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdPortaApplicativa}
  2129.      * @return Object type {@link org.openspcoop2.core.commons.search.IdPortaApplicativa}
  2130.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2131.      */
  2132.     public IdPortaApplicativa readIdPortaApplicativa(byte[] in) throws DeserializerException {
  2133.         return (IdPortaApplicativa) this.xmlToObj(in, IdPortaApplicativa.class);
  2134.     }  
  2135.    
  2136.     /**
  2137.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdPortaApplicativa}
  2138.      *
  2139.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdPortaApplicativa}
  2140.      * @return Object type {@link org.openspcoop2.core.commons.search.IdPortaApplicativa}
  2141.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2142.      */
  2143.     public IdPortaApplicativa readIdPortaApplicativaFromString(String in) throws DeserializerException {
  2144.         return (IdPortaApplicativa) this.xmlToObj(in.getBytes(), IdPortaApplicativa.class);
  2145.     }  
  2146.    
  2147.    
  2148.    
  2149.     /*
  2150.      =================================================================================
  2151.      Object: id-resource
  2152.      =================================================================================
  2153.     */
  2154.    
  2155.     /**
  2156.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.IdResource}
  2157.      *
  2158.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdResource}
  2159.      * @return Object type {@link org.openspcoop2.core.commons.search.IdResource}
  2160.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2161.      */
  2162.     public IdResource readIdResource(String fileName) throws DeserializerException {
  2163.         return (IdResource) this.xmlToObj(fileName, IdResource.class);
  2164.     }
  2165.    
  2166.     /**
  2167.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.IdResource}
  2168.      *
  2169.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdResource}
  2170.      * @return Object type {@link org.openspcoop2.core.commons.search.IdResource}
  2171.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2172.      */
  2173.     public IdResource readIdResource(File file) throws DeserializerException {
  2174.         return (IdResource) this.xmlToObj(file, IdResource.class);
  2175.     }
  2176.    
  2177.     /**
  2178.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdResource}
  2179.      *
  2180.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdResource}
  2181.      * @return Object type {@link org.openspcoop2.core.commons.search.IdResource}
  2182.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2183.      */
  2184.     public IdResource readIdResource(InputStream in) throws DeserializerException {
  2185.         return (IdResource) this.xmlToObj(in, IdResource.class);
  2186.     }  
  2187.    
  2188.     /**
  2189.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdResource}
  2190.      *
  2191.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdResource}
  2192.      * @return Object type {@link org.openspcoop2.core.commons.search.IdResource}
  2193.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2194.      */
  2195.     public IdResource readIdResource(byte[] in) throws DeserializerException {
  2196.         return (IdResource) this.xmlToObj(in, IdResource.class);
  2197.     }  
  2198.    
  2199.     /**
  2200.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdResource}
  2201.      *
  2202.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdResource}
  2203.      * @return Object type {@link org.openspcoop2.core.commons.search.IdResource}
  2204.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2205.      */
  2206.     public IdResource readIdResourceFromString(String in) throws DeserializerException {
  2207.         return (IdResource) this.xmlToObj(in.getBytes(), IdResource.class);
  2208.     }  
  2209.    
  2210.    
  2211.    
  2212.     /*
  2213.      =================================================================================
  2214.      Object: porta-delegata-servizio-applicativo
  2215.      =================================================================================
  2216.     */
  2217.    
  2218.     /**
  2219.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.PortaDelegataServizioApplicativo}
  2220.      *
  2221.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaDelegataServizioApplicativo}
  2222.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaDelegataServizioApplicativo}
  2223.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2224.      */
  2225.     public PortaDelegataServizioApplicativo readPortaDelegataServizioApplicativo(String fileName) throws DeserializerException {
  2226.         return (PortaDelegataServizioApplicativo) this.xmlToObj(fileName, PortaDelegataServizioApplicativo.class);
  2227.     }
  2228.    
  2229.     /**
  2230.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.PortaDelegataServizioApplicativo}
  2231.      *
  2232.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaDelegataServizioApplicativo}
  2233.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaDelegataServizioApplicativo}
  2234.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2235.      */
  2236.     public PortaDelegataServizioApplicativo readPortaDelegataServizioApplicativo(File file) throws DeserializerException {
  2237.         return (PortaDelegataServizioApplicativo) this.xmlToObj(file, PortaDelegataServizioApplicativo.class);
  2238.     }
  2239.    
  2240.     /**
  2241.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortaDelegataServizioApplicativo}
  2242.      *
  2243.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaDelegataServizioApplicativo}
  2244.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaDelegataServizioApplicativo}
  2245.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2246.      */
  2247.     public PortaDelegataServizioApplicativo readPortaDelegataServizioApplicativo(InputStream in) throws DeserializerException {
  2248.         return (PortaDelegataServizioApplicativo) this.xmlToObj(in, PortaDelegataServizioApplicativo.class);
  2249.     }  
  2250.    
  2251.     /**
  2252.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortaDelegataServizioApplicativo}
  2253.      *
  2254.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaDelegataServizioApplicativo}
  2255.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaDelegataServizioApplicativo}
  2256.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2257.      */
  2258.     public PortaDelegataServizioApplicativo readPortaDelegataServizioApplicativo(byte[] in) throws DeserializerException {
  2259.         return (PortaDelegataServizioApplicativo) this.xmlToObj(in, PortaDelegataServizioApplicativo.class);
  2260.     }  
  2261.    
  2262.     /**
  2263.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortaDelegataServizioApplicativo}
  2264.      *
  2265.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaDelegataServizioApplicativo}
  2266.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaDelegataServizioApplicativo}
  2267.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2268.      */
  2269.     public PortaDelegataServizioApplicativo readPortaDelegataServizioApplicativoFromString(String in) throws DeserializerException {
  2270.         return (PortaDelegataServizioApplicativo) this.xmlToObj(in.getBytes(), PortaDelegataServizioApplicativo.class);
  2271.     }  
  2272.    
  2273.    
  2274.    
  2275.     /*
  2276.      =================================================================================
  2277.      Object: fruitore
  2278.      =================================================================================
  2279.     */
  2280.    
  2281.     /**
  2282.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.Fruitore}
  2283.      *
  2284.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Fruitore}
  2285.      * @return Object type {@link org.openspcoop2.core.commons.search.Fruitore}
  2286.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2287.      */
  2288.     public Fruitore readFruitore(String fileName) throws DeserializerException {
  2289.         return (Fruitore) this.xmlToObj(fileName, Fruitore.class);
  2290.     }
  2291.    
  2292.     /**
  2293.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.Fruitore}
  2294.      *
  2295.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Fruitore}
  2296.      * @return Object type {@link org.openspcoop2.core.commons.search.Fruitore}
  2297.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2298.      */
  2299.     public Fruitore readFruitore(File file) throws DeserializerException {
  2300.         return (Fruitore) this.xmlToObj(file, Fruitore.class);
  2301.     }
  2302.    
  2303.     /**
  2304.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.Fruitore}
  2305.      *
  2306.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Fruitore}
  2307.      * @return Object type {@link org.openspcoop2.core.commons.search.Fruitore}
  2308.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2309.      */
  2310.     public Fruitore readFruitore(InputStream in) throws DeserializerException {
  2311.         return (Fruitore) this.xmlToObj(in, Fruitore.class);
  2312.     }  
  2313.    
  2314.     /**
  2315.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.Fruitore}
  2316.      *
  2317.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Fruitore}
  2318.      * @return Object type {@link org.openspcoop2.core.commons.search.Fruitore}
  2319.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2320.      */
  2321.     public Fruitore readFruitore(byte[] in) throws DeserializerException {
  2322.         return (Fruitore) this.xmlToObj(in, Fruitore.class);
  2323.     }  
  2324.    
  2325.     /**
  2326.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.Fruitore}
  2327.      *
  2328.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.Fruitore}
  2329.      * @return Object type {@link org.openspcoop2.core.commons.search.Fruitore}
  2330.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2331.      */
  2332.     public Fruitore readFruitoreFromString(String in) throws DeserializerException {
  2333.         return (Fruitore) this.xmlToObj(in.getBytes(), Fruitore.class);
  2334.     }  
  2335.    
  2336.    
  2337.    
  2338.     /*
  2339.      =================================================================================
  2340.      Object: porta-delegata
  2341.      =================================================================================
  2342.     */
  2343.    
  2344.     /**
  2345.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.PortaDelegata}
  2346.      *
  2347.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaDelegata}
  2348.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaDelegata}
  2349.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2350.      */
  2351.     public PortaDelegata readPortaDelegata(String fileName) throws DeserializerException {
  2352.         return (PortaDelegata) this.xmlToObj(fileName, PortaDelegata.class);
  2353.     }
  2354.    
  2355.     /**
  2356.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.PortaDelegata}
  2357.      *
  2358.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaDelegata}
  2359.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaDelegata}
  2360.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2361.      */
  2362.     public PortaDelegata readPortaDelegata(File file) throws DeserializerException {
  2363.         return (PortaDelegata) this.xmlToObj(file, PortaDelegata.class);
  2364.     }
  2365.    
  2366.     /**
  2367.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortaDelegata}
  2368.      *
  2369.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaDelegata}
  2370.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaDelegata}
  2371.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2372.      */
  2373.     public PortaDelegata readPortaDelegata(InputStream in) throws DeserializerException {
  2374.         return (PortaDelegata) this.xmlToObj(in, PortaDelegata.class);
  2375.     }  
  2376.    
  2377.     /**
  2378.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortaDelegata}
  2379.      *
  2380.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaDelegata}
  2381.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaDelegata}
  2382.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2383.      */
  2384.     public PortaDelegata readPortaDelegata(byte[] in) throws DeserializerException {
  2385.         return (PortaDelegata) this.xmlToObj(in, PortaDelegata.class);
  2386.     }  
  2387.    
  2388.     /**
  2389.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.PortaDelegata}
  2390.      *
  2391.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.PortaDelegata}
  2392.      * @return Object type {@link org.openspcoop2.core.commons.search.PortaDelegata}
  2393.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2394.      */
  2395.     public PortaDelegata readPortaDelegataFromString(String in) throws DeserializerException {
  2396.         return (PortaDelegata) this.xmlToObj(in.getBytes(), PortaDelegata.class);
  2397.     }  
  2398.    
  2399.    
  2400.    
  2401.     /*
  2402.      =================================================================================
  2403.      Object: id-soggetto-ruolo
  2404.      =================================================================================
  2405.     */
  2406.    
  2407.     /**
  2408.      * Transform the xml in <var>fileName</var> in the object type {@link org.openspcoop2.core.commons.search.IdSoggettoRuolo}
  2409.      *
  2410.      * @param fileName Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdSoggettoRuolo}
  2411.      * @return Object type {@link org.openspcoop2.core.commons.search.IdSoggettoRuolo}
  2412.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2413.      */
  2414.     public IdSoggettoRuolo readIdSoggettoRuolo(String fileName) throws DeserializerException {
  2415.         return (IdSoggettoRuolo) this.xmlToObj(fileName, IdSoggettoRuolo.class);
  2416.     }
  2417.    
  2418.     /**
  2419.      * Transform the xml in <var>file</var> in the object type {@link org.openspcoop2.core.commons.search.IdSoggettoRuolo}
  2420.      *
  2421.      * @param file Xml file to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdSoggettoRuolo}
  2422.      * @return Object type {@link org.openspcoop2.core.commons.search.IdSoggettoRuolo}
  2423.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2424.      */
  2425.     public IdSoggettoRuolo readIdSoggettoRuolo(File file) throws DeserializerException {
  2426.         return (IdSoggettoRuolo) this.xmlToObj(file, IdSoggettoRuolo.class);
  2427.     }
  2428.    
  2429.     /**
  2430.      * Transform the input stream <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdSoggettoRuolo}
  2431.      *
  2432.      * @param in InputStream to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdSoggettoRuolo}
  2433.      * @return Object type {@link org.openspcoop2.core.commons.search.IdSoggettoRuolo}
  2434.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2435.      */
  2436.     public IdSoggettoRuolo readIdSoggettoRuolo(InputStream in) throws DeserializerException {
  2437.         return (IdSoggettoRuolo) this.xmlToObj(in, IdSoggettoRuolo.class);
  2438.     }  
  2439.    
  2440.     /**
  2441.      * Transform the byte array <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdSoggettoRuolo}
  2442.      *
  2443.      * @param in Byte array to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdSoggettoRuolo}
  2444.      * @return Object type {@link org.openspcoop2.core.commons.search.IdSoggettoRuolo}
  2445.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2446.      */
  2447.     public IdSoggettoRuolo readIdSoggettoRuolo(byte[] in) throws DeserializerException {
  2448.         return (IdSoggettoRuolo) this.xmlToObj(in, IdSoggettoRuolo.class);
  2449.     }  
  2450.    
  2451.     /**
  2452.      * Transform the String <var>in</var> in the object type {@link org.openspcoop2.core.commons.search.IdSoggettoRuolo}
  2453.      *
  2454.      * @param in String to use for the reconstruction of the object type {@link org.openspcoop2.core.commons.search.IdSoggettoRuolo}
  2455.      * @return Object type {@link org.openspcoop2.core.commons.search.IdSoggettoRuolo}
  2456.      * @throws DeserializerException The exception that is thrown when an error occurs during deserialization
  2457.      */
  2458.     public IdSoggettoRuolo readIdSoggettoRuoloFromString(String in) throws DeserializerException {
  2459.         return (IdSoggettoRuolo) this.xmlToObj(in.getBytes(), IdSoggettoRuolo.class);
  2460.     }  
  2461.    
  2462.    
  2463.    

  2464. }