Is there a recommended approach for customizing the WDK Login component?
I am trying to extend the WDK login component so I can override the authenticate method contained within. My class looks like this:
public class CWLogin extends Login
{
protected void authenticate(...) throws PasswordExpiredException, DfException
{
}
}
However, when I compile, I get the following strange error:
error: compiler message file broken: key=compiler.err.file javax\servlet\http\Ht
tpSession.class not found arguments=null, null, null, null, null, null, null
1 error
I cannot find any help with google. My assumption is I am doing something wrong, but what is it I'm doing wrong?