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.utils.jaxb;

  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.utils.jaxb 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 (apoli@link.it)
  36.  * @author Nardi Lorenzo (nardi@link.it)
  37.  * @author $Author$
  38.  * @version $Rev$, $Date$
  39. */

  40. @XmlRegistry
  41. public class ObjectFactory {


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

  48.     /**
  49.      * Create an instance of {@link Properties }
  50.      *
  51.      */
  52.     public Properties createProperties(){
  53.         return new Properties();
  54.     }
  55. }