> +public class AuthenticateRequest implements HttpRequestFilter {
> +
> +    private static Credentials authToken;
> +
> +    @Inject
> +    public AuthenticateRequest(@Provider Supplier<Credentials> splr) {
> +        authToken = splr.get();
> +    }
> +
> +    public static String TokenBased() {
> +        return authToken.identity;
> +    }
> +
> +    public static String TokenBased(String auth_token) {
> +        return auth_token;
> +    }

Remove these methods

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/275/files/0767d011a984011133c9e34b3389b449ca0756cd#r68670095

Reply via email to