Subversion Repository Public Repository

Aurocare_27_07_2018

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version="1.0" encoding="UTF-8"?>
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:c="http://www.springframework.org/schema/c"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd" >

 <context:component-scan base-package="com.bestray.healthcarecommonutil">
    <context:include-filter type="regex" 
                       expression="com.bestray.healthcarecommonutil.daoimpl.*" />
    <context:include-filter type="regex" 
                       expression="com.bestray.healthcarecommonutil.serviceimpl.*" />
 </context:component-scan >
  <bean id="stringEncryptor" class="org.jasypt.encryption.pbe.StandardPBEStringEncryptor">
      <property name="algorithm">
  <value>PBEWithMD5AndDES</value> 
  </property> <property name="password">
  <value>objectstream</value> 
  </property>
  </bean>
 <bean id="hibernateEncryptor" class="org.jasypt.hibernate.encryptor.HibernatePBEStringEncryptor">
 <property name="registeredName">
  <value>myHibernateStringEncryptor</value> 
  </property>
 <property name="encryptor">
  <ref bean="stringEncryptor" /> 
  </property>
  </bean>

 <!-- Util Classes -->

 <!-- DAO Classes 
<bean id="orderResultDao" class="com.bestray.healthcarecommonutil.daoimpl.OrderResultDaoImpl" 
      p:sessionFactory-ref="sessionFactory"/>
<bean id="orderSpecimenCollectionDao" class="com.bestray.healthcarecommonutil.daoimpl.OrderSpecimenCollectionDaoImpl" 
      p:sessionFactory-ref="sessionFactory"/>
<bean id="procedureMasterDao" class="com.bestray.healthcarecommonutil.daoimpl.ProcedureMasterDaoImpl" 
      p:sessionFactory-ref="sessionFactory"/>
<bean id="componentMasterDao" class="com.bestray.healthcarecommonutil.daoimpl.ComponentMasterDaoImpl" 
      p:sessionFactory-ref="sessionFactory"/>
<bean id="procedureComponentDao" class="com.bestray.healthcarecommonutil.daoimpl.ProcedureComponentDaoImpl" 
      p:sessionFactory-ref="sessionFactory"/>
<bean id="patientMergeDao" class="com.bestray.healthcarecommonutil.daoimpl.PatientMergeDaoImpl" 
      p:sessionFactory-ref="sessionFactory"/>
<bean id="patientDao" class="com.bestray.healthcarecommonutil.daoimpl.PatientDaoImpl" 
      p:sessionFactory-ref="sessionFactory"/>
<bean id="codeTypeDao" class="com.bestray.healthcarecommonutil.daoimpl.CodeTypeDaoImpl" 
      p:sessionFactory-ref="sessionFactory"/>
<bean id="codeValuesDao" class="com.bestray.healthcarecommonutil.daoimpl.CodeValuesDaoImpl" 
      p:sessionFactory-ref="sessionFactory"/>-->
<!-- Service Classes 
<bean id="orderResultService" class="com.bestray.healthcarecommonutil.serviceimpl.OrderResultServiceImpl" 
      c:_0-ref="orderResultDao"/>
<bean id="orderSpecimenCollectionService" class="com.bestray.healthcarecommonutil.serviceimpl.OrderSpecimenCollectionServiceImpl" 
      c:_0-ref="orderSpecimenCollectionDao"/>
<bean id="procedureMasterService" class="com.bestray.healthcarecommonutil.serviceimpl.ProcedureMasterServiceImpl" 
      c:_0-ref="procedureMasterDao"
      c:_1-ref="componentMasterDao"
      c:_2-ref="procedureComponentDao"/>
<bean id="componentMasterService" class="com.bestray.healthcarecommonutil.serviceimpl.ComponentMasterServiceImpl" 
      c:_0-ref="componentMasterDao"/>
<bean id="procedureComponentService" class="com.bestray.healthcarecommonutil.serviceimpl.ProcedureComponentServiceImpl" 
      c:_0-ref="procedureComponentDao"
      c:_1-ref="componentMasterDao"/>
<bean id="patientMergeService" class="com.bestray.healthcarecommonutil.serviceimpl.PatientMergeServiceImpl" 
      c:_0-ref="patientMergeDao" />
<bean id="patientService" class="com.bestray.healthcarecommonutil.serviceimpl.PatientServiceImpl" 
      c:_0-ref="patientDao"
      c:_1-ref="patientMergeService"/>
<bean id="codeValuesService" class="com.bestray.healthcarecommonutil.serviceimpl.CodeValuesServiceImpl" 
      c:_0-ref="codeTypeDao" 
      c:_1-ref="codeValuesDao"/>-->

</beans>

Commits for Aurocare_27_07_2018/AuroCareCommonUtil/src/main/resources/healthCareCommonUtilBeans.xml

Diff revisions: vs.
Revision Author Commited Message
1 girijabapi picture girijabapi Fri 27 Jul, 2018 07:21:55 +0000