Skip to content
This repository has been archived by the owner on May 31, 2022. It is now read-only.

Commit

Permalink
SECOAUTH-350: add public constructors to ClientCredentialsTokenEndpoi…
Browse files Browse the repository at this point in the history
…ntFilter
  • Loading branch information
dsyer committed Oct 31, 2012
1 parent 31132e1 commit 696e924
Showing 1 changed file with 6 additions and 2 deletions.
Expand Up @@ -43,8 +43,12 @@ public class ClientCredentialsTokenEndpointFilter extends AbstractAuthentication

private AuthenticationEntryPoint authenticationEntryPoint = new OAuth2AuthenticationEntryPoint();

protected ClientCredentialsTokenEndpointFilter() {
super("/oauth/token");
public ClientCredentialsTokenEndpointFilter() {
this("/oauth/token");
}

public ClientCredentialsTokenEndpointFilter(String path) {
super(path);
}

/**
Expand Down

0 comments on commit 696e924

Please sign in to comment.