From 25cb085df7918b3068f6566f0088f5b2d9bd0386 Mon Sep 17 00:00:00 2001 From: Ben Alex Date: Sun, 29 May 2005 08:30:28 +0000 Subject: [PATCH] More JavaDocs. --- .../providers/UsernamePasswordAuthenticationToken.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/core/src/main/java/org/acegisecurity/providers/UsernamePasswordAuthenticationToken.java b/core/src/main/java/org/acegisecurity/providers/UsernamePasswordAuthenticationToken.java index 510aa8bb29..4a613fbdef 100644 --- a/core/src/main/java/org/acegisecurity/providers/UsernamePasswordAuthenticationToken.java +++ b/core/src/main/java/org/acegisecurity/providers/UsernamePasswordAuthenticationToken.java @@ -1,4 +1,4 @@ -/* Copyright 2004, 2005 Acegi Technology Pty Limited +/* Copyright 2004 Acegi Technology Pty Limited * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -95,6 +95,11 @@ public class UsernamePasswordAuthenticationToken this.details = details; } + /** + * Usually a {@link net.sf.acegisecurity.ui.WebAuthenticationDetails}. + * + * @return the authentication request details, or null + */ public Object getDetails() { return details; }