Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.78 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <<<<<<< HEAD
  3. <objects xmlns="http://www.springframework.net"
  4. xmlns:aop="http://www.springframework.net/aop">
  5. <!--AOP advisor, advice-->
  6. <object id="loggingBeforeAdvice" type="rendicion.AOP.LoggingBeforeAdvice">
  7. </object>
  8. <object id="loggingAfterAdvice" type="rendicion.AOP.LoggingAfterAdvice">
  9. </object>
  10. <object id="exceptionThrowsAdvice" type="rendicion.AOP.ExceptionThrowsAdvice">
  11. </object>
  12. <object id="context" type="rendicion.Modules.RendicionContextDB" singleton="false"></object>
  13.  
  14. <!--<object id="simpleServiceProxy" type="Spring.Aop.Framework.ProxyFactoryObject">
  15. <property name="target">
  16. <object id="simpleService" type="rendicion.AOP.Services.SimpleService" />
  17. </property>
  18. <property name="InterceptorNames">
  19. <list>
  20. <value>loggingBeforeAdvice</value>
  21. <value>loggingAfterAdvice</value>
  22. <value>exceptionThrowsAdvice</value>
  23. </list>
  24. </property>
  25. </object>-->
  26. <object id="consoleLoggingAroundAdvice"
  27. type="Spring.Aop.Support.RegularExpressionMethodPointcutAdvisor">
  28. <property name="patterns">
  29. <list>
  30. <value>.*Get.*</value>
  31. <value>.*Find.*</value>
  32. </list>
  33. </property>
  34. <property name="advice">
  35. <object type="rendicion.AOP.ConsoleLoggingAroundAdvice"/>
  36. </property>
  37. </object>
  38. <!--<object id="ServiceProxyRepository" name="ServiceProxyRepository" type="Spring.Aop.Framework.ProxyFactoryObject">
  39. <property name="target">
  40. <object id="institucionRepo" type="rendicion.Modules.Proyecto.Repository.InstitucionRepository" >
  41. <constructor-arg name="container" ref="context"></constructor-arg>
  42. </object>
  43. </property>
  44. <property name="InterceptorNames">
  45. <list>
  46. <value>loggingBeforeAdvice</value>
  47. <value>loggingAfterAdvice</value>
  48. <value>exceptionThrowsAdvice</value>
  49. </list>
  50. </property>
  51. </object>-->
  52. <!--Presenters-->
  53. <!--Business Logic-->
  54. <!--Repository-->
  55. <!--<object id="customQuery" name="customQuery" type="rendicion.Modules.CustomQuery" singleton="false">
  56. <constructor-arg name="container" ref="context"></constructor-arg>
  57. </object>-->
  58. <object id="institucionProyectoFacade" name="institucionProyectoFacade" type="rendicion.Modules.Proyecto.Domain.InstitucionProyectoFacade" singleton="false">
  59. <constructor-arg name="irep" ref="institucionRepository"></constructor-arg>
  60. <constructor-arg name="context" ref="context"></constructor-arg>
  61. </object>
  62. <object id="institucionRepository" name="institucionRepository" type="rendicion.Modules.Proyecto.Repository.InstitucionRepository" singleton="false">
  63. <constructor-arg name="container" ref="context"></constructor-arg>
  64. <!-- <constructor-arg name="queryStatement" ref="queryStatement"></constructor-arg>-->
  65. </object>
  66. <object id="institucionApplication" name="institucionApplication" type="rendicion.Modules.Proyecto.Application.InstitucionApplication" singleton="false">
  67. <constructor-arg name="irep" ref="institucionRepository"></constructor-arg>
  68. </object>
  69. <object id="cuentaRepository" name="cuentaRepository" type="rendicion.Modules.PlanCuenta.Repository.CuentaRepository" singleton="false">
  70. <constructor-arg name="container" ref="context"></constructor-arg>
  71. </object>
  72. <object id="cuentaApplication" name="cuentaApplication" type="rendicion.Modules.PlanCuenta.Application.CuentaApplication" singleton="false">
  73. <constructor-arg name="icr" ref="cuentaRepository"></constructor-arg>
  74. </object>
  75.  
  76. <object id="ProxyCreator" type="Spring.Aop.Framework.AutoProxy.ObjectNameAutoProxyCreator, Spring.Aop">
  77. <property name="ObjectNames">
  78. <list>
  79. <value>*Repository*</value>
  80. <!--<value>PortugeseSpeaker</value>-->
  81. </list>
  82. </property>
  83. <property name="InterceptorNames">
  84. <list>
  85. <value>loggingBeforeAdvice</value>
  86. <value>loggingAfterAdvice</value>
  87. <value>exceptionThrowsAdvice</value>
  88. <value>consoleLoggingAroundAdvice</value>
  89. </list>
  90. </property>
  91. </object>
  92. </objects>
  93. =======
  94. <objects xmlns="http://www.springframework.net"
  95. xmlns:aop="http://www.springframework.net/aop" >
  96. <object id="context" type="Rendicion.Modules.Utils.ContextRendicion" singleton="false"></object>
  97.  
  98. <object id="documentoRepository" name="documentoRepository" type="Rendicion.Modules.Documentos.Repository.DocumentoRepository" singleton="false">
  99. <constructor-arg name="container" ref="context"></constructor-arg>
  100. </object>
  101. <object id="documentoApplication" name="documentoApplication" type="Rendicion.Modules.Documentos.Application.DocumentoApplication" singleton="false">
  102. <constructor-arg name="idr" ref="documentoRepository"></constructor-arg>
  103. </object>
  104. <object id="documentoPresentation" name="documentoPresentation" type="Rendicion.Modules.Documentos.Presentation.DocumentoPresentation" singleton="false">
  105. <constructor-arg name="ida" ref="documentoApplication"></constructor-arg>
  106. </object>
  107.  
  108. <!--<object id="egresoRepository" name="egresoRepository" type="Rendicion.Modules.Egreso.Repository.EgresoRepository" singleton="false">
  109. <constructor-arg name="container" ref="context"></constructor-arg>
  110. </object>-->
  111. <object id="egresoRepository" name="egresoRepositoryDocumento" type="Rendicion.Modules.Egreso.Repository.EgresoRepository" singleton="false">
  112. <constructor-arg name="container" ref="context"></constructor-arg>
  113. <constructor-arg name="idr" ref="documentoRepository"></constructor-arg>
  114. </object>
  115. <object id="egresoApplication" name="egresoApplication" type="Rendicion.Modules.Egreso.Application.EgresoApplication" singleton="false">
  116. <constructor-arg name="ier" ref="egresoRepository"></constructor-arg>
  117. </object>
  118.  
  119. <object id="plancuentaRepository" name="plancuentaRepository" type="Rendicion.Modules.PlanCuenta.Repository.PlanCuentaRepository" singleton="false">
  120. <constructor-arg name="container" ref="context"></constructor-arg>
  121. </object>
  122. <object id="plancuentaApplication" name="plancuentaApplication" type="Rendicion.Modules.PlanCuenta.Application.PlanCuentaApplication" singleton="false">
  123. <constructor-arg name="_PCR" ref="plancuentaRepository"></constructor-arg>
  124. </object>
  125. <object id="plancuentaPresentation" name="plancuentaPresentation" type="Rendicion.Modules.PlanCuenta.Presentation.PlanCuentaPresentation" singleton="false">
  126. <constructor-arg name="_IPCA" ref="plancuentaApplication"></constructor-arg>
  127. </object>
  128. <object id="customQuery" name="customQuery" type="Rendicion.Modules.Utils.CustomQuery" singleton="false">
  129. <constructor-arg name="container" ref="context"></constructor-arg>
  130. </object>
  131. </objects>
  132. >>>>>>> ricardo
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement