Hi, I have decided to use a custom user manager based on database.
Due the nature of Java, all actions belons to the user running the JVM process, so you canoot use Operating System ACL (Access Control List) features. In order to build some ACL's (Directories not allowed for certain users, or no write enabled etc.. ) I need to store this kind of information based on per user. I still need to think the appropiate user fields structure. However, I do not manage to extend/implement custom user manager, according to docu this is done in this way: "You can write your own user manager to integrate it with your existing applications. Your custom user manager should implement org.apache.ftpserver.ftplet.UserManager interface." I do not want to take my time in the database driver and etc configuration. Is it posible to just extend DbUserManager so all I need to implement is the euth methods but forget about the database side? If so how do I registe my class in he ftpd-full.xml file? Also, all the methods I need to add for ACL's , can be used by other FTPLets ? Thanks. Javi.
