ObjectFactory.java

  1. /*
  2.  * GovWay - A customizable API Gateway
  3.  * https://govway.org
  4.  *
  5.  * Copyright (c) 2005-2025 Link.it srl (https://link.it).
  6.  *
  7.  * This program is free software: you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License version 3, as published by
  9.  * the Free Software Foundation.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  18.  *
  19.  */
  20. package org.openspcoop2.protocol.abstraction;

  21. import javax.xml.bind.annotation.XmlRegistry;


  22. /**
  23.  * This object contains factory methods for each
  24.  * Java content interface and Java element interface
  25.  * generated in the org.openspcoop2.protocol.abstraction package.
  26.  * <p>An ObjectFactory allows you to programatically
  27.  * construct new instances of the Java representation
  28.  * for XML content. The Java representation of XML
  29.  * content can consist of schema derived interfaces
  30.  * and classes representing the binding of schema
  31.  * type definitions, element declarations and model
  32.  * groups.  Factory methods for each of these are
  33.  * provided in this class.
  34.  *
  35.  * @author Poli Andrea (poli@link.it)
  36.  * @author $Author$
  37.  * @version $Rev$, $Date$
  38. */

  39. @XmlRegistry
  40. public class ObjectFactory {


  41.     /**
  42.      * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.openspcoop2.protocol.abstraction
  43.      *
  44.      */
  45.     public ObjectFactory() {
  46.         // Create a new ObjectFactory
  47.     }

  48.     /**
  49.      * Create an instance of {@link CredenzialiInvocazioneBasic }
  50.      */
  51.     public CredenzialiInvocazioneBasic createCredenzialiInvocazioneBasic() {
  52.         return new CredenzialiInvocazioneBasic();
  53.     }

  54.     /**
  55.      * Create an instance of {@link RiferimentoServizioApplicativoFruitore }
  56.      */
  57.     public RiferimentoServizioApplicativoFruitore createRiferimentoServizioApplicativoFruitore() {
  58.         return new RiferimentoServizioApplicativoFruitore();
  59.     }

  60.     /**
  61.      * Create an instance of {@link Soggetto }
  62.      */
  63.     public Soggetto createSoggetto() {
  64.         return new Soggetto();
  65.     }

  66.     /**
  67.      * Create an instance of {@link Fruitori }
  68.      */
  69.     public Fruitori createFruitori() {
  70.         return new Fruitori();
  71.     }

  72.     /**
  73.      * Create an instance of {@link SoggettoNotExistsBehaviour }
  74.      */
  75.     public SoggettoNotExistsBehaviour createSoggettoNotExistsBehaviour() {
  76.         return new SoggettoNotExistsBehaviour();
  77.     }

  78.     /**
  79.      * Create an instance of {@link RiferimentoAccordoServizioParteSpecifica }
  80.      */
  81.     public RiferimentoAccordoServizioParteSpecifica createRiferimentoAccordoServizioParteSpecifica() {
  82.         return new RiferimentoAccordoServizioParteSpecifica();
  83.     }

  84.     /**
  85.      * Create an instance of {@link DatiApplicativiErogazione }
  86.      */
  87.     public DatiApplicativiErogazione createDatiApplicativiErogazione() {
  88.         return new DatiApplicativiErogazione();
  89.     }

  90.     /**
  91.      * Create an instance of {@link IdentificatoreServizio }
  92.      */
  93.     public IdentificatoreServizio createIdentificatoreServizio() {
  94.         return new IdentificatoreServizio();
  95.     }

  96.     /**
  97.      * Create an instance of {@link RiferimentoAccordoServizioParteComune }
  98.      */
  99.     public RiferimentoAccordoServizioParteComune createRiferimentoAccordoServizioParteComune() {
  100.         return new RiferimentoAccordoServizioParteComune();
  101.     }

  102.     /**
  103.      * Create an instance of {@link Erogazione }
  104.      */
  105.     public Erogazione createErogazione() {
  106.         return new Erogazione();
  107.     }

  108.     /**
  109.      * Create an instance of {@link DatiFruizione }
  110.      */
  111.     public DatiFruizione createDatiFruizione() {
  112.         return new DatiFruizione();
  113.     }

  114.     /**
  115.      * Create an instance of {@link DatiServizio }
  116.      */
  117.     public DatiServizio createDatiServizio() {
  118.         return new DatiServizio();
  119.     }

  120.     /**
  121.      * Create an instance of {@link DatiApplicativiFruizione }
  122.      */
  123.     public DatiApplicativiFruizione createDatiApplicativiFruizione() {
  124.         return new DatiApplicativiFruizione();
  125.     }

  126.     /**
  127.      * Create an instance of {@link Fruizione }
  128.      */
  129.     public Fruizione createFruizione() {
  130.         return new Fruizione();
  131.     }

  132.     /**
  133.      * Create an instance of {@link RiferimentoSoggetto }
  134.      */
  135.     public RiferimentoSoggetto createRiferimentoSoggetto() {
  136.         return new RiferimentoSoggetto();
  137.     }

  138.     /**
  139.      * Create an instance of {@link IdentificatoreAccordo }
  140.      */
  141.     public IdentificatoreAccordo createIdentificatoreAccordo() {
  142.         return new IdentificatoreAccordo();
  143.     }

  144.     /**
  145.      * Create an instance of {@link RiferimentoServizioApplicativoErogatore }
  146.      */
  147.     public RiferimentoServizioApplicativoErogatore createRiferimentoServizioApplicativoErogatore() {
  148.         return new RiferimentoServizioApplicativoErogatore();
  149.     }


  150.  }