first i tried to import groups via module bootstrap (see wiki) - works fine. Now i'm trying to import users with the same way, but it doesn't work.
Has anyone an example-configuration for bootstraping user?
Here my error-message:
ERROR [org.alfresco.repo.node.integrity.IntegrityChecker] Found 1 integrity violations:
Invalid property value:
Node: user://alfrescoUserStore/lustig
Type: {http://www.alfresco.org/model/user/1.0}authorityContainer
Property: {http://www.alfresco.org/model/user/1.0}authorityName
Constraint: The value 'Lustig' is not an allowed authority name: it is an authority of type: USER
ERROR [org.springframework.web.context.ContextLoader] Context initialization failed
org.alfresco.repo.node.integrity.IntegrityException: Found 1 integrity violations:
Invalid property value:
Node: user://alfrescoUserStore/lustig
Type: {http://www.alfresco.org/model/user/1.0}authorityContainer
Property: {http://www.alfresco.org/model/user/1.0}authorityName
Constraint: The value 'Lustig' is not an allowed authority name: it is an authority of type: USER
And my user.xml (here i tried several things like USER_lusitg, lustig, Lustig, USER, and so on):
<?xml version="1.0" encoding="UTF-8"?>
<view:view xmlns:view="http://www.alfresco.org/view/repository/1.0"
xmlns:cm="http://www.alfresco.org/model/content/1.0"
xmlns:sys="http://www.alfresco.org/model/system/1.0"
xmlns:usr="http://www.alfresco.org/model/user/1.0"
xmlns:app="http://www.alfresco.org/model/application/1.0">
<usr:authorityContainer view:childName="usr:lustig">
<view:aspects>
<sys:referenceable></sys:referenceable>
</view:aspects>
<view:properties>
<sys:store-protocol>user</sys:store-protocol>
<cm:name>Peter Lustig</cm:name>
<sys:node-uuid>lustig</sys:node-uuid>
<usr:authorityName>Lustig</usr:authorityName>
<sys:store-identifier>alfrescoUserStore</sys:store-identifier>
</view:properties>
<view:associations></view:associations>
</usr:authorityContainer>
</view:view>
Regards,
christian


