You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by BugRat Mail System <to...@cortexity.com> on 2000/08/28 15:28:39 UTC

BugRat Report #44 has been filed.

Bug report #44 has just been filed.

You can view the report at the following URL:

   <http://znutar.cortexity.com:8888/BugRatViewer/ShowReport/44>

REPORT #44 Details.

Project: Catalina
Category: Feature Requests
SubCategory: Enhancement
Class: suggest
State: received
Priority: low
Severity: non-critical
Confidence: public
Environment: 
   Release: dunno
   JVM Release: all
   Operating System: all
   OS Release: all
   Platform: all

Synopsis: 
Design of RealmBase class

Description:
I'm not so sure that RealmBase should declare:

  protected abstract String getPassword(String username);

an abstract method. A few authentication systems will not return a password, but rather evaluate the password that the user supplies. Perhaps a better abstract method would be:

  protected abstract boolean validatePassword(String username, String password);