removed vestigial ClientDetailsEntityService references

pull/306/merge
Amanda Anganes 12 years ago
parent 08eaaa0a12
commit b28b0615fa

@ -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)

@ -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)

Loading…
Cancel
Save