Skip to content

Commit

Permalink
fix case insensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
saragluna committed Feb 25, 2022
1 parent cc8d405 commit 012f661
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

@EnableWebSecurity
@EnableGlobalMethodSecurity(prePostEnabled = true)
public class AADWebSecurityConfig extends WebSecurityConfigurerAdapter {
public class AadWebSecurityConfig extends WebSecurityConfigurerAdapter {

@Autowired
private AadAppRoleStatelessAuthenticationFilter aadAuthFilter;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class AADOAuth2ResourceServerOboSampleApplication {
public class AadOAuth2ResourceServerOboSampleApplication {

public static void main(String[] args) {
SpringApplication.run(AADOAuth2ResourceServerOboSampleApplication.class, args);
SpringApplication.run(AadOAuth2ResourceServerOboSampleApplication.class, args);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import org.springframework.web.reactive.function.client.WebClient;

@Configuration
public class AADSampleConfiguration {
public class AadSampleConfiguration {

@Bean
public WebClient webClient(OAuth2AuthorizedClientManager oAuth2AuthorizedClientManager) {
Expand Down

0 comments on commit 012f661

Please sign in to comment.