1: // Copyright (C) 2003,2004,2005 by Object Mentor, Inc. All rights reserved.
2: // Released under the terms of the GNU General Public License version 2 or later.
3: package fitnesse.authentication;
4:
5: public class PromiscuousAuthenticator extends Authenticator {
6: public boolean isAuthenticated(String username, String password) {
7: return true;
8: }
9: }
|