Can I have a directory .csv data file outside my plugin jar?

My application is a plugin on top of nuxeo platform (5.6). I define users with a SQLDirectory created from a .csv file.

I'd like to add/remove users in production context by simply editing the .csv file and restarting nuxeo server. But as long as this file is inside my plugin jar, I must recomplile the JAR…

I've thought of a solution to create an extension point for my plugin for users imports using directories management API, but I'm hoping there is a much simpler way to achieve the same without coding. Is there? Thanks.

0 votes

1 answers

1755 views

ANSWER

Have you tried putting the .csv file in nxserver/config/ ? I can't try right now it but there's a good chance it could work. Otherwise no, that's not possible today.
06/07/2013

I've checked and it works, thanks a lot!
06/07/2013



put .csv file in nxserver/config/

0 votes