First Commit from Source Code Reply

This commit is contained in:
vincenzofariello
2024-05-09 17:40:24 +02:00
parent 11e3b57c5b
commit 107a016cb9
35225 changed files with 1111346 additions and 1 deletions

View File

@@ -0,0 +1,230 @@
# THE CASTOR PROPERTIES FILE
# This file specifies values for Castor run-time which may be configured by the user.
# $Id: castor.properties,v 1.1.2.1 2015/04/13 20:38:11 valueteam\giustinianide Exp $
# This section defines Backwards compatibility switches.
#
# Hashtable/Map default mapping.
# For backward compatibility with 0.9.5.2 and earlier.
#
#org.exolab.castor.xml.saveMapKeys=false
# Defines the default XML parser to be used by Castor.
# The parser must implement org.xml.sax.Parser.
#
org.exolab.castor.parser=org.apache.xerces.parsers.SAXParser
# Defines the (default) XML serializer factory to use by Castor, which must
# implement org.exolab.castor.xml.SerializerFactory;
# Default is org.exolab.castor.xml.XercesXMLSerializerFactory
org.exolab.castor.xml.serializer.factory=org.exolab.castor.xml.XercesXMLSerializerFactory
# Defines the NodeType for use with Java primitive types (int, long, boolean,
# etc). This value is only used by the Introspector. Valid values are either
# "attribute" or "element". By default, all primitives are marshaled as
# attributes. Uncomment the following line to change the NodeType to element.
#
#org.exolab.castor.xml.introspector.primitive.nodetype=element
# Defines the Naming "style" or conventions to use when creating XML names
# from Java class or field names.
# Valid values are as follows:
# -----------------------------------------------------------------
# lower (default) | All names are lowercase with hyphens
# | separating words.
# |
# | Example: personInfo = person-info
# -----------------------------------------------------------------
# mixed | All names are mixed case, with Uppercase
# | character as the first letter of a new word.
# |
# | Example: personInfo = personInfo
# | Example: FooBar = fooBar
# -----------------------------------------------------------------
# {Any ClassName} | Any Class which implements
# | org.exolab.castor.xml.XMLNaming
# -----------------------------------------------------------------
#
# By default, all names are treated as the "lower" option. To preserve the
# Java mixed-case conventions, uncomment the following line.
#
#org.exolab.castor.xml.naming=mixed
###############################
# REGULAR EXPRESSION EVALUATORS
#
# Defines the Regular Expression Evaluator to be used by Castor.
# The evaluator must implement org.exolab.castor.util.RegExpEvaluator.
#
# Uncomment the following to basically suppress Regular expressions evaluation:
#org.exolab.castor.regexp=org.exolab.castor.xml.util.AlwaysTrueRegExpEvaluator
#
# An implementation which uses the Jakarta RegExp library:
#org.exolab.castor.regexp=org.exolab.castor.util.JakartaRegExpEvaluator
#
# An implementation which uses the Jakarta ORO library:
org.exolab.castor.regexp=org.exolab.castor.util.JakartaOroEvaluator
# True if all documents should be indented on output by default.
# Defaults to false.
#
org.exolab.castor.indent=true
# True if xml documents should be validated by the SAX Parser
# Defaults to false.
#
org.exolab.castor.parser.validation=false
# True for parser to support Namespaces.
# Defaults to false.
#
org.exolab.castor.parser.namespaces=false
# True if all documents should be validated by the marshaling framework
# Defaults to true.
#
org.exolab.castor.marshalling.validation=true
# Comma separated list of SAX 2 features that should be enabled for the
# default parser.
#
#org.exolab.castor.sax.features=
# Comma separated list of SAX 2 features that should be disabled for the
# default parser.
#
#org.exolab.castor.sax.features-to-disable
# True if debugging output should be generated.
# Defaults to false.
#
org.exolab.castor.debug=false
# List of collection handlers for Java 1.1 and Java 1.2 run-times:
#
org.exolab.castor.mapping.collections=\
org.exolab.castor.mapping.loader.J1CollectionHandlers,\
org.exolab.castor.mapping.loader.J2CollectionHandlers
# List of persistence factories for the supported database servers:
#
org.exolab.castor.jdo.engines=\
org.exolab.castor.jdo.drivers.OracleFactory,\
org.exolab.castor.jdo.drivers.PostgreSQLFactory,\
org.exolab.castor.jdo.drivers.SybaseFactory,\
org.exolab.castor.jdo.drivers.SQLServerFactory,\
org.exolab.castor.jdo.drivers.DB2Factory,\
org.exolab.castor.jdo.drivers.InformixFactory,\
org.exolab.castor.jdo.drivers.HsqlFactory,\
org.exolab.castor.jdo.drivers.InstantDBFactory,\
org.exolab.castor.jdo.drivers.InterbaseFactory,\
org.exolab.castor.jdo.drivers.MySQLFactory,\
org.exolab.castor.jdo.drivers.SapDbFactory,\
org.exolab.castor.jdo.drivers.GenericFactory,\
org.exolab.castor.jdo.drivers.DerbyFactory,\
org.castor.jdo.drivers.PointbaseFactory,\
org.castor.jdo.drivers.ProgressFactory
# List of key generator factories:
#
org.exolab.castor.jdo.keyGeneratorFactories=\
org.exolab.castor.jdo.keygen.MaxKeyGeneratorFactory,\
org.exolab.castor.jdo.keygen.HighLowKeyGeneratorFactory,\
org.exolab.castor.jdo.keygen.IdentityKeyGeneratorFactory,\
org.exolab.castor.jdo.keygen.SequenceKeyGeneratorFactory,\
org.exolab.castor.jdo.keygen.UUIDKeyGeneratorFactory
# Collection handlers for the source code generator:
#
org.exolab.castor.builder.type.j2=\
org.exolab.castor.builder.FieldInfoFactoryJ2
org.exolab.castor.builder.type.j1=\
org.exolab.castor.builder.FieldInfoFactory
org.exolab.castor.builder.type.odmg=\
org.exolab.castor.builder.FieldInfoFactoryODMG30
# Configures the default time zone to apply to dates/times fetched from
# database fields (if not already part of the data). Specify same format as
# in java.util.TimeZone.getTimeZone, or the empty string to use the computer's
# local time zone. Please see http://de.wikipedia.org/wiki/Zeitzone for
# detailed information about time zones.
#
org.exolab.castor.jdo.defaultTimeZone=
#org.exolab.castor.jdo.defaultTimeZone=GMT-8:00
# List of TxSynchronizeable implementations:
#
#org.exolab.castor.persist.TxSynchronizable=
# Sets the buffer size in bytes for fetching LOBs (this is dependent upon
# the JDBC driver implementation). The value below == 5k.
#
org.exolab.castor.jdo.lobBufferSize=5120
# True if database configuration should be initalization
# when loading it (default: true).
#
#org.exolab.castor.jdo.DatabaseInitializeAtLoad=true
# True if proxy classes should be used for JDBC connections and
# prepared statements.
# Defaults to true.
#
org.exolab.castor.persist.useProxies=false
# MappingLoader implementations:
#
org.castor.mapping.loaderFactories=\
org.castor.mapping.JDOMappingLoaderFactory,\
org.castor.mapping.XMLMappingLoaderFactory
# Cache implementations:
#
org.castor.cache.Factories=\
org.castor.cache.simple.NoCacheFactory,\
org.castor.cache.simple.TimeLimitedFactory,\
org.castor.cache.simple.CountLimitedFactory,\
org.castor.cache.simple.UnlimitedFactory,\
org.castor.cache.distributed.FKCacheFactory,\
org.castor.cache.distributed.JcsCacheFactory,\
org.castor.cache.distributed.JCacheFactory,\
org.castor.cache.distributed.CoherenceCacheFactory,\
org.castor.cache.distributed.OsCacheFactory,\
org.castor.cache.hashbelt.FIFOHashbeltFactory,\
org.castor.cache.hashbelt.LRUHashbeltFactory,\
org.castor.cache.distributed.EHCacheFactory,\
org.castor.cache.distributed.GigaspacesCacheFactory
# TransactionManagerFactory implementations:
#
org.castor.transactionmanager.Factories=\
org.castor.transactionmanager.WebSphereTransactionManagerFactory,\
org.castor.transactionmanager.WebSphere5TransactionManagerFactory,\
org.castor.transactionmanager.WebSphere51TransactionManagerFactory,\
org.castor.transactionmanager.LocalTransactionManagerFactory,\
org.castor.transactionmanager.JNDIENCTransactionManagerFactory,\
org.castor.transactionmanager.JOTMTransactionManagerFactory
# Selects whether the TransactionManager should be initialized at registration,
# or lazily when requested for the first time.
# Defaults to false.
#
org.castor.transactionmanager.InitializeAtRegistration=false
# Instructs Castor JDO to use the JDBC 3.0-specific features to obtain
# the generated value of an identity column.
# Defaults to false.
#
org.castor.jdo.use.jdbc30=false
# Specifies whether to use ANSI-compliant SQL for MS SQL Server.
# Defaults to false.
#
org.exolab.castor.jdo.sqlserver.ansi-compliant=false
# Specifyies whether the ClassDescriptorResolver should (automatically) search
# for and consult with package mapping files (.castor.xml) to retrieve class
# descriptor information; on by default.
# Defaults to true.
#
#org.exolab.castor.xml.loadPackageMappings=false

View File

@@ -0,0 +1,331 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="jndi.class">weblogic.jndi.WLInitialContextFactory</property>
<property name="connection.datasource">jdbc/gnpDS</property>
<property name="transaction.factory_class">org.hibernate.transaction.JTATransactionFactory</property>
<property name="transaction.manager_lookup_class">org.hibernate.transaction.WeblogicTransactionManagerLookup</property>
<!-- Chooses the HQL parser implementation -->
<property name="hibernate.query.factory_class">org.hibernate.hql.classic.ClassicQueryTranslatorFactory</property>
<property name="cache.use_second_level_cache">false</property>
<property name="current_session_context_class">jta</property>
<property name="dialect">org.hibernate.dialect.OracleDialect</property>
<property name="connection.password"/>
<property name="jta.UserTransaction">javax.transaction.UserTransaction</property>
<property name="transaction.auto_close_session">true</property>
<property name="show_sql">false</property>
<!-- <property name="default_schema">GNP</property>-->
<!-- Mapping per CRM Business-->
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmbInRec.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmbOutRec.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmbScartiIn.hbm.xml"/>
<!-- Mapping per CRM Residenziale -->
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmrInRec.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmrOutRec.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmrScartiIn.hbm.xml"/>
<!-- Mapping per Pitagora -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpPitagoraOutRec.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpPitagoraRichiesteIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpPitagoraScartiRicIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpPitagoraXdslRichiesteIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpPitXdslScartiRicIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpPitagoraXdslOutRec.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpPitagoraXdslScartiIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpPitagoraOutFile.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpPitagoraStoricoOut.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpPitagoraStoricoRicOut.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStatoFilePitagora.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpPitagoraA375In.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpPitagoraA375Out.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpPitagoraA375AckOut.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpPitagoraA375ScartiIn.hbm.xml"/>
<!-- Mapping per anagrafica OLO -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpAnagOlo.hbm.xml"/>
<!-- Mapping per anagrafica OLO -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpNngCodiciOlo.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpAnagOloParam.hbm.xml"/>
<!-- Mapping per anagrafica -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpAnagraficaCos.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpAnagOloTipoCom.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpAnagOloCodMotivoRif.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpCsNpg103CodMotivoRif.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpAnagOloCausaleRifiuto.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpAnagCanaleVendita.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpAnagMarcaggio.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpOloMotivoRifiuto.hbm.xml"/>
<!-- Mapping per OLO -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpOloScartiIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpOloRichiesteOut.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpOloRichiesteIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpOloScartiRichiesteIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpOloOut.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpOloIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpOloAckIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpOloAckOut.hbm.xml"/>
<!-- Mapping per gestione Richieste -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStoricoRichiesteRec.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRichiesteRec.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRichiesteRecExt.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpMlineaMsede.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpMlineaMsedeNPG35.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpNumAggiuntiveRec.hbm.xml"/>
<!-- Mapping per SMS -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpSmsOut.hbm.xml"/>
<!-- Mapping per DBCFXGO-->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpDbcfxgoOutRec.hbm.xml"/>
<!-- Mapping per la gestione dei flussi batch -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpFlussoinBatchPatternIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpFlussoinBatch.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpFlussoinBatchPattern.hbm.xml"/>
<!-- Mapping per anagrafica STATO-->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStatoRec.hbm.xml"/>
<!-- Mapping per BAM -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpBamTransStato.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpBamScarti.hbm.xml"/>
<!-- Mapping per Home Zone -->
<mapping resource="it/valueteam/gnp/dao/db/hb/homezone/HzCrmrInRec.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/homezone/HzCrmrScartiIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/homezone/HzDbcOutRec.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/homezone/HzRichiesteRec.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/homezone/HzStoricoRichiesteRec.hbm.xml"/>
<!-- Mapping per Doppio Donating -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpDoppioDonatingOloBridge.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStoricoRichiesteDd.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStatoDoppioDonating.hbm.xml"/>
<!-- Mapping per CRM-A -->
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmaInRec.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmaOutRec.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmaScartiIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmaHeaderIn.hbm.xml"/>
<!-- Mapping per PROCESSO DONOR -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStoricoRichiesteDonor.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStatoDonor.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRichiesteDonor.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRichiesteDonor82.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpOloScartiRicDonorIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpOloRichiesteDonorOut.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpOloRichiesteDonorIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpAnagCowTelecom.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpNumAggiuntiveDonor.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmaDonorIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmaDonorOut.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmaScartiDonorIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmbDonorIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmbDonorOut.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmbScartiDonorIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmrDonorIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmrDonorOut.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmrScartiDonorIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpPitagoraDonorIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpPitagoraScartiDonorIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpPitagoraDonorOut.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpPitagoraDonorLineeOut.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmwsDonorIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmwsScartiDonorIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmwsDonorOut.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmwsDonorLineeOut.hbm.xml"/>
<!-- Mapping per REPORT DOPPIA COMMERCIALIZZAZIONE 2018 RU_279-->
<mapping resource="it/valueteam/gnp/dao/db/hb/report/GnpReportFenpFiSum.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/report/GnpReportFenpFoSum.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/report/GnpReportFenpFiDet.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/report/GnpReportFenpFoDet.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/report/GnpReportFenpRiDet.hbm.xml"/>
<!-- VISTA AGGIUNTIVA PER I REPORT DEL GIORNO PRECEDENTE QUADRATURA -->
<mapping resource="it/valueteam/gnp/dao/db/hb/report/GnpReportFenpFoSumYesterday.hbm.xml"/>
<!-- VISTA AGGIUNTIVA PER I REPORT DEL GIORNO PRECEDENTE PER DETTAGLIO -->
<mapping resource="it/valueteam/gnp/dao/db/hb/report/GnpReportFenpFoDetYesterday.hbm.xml"/>
<!-- R1E-19-0150 D35 NUMERAZIONI NATIVE OLO GESTIONE FLUSSI NON ACQUISITI DA OLO DONOR-->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpFenpRichiesteOutStorico.hbm.xml"/>
<!-- WA per verifica CS tabella momentanea per controllo COW-->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpAnagCowLineaTelecom.hbm.xml"/>
<!-- MODIFICA CS RICHIESTA DA DEMARIA-->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpScartiVerificaCs.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRientroCCCHB.hbm.xml"/>
<!-- Mapping per INTEGRAZIONE DBC X4 2010-->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpDbp.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpDbpStorico.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpDbpOut.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpDbpOloOut.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpDbpDbcScartoIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpDbpDbcIn.hbm.xml"/>
<!-- FINE Mapping per INTEGRAZIONE DBC X4 2010-->
<!-- INIZIO Mapping per VERIFICA RID X9 2010 -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpVerificaRidDonor.hbm.xml"/>
<!-- FINE Mapping per VERIFICA RID X9 2010 -->
<!-- INIZIO MAPPING PROCESSI NPG35 X1 2011 -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRichiesteA375Npg35.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStoricoA375Npg35.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStatoA375Npg35.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRichiesteNpg35.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRichiesteDel35MultiD.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStoricoNpg35.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStatoNpg35.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpFenpRichiesteOut.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpFenpOut.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpFenpAckOut.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpFenpIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpFenpAckIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpFenpRichiesteIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpFenpRichiesteInTok.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpFenpScartiIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpFenpScartiRichiesteIn.hbm.xml"/>
<!-- FINE MAPPING PROCESSI NPG35 X1 2011 -->
<!-- INIZIO MAPPING PROCESSI NPG35 X3 2011 -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRichiesteCsNpg35.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStatoCsNpg35.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStoricoCsNpg35.hbm.xml"/>
<!-- FINE MAPPING PROCESSI NPG35 X3 2011 -->
<!-- X7/2011 -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRichiesteNpg35Ext.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpDbcfxgoOutNpg35.hbm.xml"/>
<!-- FINE X7/2011 -->
<!-- X9/2011 -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRientroConsip.hbm.xml"/>
<!-- FINE X9/2011 -->
<!-- X9 BIS/2011 -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRichiesteDonNatOlo.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStatoDonNatOlo.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStoricoDonNatOlo.hbm.xml"/>
<!-- FINE X9 BIS/2011 -->
<!-- INIZIO X3 2012 -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStatoOlo35mn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStoricoOlo35mn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRichiesteOlo35mn.hbm.xml"/>
<!-- FINE X3 2012 -->
<!-- INIZIO X5 2014 -->
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmbVoip35InRec.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmbVoip35InRecListadn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmbVoip35ListdnOutRec.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmbVoip35OutRec.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmbVoip35ScartiIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRichiesteVoip35.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRichiesteVoip35Listadn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStatoVoip35.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStoricoVoip35.hbm.xml"/>
<!-- FINE X5 2014 -->
<!-- INIZIO X06 2016 -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpDbssOutRec.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpDbssScartiInRec.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpDbssSoapHeaderIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpDbssInRec.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpDbssDonorOut.hbm.xml"/>
<!-- FINE X06 2016 -->
<!-- INIZIO X10 2016 (S4 NOW) -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpWholesaleIn.hbm.xml"/>
<!-- FINE X10 2016 (S4 NOW) -->
<!-- INIZIO C01 2017 -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpVerificaCsWhitelist.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStatoRichCessazione.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRichCessazione.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStoricoRichCess.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpEsitoCessSoapHeaderIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmNotifyDonorOut.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpMonitoraggioE2e.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpMonitoraggioE2eScarti.hbm.xml"/>
<!-- FINE C01 2017 -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpMonitoraggioE2ePIC.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpMonitoraggioE2eSS.hbm.xml"/>
<!-- INIZIO C04 2017 -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpNowDonorIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpNowScartiDonorIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpNowDonorOut.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpNowDonorLineeOut.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpNowD82RichiesteIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpNowD82RichiesteOut.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpNowRichiesteIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpNowScartiRichiesteIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpNowXdslRichiesteIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpNowXdslScartiRichIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpNowXdslScartiIn.hbm.xml"/>
<!-- INIZIO C04 2017 -->
<!-- INIZIO 2020 -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStoricoKoDel274.hbm.xml"/>
<!-- FINE 2020 -->
<!-- INIZIO 2021 -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpMonitoraggioNowDbcfxCrm.hbm.xml"/>
<!-- FINE 2020 -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpNowWhsInRec.hbm.xml"/>
<!-- INIZIO 2022 -->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRichiesteCsNpg103.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRichiesteNpg103Ext.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRichiesteNpg103.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRichiesteDel103MultiD.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRichiesteOlo103mn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRichiesteVoip103Listadn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRichiesteVoip103.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStoricoCsNpg103.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStoricoNpg103.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStoricoOlo103mn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStoricoVoip103.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpDbssEsplDonatingIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmbEsplDonatingIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmbVoip103InRec.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmbVoip103InRecListadn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmbVoip103ListdnOutRec.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmbVoip103OutRec.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/crm/GnpCrmbVoip103ScartiIn.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpNotificaD103DbcfxgoDonating.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpNotificaD103DbcfxgoRec.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStoricoDbcfxgo.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpDbcfxgoOutDel82.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpDbcfxgoOutNpg103.hbm.xml"/>
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpCrmbSoapHeaderIn.hbm.xml"/>
<!-- FINE 2022 -->
<!-- NNG 103-->
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpDbcfxgoInNng103.hbm.xml" />
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpDbcfxgoOutNng103.hbm.xml" />
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpNngFenpOut.hbm.xml" />
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpNngFenpRichIn.hbm.xml" />
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpNngFenpRichOut.hbm.xml" />
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpNngFenpRichOutStorico.hbm.xml" />
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRichiesteNngDon.hbm.xml" />
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpRichiesteNngRec.hbm.xml" />
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStatoNngDon.hbm.xml" />
<mapping resource="it/valueteam/gnp/dao/db/hb/GnpStatoNngRec.hbm.xml" />
<!-- FINE NNG 103-->
<!-- cache settings -->
<class-cache class="it.valueteam.gnp.dao.db.hb.GnpFlussoinBatchPatternIn" usage="read-only"/>
<class-cache class="it.valueteam.gnp.dao.db.hb.GnpFlussoinBatchPattern" usage="read-only"/>
<class-cache class="it.valueteam.gnp.dao.db.hb.GnpFlussoinBatch" usage="read-only"/>
<class-cache class="it.valueteam.gnp.dao.db.hb.GnpAnagOlo" usage="read-only"/>
<class-cache class="it.valueteam.gnp.dao.db.hb.GnpNngCodiciOlo" usage="read-only"/>
<class-cache class="it.valueteam.gnp.dao.db.hb.GnpAnagraficaCos" usage="read-only"/>
<class-cache class="it.valueteam.gnp.dao.db.hb.GnpAnagOloTipoCom" usage="read-only"/>
<class-cache class="it.valueteam.gnp.dao.db.hb.GnpAnagOloCodMotivoRif" usage="read-only"/>
<class-cache class="it.valueteam.gnp.dao.db.hb.GnpAnagOloCausaleRifiuto" usage="read-only"/>
<class-cache class="it.valueteam.gnp.dao.db.hb.GnpAnagMarcaggio" usage="read-only"/>
<class-cache class="it.valueteam.gnp.dao.db.hb.GnpAnagCanaleVendita" usage="read-only"/>
<class-cache class="it.valueteam.gnp.dao.db.hb.GnpStatoRec" usage="read-only"/>
<class-cache class="it.valueteam.gnp.dao.db.hb.GnpStatoDoppioDonating" usage="read-only"/>
<!-- cache settings PROCESSO DONOR-->
<class-cache class="it.valueteam.gnp.dao.db.hb.GnpAnagCowTelecom" usage="read-only"/>
<class-cache class="it.valueteam.gnp.dao.db.hb.GnpStatoDonor" usage="read-only"/>
<!-- cache settings PROCESSO NPG35-->
<class-cache class="it.valueteam.gnp.dao.db.hb.GnpStatoA375Npg35" usage="read-only"/>
<class-cache class="it.valueteam.gnp.dao.db.hb.GnpStatoNpg35" usage="read-only"/>
<class-cache class="it.valueteam.gnp.dao.db.hb.GnpStatoCsNpg35" usage="read-only"/>
<!-- cache settings PROCESSO OLO35MN-->
<class-cache class="it.valueteam.gnp.dao.db.hb.GnpStatoOlo35mn" usage="read-only"/>
</session-factory>
</hibernate-configuration>

View File

@@ -0,0 +1,2 @@
java.naming.factory.initial=weblogic.jndi.WLInitialContextFactory

View File

@@ -0,0 +1,45 @@
log4j.appender.database=biz.minaret.log4j.DatedFileAppender
log4j.appender.database.layout=org.apache.log4j.PatternLayout
log4j.appender.database.layout.ConversionPattern=[THREAD %t] - %d{DATE} - [%c] - [LINE %L] - [ %-5p] - %m %n
log4j.appender.database.Directory=/gnpapp/log/domain/
log4j.appender.database.Prefix=general.jdbc.
log4j.appender.database.Suffix=.log
######HIBERNATE CONFIGURATION LOG4J#######
### log all hibernate
log4j.additivity.org.hibernate=false
log4j.logger.org.hibernate=DEBUG, database
### log HQL query parser activity
log4j.additivity.org.hibernate.hql.AST=false
log4j.logger.org.hibernate.hql.ast.AST=ERROR, database
### log just the SQL
log4j.additivity.org.hibernate.SQL=false
log4j.logger.org.hibernate.SQL=DEBUG, database
### log JDBC bind parameters ###
log4j.additivity.org.hibernate.type=false
log4j.logger.org.hibernate.type=ERROR, database
### log schema export/update ###
log4j.additivity.org.hibernate.tool.hbm2ddl=false
log4j.logger.org.hibernate.tool.hbm2ddl=ERROR, database
### log HQL parse trees
log4j.additivity.org.hibernate.hql=false
log4j.logger.org.hibernate.hql=ERROR, database
### log cache activity ###
log4j.additivity.org.hibernate.cache=false
log4j.logger.org.hibernate.cache=ERROR, database
### log transaction activity
log4j.additivity.org.hibernate.transaction=false
log4j.logger.org.hibernate.transaction=ERROR, database
### log JDBC resource acquisition
log4j.additivity.org.hibernate.jdbc=false
log4j.logger.org.hibernate.jdbc=ERROR, database
######FINE HIBERNATE CONFIGURATION LOG4J#######