removed vestigial ClientDetailsEntityService references

pull/306/merge
Amanda Anganes 2013-03-22 12:32:31 -04:00
parent 08eaaa0a12
commit b28b0615fa
2 changed files with 0 additions and 6 deletions

View File

@ -33,7 +33,6 @@ public class ChainedTokenGranter extends AbstractTokenGranter {
// keep down-cast versions so we can get to the right queries // keep down-cast versions so we can get to the right queries
private OAuth2TokenEntityService tokenServices; private OAuth2TokenEntityService tokenServices;
private ClientDetailsEntityService clientDetailsService;
/** /**
* @param tokenServices * @param tokenServices
@ -43,10 +42,7 @@ public class ChainedTokenGranter extends AbstractTokenGranter {
@Autowired @Autowired
public ChainedTokenGranter(OAuth2TokenEntityService tokenServices, ClientDetailsEntityService clientDetailsService) { public ChainedTokenGranter(OAuth2TokenEntityService tokenServices, ClientDetailsEntityService clientDetailsService) {
super(tokenServices, clientDetailsService, grantType); super(tokenServices, clientDetailsService, grantType);
this.tokenServices = tokenServices; this.tokenServices = tokenServices;
this.clientDetailsService = clientDetailsService;
} }
/* (non-Javadoc) /* (non-Javadoc)

View File

@ -39,7 +39,6 @@ public class JwtAssertionTokenGranter extends AbstractTokenGranter {
// keep down-cast versions so we can get to the right queries // keep down-cast versions so we can get to the right queries
private OAuth2TokenEntityService tokenServices; private OAuth2TokenEntityService tokenServices;
private ClientDetailsEntityService clientDetailsService;
@Autowired @Autowired
private JwtSigningAndValidationService jwtService; private JwtSigningAndValidationService jwtService;
@ -51,7 +50,6 @@ public class JwtAssertionTokenGranter extends AbstractTokenGranter {
public JwtAssertionTokenGranter(OAuth2TokenEntityService tokenServices, ClientDetailsEntityService clientDetailsService) { public JwtAssertionTokenGranter(OAuth2TokenEntityService tokenServices, ClientDetailsEntityService clientDetailsService) {
super(tokenServices, clientDetailsService, grantType); super(tokenServices, clientDetailsService, grantType);
this.tokenServices = tokenServices; this.tokenServices = tokenServices;
this.clientDetailsService = clientDetailsService;
} }
/* (non-Javadoc) /* (non-Javadoc)