Author: shane.bryzak(a)jboss.com
Date: 2008-06-04 05:03:33 -0400 (Wed, 04 Jun 2008)
New Revision: 8323
Modified:
trunk/src/main/org/jboss/seam/security/Identity.java
Log:
javadoc for deprecated methods
Modified: trunk/src/main/org/jboss/seam/security/Identity.java
===================================================================
--- trunk/src/main/org/jboss/seam/security/Identity.java 2008-06-04 00:18:06 UTC (rev
8322)
+++ trunk/src/main/org/jboss/seam/security/Identity.java 2008-06-04 09:03:33 UTC (rev
8323)
@@ -590,24 +590,36 @@
return Expressions.instance().createValueExpression(expr,
Boolean.class).getValue();
}
+ /**
+ * @see org.jboss.seam.security.Credentials#getUsername()
+ */
@Deprecated
public String getUsername()
{
return credentials.getUsername();
}
+ /**
+ * @see org.jboss.seam.security.Credentials#setUsername(String)
+ */
@Deprecated
public void setUsername(String username)
{
credentials.setUsername(username);
}
-
+
+ /**
+ * @see org.jboss.seam.security.Credentials#getPassword()
+ */
@Deprecated
public String getPassword()
{
return credentials.getPassword();
}
+ /**
+ * @see org.jboss.seam.security.Credentials#setPassword(String)
+ */
@Deprecated
public void setPassword(String password)
{
Show replies by date