remove classes of relationship

This commit is contained in:
Ezequiel Bergamaschi
2014-02-05 02:10:12 -03:00
committed by Ezequiel Bergamaschi
parent f3cc90d9d0
commit d089b471fc
11 changed files with 0 additions and 204 deletions

View File

@@ -34,7 +34,6 @@
<value>com/wisemapping/model/AccessAuditory.hbm.xml</value>
<value>com/wisemapping/model/MindMapHistory.hbm.xml</value>
<value>com/wisemapping/model/Label.hbm.xml</value>
<value>com/wisemapping/model/LabelMindmap.hbm.xml</value>
</list>
</property>
<property name="hibernateProperties">

View File

@@ -18,8 +18,5 @@
<property name="hibernateTemplate" ref="hibernateTemplate"/>
</bean>
<bean id="labelMindmapManager" class="com.wisemapping.dao.LabelMindmapManagerImpl">
<property name="hibernateTemplate" ref="hibernateTemplate"/>
</bean>
</beans>
</beans>

View File

@@ -45,7 +45,6 @@
<value>com.wisemapping.rest.model.RestLogItem</value>
<value>com.wisemapping.rest.model.RestLockInfo</value>
<value>com.wisemapping.rest.model.RestLabel</value>
<value>com.wisemapping.rest.model.RestLabelMindmap</value>
</list>
</property>
</bean>

View File

@@ -72,22 +72,6 @@
</property>
</bean>
<bean id="labelMindmapServiceTarget" class="com.wisemapping.service.LabelMindmapServiceImpl">
<property name="labelMindmapManager" ref="labelMindmapManager"/>
</bean>
<bean id="labelMindmapService" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
<property name="transactionManager" ref="transactionManager"/>
<property name="target">
<ref local="labelMindmapServiceTarget"/>
</property>
<property name="transactionAttributes">
<props>
<prop key="*">PROPAGATION_REQUIRED</prop>
</props>
</property>
</bean>
<bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl">
<property name="host" value="${mail.smtp.host}"/>
<property name="port" value="${mail.smtp.port}"/>