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.core.statistiche;

  21. import javax.xml.bind.annotation.XmlRegistry;
  22. import javax.xml.bind.annotation.XmlElementDecl;
  23. import javax.xml.bind.JAXBElement;
  24. import javax.xml.namespace.QName;


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

  43. @XmlRegistry
  44. public class ObjectFactory {


  45.     /**
  46.      * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.openspcoop2.core.statistiche
  47.      *
  48.      */
  49.     public ObjectFactory() {
  50.         // Create a new ObjectFactory
  51.     }

  52.     /**
  53.      * Create an instance of {@link StatisticaOraria }
  54.      */
  55.     public StatisticaOraria createStatisticaOraria() {
  56.         return new StatisticaOraria();
  57.     }

  58.     /**
  59.      * Create an instance of {@link StatisticaContenuti }
  60.      */
  61.     public StatisticaContenuti createStatisticaContenuti() {
  62.         return new StatisticaContenuti();
  63.     }

  64.     /**
  65.      * Create an instance of {@link StatisticaSettimanale }
  66.      */
  67.     public StatisticaSettimanale createStatisticaSettimanale() {
  68.         return new StatisticaSettimanale();
  69.     }

  70.     /**
  71.      * Create an instance of {@link StatisticaGiornaliera }
  72.      */
  73.     public StatisticaGiornaliera createStatisticaGiornaliera() {
  74.         return new StatisticaGiornaliera();
  75.     }

  76.     /**
  77.      * Create an instance of {@link StatistichePdndTracing }
  78.      */
  79.     public StatistichePdndTracing createStatistichePdndTracing() {
  80.         return new StatistichePdndTracing();
  81.     }

  82.     /**
  83.      * Create an instance of {@link StatisticaMensile }
  84.      */
  85.     public StatisticaMensile createStatisticaMensile() {
  86.         return new StatisticaMensile();
  87.     }

  88.     /**
  89.      * Create an instance of {@link StatisticaInfo }
  90.      */
  91.     public StatisticaInfo createStatisticaInfo() {
  92.         return new StatisticaInfo();
  93.     }

  94.     /**
  95.      * Create an instance of {@link Statistica }
  96.      */
  97.     public Statistica createStatistica() {
  98.         return new Statistica();
  99.     }

  100.     private static final QName _StatisticaOrariaContenuti = new QName("http://www.openspcoop2.org/core/statistiche", "statistica-oraria-contenuti");

  101.     /**
  102.      * Create an instance of {@link JAXBElement }{@code <}{@link StatisticaContenuti }{@code >}}
  103.      */
  104.     @XmlElementDecl(namespace = "http://www.openspcoop2.org/core/statistiche", name="statistica-oraria-contenuti")
  105.     public JAXBElement<StatisticaContenuti> createStatisticaOrariaContenuti() {
  106.         return new JAXBElement<StatisticaContenuti>(_StatisticaOrariaContenuti, StatisticaContenuti.class, null, this.createStatisticaContenuti());
  107.     }
  108.     public JAXBElement<StatisticaContenuti> createStatisticaOrariaContenuti(StatisticaContenuti statisticaOrariaContenuti) {
  109.         return new JAXBElement<StatisticaContenuti>(_StatisticaOrariaContenuti, StatisticaContenuti.class, null, statisticaOrariaContenuti);
  110.     }

  111.     private static final QName _StatisticaMensileContenuti = new QName("http://www.openspcoop2.org/core/statistiche", "statistica-mensile-contenuti");

  112.     /**
  113.      * Create an instance of {@link JAXBElement }{@code <}{@link StatisticaContenuti }{@code >}}
  114.      */
  115.     @XmlElementDecl(namespace = "http://www.openspcoop2.org/core/statistiche", name="statistica-mensile-contenuti")
  116.     public JAXBElement<StatisticaContenuti> createStatisticaMensileContenuti() {
  117.         return new JAXBElement<StatisticaContenuti>(_StatisticaMensileContenuti, StatisticaContenuti.class, null, this.createStatisticaContenuti());
  118.     }
  119.     public JAXBElement<StatisticaContenuti> createStatisticaMensileContenuti(StatisticaContenuti statisticaMensileContenuti) {
  120.         return new JAXBElement<StatisticaContenuti>(_StatisticaMensileContenuti, StatisticaContenuti.class, null, statisticaMensileContenuti);
  121.     }

  122.     private static final QName _StatisticaGiornalieraContenuti = new QName("http://www.openspcoop2.org/core/statistiche", "statistica-giornaliera-contenuti");

  123.     /**
  124.      * Create an instance of {@link JAXBElement }{@code <}{@link StatisticaContenuti }{@code >}}
  125.      */
  126.     @XmlElementDecl(namespace = "http://www.openspcoop2.org/core/statistiche", name="statistica-giornaliera-contenuti")
  127.     public JAXBElement<StatisticaContenuti> createStatisticaGiornalieraContenuti() {
  128.         return new JAXBElement<StatisticaContenuti>(_StatisticaGiornalieraContenuti, StatisticaContenuti.class, null, this.createStatisticaContenuti());
  129.     }
  130.     public JAXBElement<StatisticaContenuti> createStatisticaGiornalieraContenuti(StatisticaContenuti statisticaGiornalieraContenuti) {
  131.         return new JAXBElement<StatisticaContenuti>(_StatisticaGiornalieraContenuti, StatisticaContenuti.class, null, statisticaGiornalieraContenuti);
  132.     }

  133.     private static final QName _StatisticaSettimanaleContenuti = new QName("http://www.openspcoop2.org/core/statistiche", "statistica-settimanale-contenuti");

  134.     /**
  135.      * Create an instance of {@link JAXBElement }{@code <}{@link StatisticaContenuti }{@code >}}
  136.      */
  137.     @XmlElementDecl(namespace = "http://www.openspcoop2.org/core/statistiche", name="statistica-settimanale-contenuti")
  138.     public JAXBElement<StatisticaContenuti> createStatisticaSettimanaleContenuti() {
  139.         return new JAXBElement<StatisticaContenuti>(_StatisticaSettimanaleContenuti, StatisticaContenuti.class, null, this.createStatisticaContenuti());
  140.     }
  141.     public JAXBElement<StatisticaContenuti> createStatisticaSettimanaleContenuti(StatisticaContenuti statisticaSettimanaleContenuti) {
  142.         return new JAXBElement<StatisticaContenuti>(_StatisticaSettimanaleContenuti, StatisticaContenuti.class, null, statisticaSettimanaleContenuti);
  143.     }


  144.  }