mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 14:17:57 +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;
|
||||
}
|
||||
|
||||
public void setAdminUser(String adminUser) {
|
||||
public void setAdminUser(@NotNull String adminUser) {
|
||||
this.adminUser = adminUser;
|
||||
}
|
||||
|
||||
public String getAdminUser() {
|
||||
@NotNull public String getAdminUser() {
|
||||
return adminUser;
|
||||
}
|
||||
}
|
||||
|
@ -35,11 +35,10 @@
|
||||
<property name="mindmapManager" ref="mindmapManager"/>
|
||||
<property name="userService" ref="userService"/>
|
||||
<property name="notificationService" ref="notificationService"/>
|
||||
<property name="adminUser" ref="${admin.user}/>
|
||||
<property name="adminUser" value="${admin.user}"/>
|
||||
</bean>
|
||||
|
||||
<bean id="mindmapService"
|
||||
class="org.springframework.aop.framework.ProxyFactoryBean">
|
||||
<bean id="mindmapService" class="org.springframework.aop.framework.ProxyFactoryBean">
|
||||
<property name="proxyInterfaces" value="com.wisemapping.service.MindmapService"/>
|
||||
<property name="interceptorNames">
|
||||
<list>
|
||||
|
Loading…
Reference in New Issue
Block a user