mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-05 07:03:24 +01:00
Fix service.xml fie.
This commit is contained in:
parent
a263a05520
commit
69912ecef4
@ -288,11 +288,11 @@ public class MindmapServiceImpl
|
|||||||
this.notificationService = notificationService;
|
this.notificationService = notificationService;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setAdminUser(String adminUser) {
|
public void setAdminUser(@NotNull String adminUser) {
|
||||||
this.adminUser = adminUser;
|
this.adminUser = adminUser;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getAdminUser() {
|
@NotNull public String getAdminUser() {
|
||||||
return adminUser;
|
return adminUser;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -35,11 +35,10 @@
|
|||||||
<property name="mindmapManager" ref="mindmapManager"/>
|
<property name="mindmapManager" ref="mindmapManager"/>
|
||||||
<property name="userService" ref="userService"/>
|
<property name="userService" ref="userService"/>
|
||||||
<property name="notificationService" ref="notificationService"/>
|
<property name="notificationService" ref="notificationService"/>
|
||||||
<property name="adminUser" ref="${admin.user}/>
|
<property name="adminUser" value="${admin.user}"/>
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
<bean id="mindmapService"
|
<bean id="mindmapService" class="org.springframework.aop.framework.ProxyFactoryBean">
|
||||||
class="org.springframework.aop.framework.ProxyFactoryBean">
|
|
||||||
<property name="proxyInterfaces" value="com.wisemapping.service.MindmapService"/>
|
<property name="proxyInterfaces" value="com.wisemapping.service.MindmapService"/>
|
||||||
<property name="interceptorNames">
|
<property name="interceptorNames">
|
||||||
<list>
|
<list>
|
||||||
|
Loading…
Reference in New Issue
Block a user