revert bad idea sub classes do not need to know parent class implementation details

git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1421130 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2012-12-13 08:34:54 +00:00
parent fedd4fc720
commit 6d9972fcf9
1 changed files with 2 additions and 2 deletions

View File

@ -52,14 +52,14 @@ import java.util.Map;
public class UserManagerAuthenticator public class UserManagerAuthenticator
implements Authenticator implements Authenticator
{ {
protected Logger log = LoggerFactory.getLogger( getClass() ); private Logger log = LoggerFactory.getLogger( getClass() );
@Inject @Inject
@Named(value = "userManager#configurable") @Named(value = "userManager#configurable")
private UserManager userManager; private UserManager userManager;
@Inject @Inject
protected UserSecurityPolicy securityPolicy; private UserSecurityPolicy securityPolicy;
public String getId() public String getId()
{ {