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

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

  22. import org.openspcoop2.core.registry.Message;
  23. import org.openspcoop2.core.registry.Operation;
  24. import org.openspcoop2.core.registry.ProtocolProperty;
  25. import org.openspcoop2.core.registry.ResourceParameter;
  26. import org.openspcoop2.core.registry.ResourceRequest;
  27. import org.openspcoop2.core.registry.ResourceRepresentation;
  28. import org.openspcoop2.core.registry.Resource;
  29. import org.openspcoop2.core.registry.ResourceResponse;
  30. import org.openspcoop2.core.registry.IdRuolo;
  31. import org.openspcoop2.core.registry.ResourceRepresentationJson;
  32. import org.openspcoop2.core.registry.MessagePart;
  33. import org.openspcoop2.core.registry.IdPortaDominio;
  34. import org.openspcoop2.core.registry.Documento;
  35. import org.openspcoop2.core.registry.IdSoggetto;
  36. import org.openspcoop2.core.registry.IdAccordoServizioParteSpecifica;
  37. import org.openspcoop2.core.registry.GruppoAccordo;
  38. import org.openspcoop2.core.registry.GruppiAccordo;
  39. import org.openspcoop2.core.registry.IdScope;
  40. import org.openspcoop2.core.registry.ConfigurazioneServizio;
  41. import org.openspcoop2.core.registry.AccordoServizioParteSpecifica;
  42. import org.openspcoop2.core.registry.Fruitore;
  43. import org.openspcoop2.core.registry.ProprietaOggetto;
  44. import org.openspcoop2.core.registry.Property;
  45. import org.openspcoop2.core.registry.Ruolo;
  46. import org.openspcoop2.core.registry.AccordoCooperazionePartecipanti;
  47. import org.openspcoop2.core.registry.Proprieta;
  48. import org.openspcoop2.core.registry.Azione;
  49. import org.openspcoop2.core.registry.Connettore;
  50. import org.openspcoop2.core.registry.ConfigurazioneServizioAzione;
  51. import org.openspcoop2.core.registry.RuoloSoggetto;
  52. import org.openspcoop2.core.registry.Scope;
  53. import org.openspcoop2.core.registry.ResourceRepresentationXml;
  54. import org.openspcoop2.core.registry.AccordoServizioParteComuneServizioCompostoServizioComponente;
  55. import org.openspcoop2.core.registry.AccordoServizioParteComuneServizioComposto;
  56. import org.openspcoop2.core.registry.PortType;
  57. import org.openspcoop2.core.registry.IdAccordoCooperazione;
  58. import org.openspcoop2.core.registry.AccordoCooperazione;
  59. import org.openspcoop2.core.registry.CredenzialiSoggetto;
  60. import org.openspcoop2.core.registry.RegistroServizi;
  61. import org.openspcoop2.core.registry.AccordoServizioParteComune;
  62. import org.openspcoop2.core.registry.PortaDominio;
  63. import org.openspcoop2.core.registry.Gruppo;
  64. import org.openspcoop2.core.registry.Soggetto;
  65. import org.openspcoop2.core.registry.IdGruppo;
  66. import org.openspcoop2.core.registry.RuoliSoggetto;
  67. import org.openspcoop2.core.registry.IdAccordoServizioParteComune;

  68. import java.io.InputStream;
  69. import java.io.File;

  70. /**    
  71.  * XML Deserializer of beans
  72.  *
  73.  * @author Poli Andrea (poli@link.it)
  74.  * @author $Author$
  75.  * @version $Rev$, $Date$
  76.  */

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



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

  2976. }