Remove ancient code formatter artifacts.

This commit is contained in:
Luke Taylor 2011-09-25 21:20:02 +01:00
parent 2d27b28199
commit 82163e2546
8 changed files with 1 additions and 31 deletions

View File

@ -36,11 +36,6 @@ public class InterfaceBasedLabelParameterStrategy implements LabelParameterStrat
* Test if the argument is labeled, and if so, downcast to LabeledData and retrieve the domain object's
* labeled value. Otherwise, return an empty string. NOTE: The default for no label is an empty string. If somehow
* the user wants to make that a label itself, he or she must inject an alternate value to the noLabel property.
*
* @param method DOCUMENT ME!
* @param arg DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getLabel(Method method, Object arg) {
if (isLabeled(method, arg)) {
@ -57,11 +52,6 @@ public class InterfaceBasedLabelParameterStrategy implements LabelParameterStrat
/**
* Test if the argument implemented the LabeledData interface. NOTE: The invoking method has no bearing for
* this strategy, only the argument itself.
*
* @param method DOCUMENT ME!
* @param arg DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public boolean isLabeled(Method method, Object arg) {
return (arg instanceof LabeledData);

View File

@ -57,7 +57,7 @@ public interface AuthenticationProvider {
* <p>Selection of an <code>AuthenticationProvider</code> capable of performing authentication is
* conducted at runtime the <code>ProviderManager</code>.</p>
*
* @param authentication DOCUMENT ME!
* @param authentication
*
* @return <code>true</code> if the implementation can more closely evaluate the <code>Authentication</code> class
* presented

View File

@ -48,8 +48,6 @@ public interface PasswordEncoder {
* <code>null</code> value is legal.
*
* @return encoded password
*
* @throws DataAccessException DOCUMENT ME!
*/
String encodePassword(String rawPass, Object salt)
throws DataAccessException;
@ -67,8 +65,6 @@ public interface PasswordEncoder {
* <code>null</code> value is legal.
*
* @return true if the password is valid , false otherwise
*
* @throws DataAccessException DOCUMENT ME!
*/
boolean isPasswordValid(String encPass, String rawPass, Object salt)
throws DataAccessException;

View File

@ -73,8 +73,6 @@ public class TargetObject implements ITargetObject {
* Delegates through to the {@link #makeLowerCase(String)} method.
*
* @param input the message to be made lower-case
*
* @return DOCUMENT ME!
*/
public String publicMakeLowerCase(String input) {
return this.makeLowerCase(input);

View File

@ -15,10 +15,6 @@
package org.springframework.security.access.annotation.test;
/**
* DOCUMENT ME!
*
*/
public interface OrganisationService extends Service<Organisation> {
//~ Methods ========================================================================================================

View File

@ -15,10 +15,6 @@
package org.springframework.security.access.annotation.test;
/**
* DOCUMENT ME!
*
*/
public class PersonServiceImpl extends ServiceImpl<Person> implements PersonService {
//~ Methods ========================================================================================================

View File

@ -27,9 +27,6 @@ import org.springframework.security.core.context.SecurityContextHolder;
import javax.servlet.jsp.JspException;
/**
* DOCUMENT ME!
*/
public class AuthzImplAttributeTest extends TestCase {
//~ Instance fields ================================================================================================

View File

@ -25,9 +25,6 @@ import org.springframework.security.core.context.SecurityContextHolder;
/**
* DOCUMENT ME!
*/
public class AuthzImplAuthorizeTagTest extends TestCase {
//~ Instance fields ================================================================================================