01: /* 02: * Created on Jul 10, 2006 03: */ 04: package com.openedit.users; 05: 06: public interface Authenticator { 07: public boolean authenticate(User inUser, String inPassword) 08: throws UserManagerException; 09: 10: }