api for unlink mindmaps

This commit is contained in:
Claudio Barril
2014-02-02 04:09:28 -03:00
parent 734463d233
commit 8db7f5015f
14 changed files with 269 additions and 0 deletions

View File

@@ -72,6 +72,22 @@
</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}"/>