Increment code coverage for Application
[oam/nf-oam-adopter.git] / ves-nf-oam-adopter / ves-nf-oam-adopter-app / src / main / java / org / o / ran / oam / nf / oam / adopter / app / config / SecurityConfiguration.java
index 18101a4..2fc030f 100644 (file)
@@ -19,8 +19,8 @@
 
 package org.o.ran.oam.nf.oam.adopter.app.config;
 
-import org.o.ran.oam.nf.oam.adopter.app.ServerProperties;
-import org.o.ran.oam.nf.oam.adopter.app.SslProperties;
+import org.o.ran.oam.nf.oam.adopter.app.properties.ServerProperties;
+import org.o.ran.oam.nf.oam.adopter.app.properties.SslProperties;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.boot.context.properties.EnableConfigurationProperties;
 import org.springframework.context.annotation.Bean;
@@ -47,7 +47,10 @@ public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
         if (ssl != null && ssl.getEnabled() != null && ssl.getEnabled()) {
             http.requiresChannel().anyRequest().requiresSecure();
         }
-        http.csrf().disable().antMatcher("/adapters/**").authorizeRequests().anyRequest().hasRole(ADMIN_ROLE).and()
+        http.csrf().disable()
+                .antMatcher("/adapters/**")
+                .authorizeRequests().anyRequest()
+                .hasRole(ADMIN_ROLE).and()
                 .httpBasic();
     }