File tree Expand file tree Collapse file tree 9 files changed +10
-8
lines changed
main/java/org/woehlke/simpleworklist
test/java/org/woehlke/simpleworklist/application/config Expand file tree Collapse file tree 9 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 44import org .springframework .boot .autoconfigure .ImportAutoConfiguration ;
55import org .springframework .boot .autoconfigure .SpringBootApplication ;
66import org .springframework .boot .context .properties .EnableConfigurationProperties ;
7- import org .woehlke .simpleworklist .config .SimpleworklistProperties ;
7+ import org .woehlke .simpleworklist .application .SimpleworklistProperties ;
88import org .woehlke .simpleworklist .config .WebMvcConfig ;
99import org .woehlke .simpleworklist .config .WebSecurityConfig ;
1010
Original file line number Diff line number Diff line change 1- package org .woehlke .simpleworklist .config ;
1+ package org .woehlke .simpleworklist .application ;
22
33import lombok .Getter ;
44import lombok .Setter ;
@@ -125,7 +125,7 @@ public static class WebSecurity {
125125
126126 //@NotNull
127127 //private Integer strengthBCryptPasswordEncoder;
128-
128+
129129 @ NotNull
130130 private Integer iterations ;
131131
Original file line number Diff line number Diff line change 55import org .springframework .web .bind .annotation .ModelAttribute ;
66import org .springframework .web .bind .annotation .SessionAttributes ;
77import org .woehlke .simpleworklist .domain .breadcrumb .BreadcrumbService ;
8- import org .woehlke .simpleworklist .config .SimpleworklistProperties ;
8+ import org .woehlke .simpleworklist .application .SimpleworklistProperties ;
99import org .woehlke .simpleworklist .domain .context .Context ;
1010import org .woehlke .simpleworklist .domain .project .Project ;
1111import org .woehlke .simpleworklist .domain .task .TaskService ;
Original file line number Diff line number Diff line change 1818import org .springframework .web .servlet .i18n .LocaleChangeInterceptor ;
1919import org .springframework .web .servlet .i18n .SessionLocaleResolver ;
2020import org .thymeleaf .dialect .springdata .SpringDataDialect ;
21+ import org .woehlke .simpleworklist .application .SimpleworklistProperties ;
2122
2223import java .util .Locale ;
2324import java .util .Properties ;
Original file line number Diff line number Diff line change 1818import org .springframework .security .crypto .password .Pbkdf2PasswordEncoder ;
1919import org .springframework .security .web .authentication .UsernamePasswordAuthenticationFilter ;
2020import org .springframework .web .servlet .config .annotation .EnableWebMvc ;
21+ import org .woehlke .simpleworklist .application .SimpleworklistProperties ;
2122import org .woehlke .simpleworklist .user .services .SimpleworklistUserAccountSecurityService ;
2223
2324
Original file line number Diff line number Diff line change 99import org .springframework .stereotype .Service ;
1010import org .springframework .transaction .annotation .Propagation ;
1111import org .springframework .transaction .annotation .Transactional ;
12- import org .woehlke .simpleworklist .config .SimpleworklistProperties ;
12+ import org .woehlke .simpleworklist .application .SimpleworklistProperties ;
1313import org .woehlke .simpleworklist .user .domain .resetpassword .UserPasswordRecovery ;
1414import org .woehlke .simpleworklist .user .domain .resetpassword .UserPasswordRecoveryRepository ;
1515import org .woehlke .simpleworklist .user .domain .resetpassword .UserPasswordRecoveryStatus ;
Original file line number Diff line number Diff line change 1313import org .springframework .stereotype .Service ;
1414import org .springframework .transaction .annotation .Propagation ;
1515import org .springframework .transaction .annotation .Transactional ;
16- import org .woehlke .simpleworklist .config .SimpleworklistProperties ;
16+ import org .woehlke .simpleworklist .application .SimpleworklistProperties ;
1717import org .woehlke .simpleworklist .user .domain .register .UserRegistration ;
1818import org .woehlke .simpleworklist .user .domain .register .UserRegistrationRepository ;
1919import org .woehlke .simpleworklist .user .domain .register .UserRegistrationStatus ;
Original file line number Diff line number Diff line change 88import org .springframework .test .web .servlet .MockMvc ;
99import org .springframework .web .context .WebApplicationContext ;
1010import org .woehlke .simpleworklist .application .helper .TestHelperService ;
11- import org .woehlke .simpleworklist .config .SimpleworklistProperties ;
11+ import org .woehlke .simpleworklist .application .SimpleworklistProperties ;
1212import org .woehlke .simpleworklist .user .domain .account .UserAccount ;
1313import org .woehlke .simpleworklist .user .services .UserAccountService ;
1414import org .woehlke .simpleworklist .user .services .UserAccountAccessService ;
Original file line number Diff line number Diff line change 44import lombok .extern .slf4j .Slf4j ;
55import org .springframework .beans .factory .annotation .Autowired ;
66import org .springframework .stereotype .Service ;
7- import org .woehlke .simpleworklist .config .SimpleworklistProperties ;
7+ import org .woehlke .simpleworklist .application .SimpleworklistProperties ;
88import org .woehlke .simpleworklist .domain .context .Context ;
99import org .woehlke .simpleworklist .domain .context .ContextService ;
1010import org .woehlke .simpleworklist .domain .context .NewContextForm ;
You can’t perform that action at this time.
0 commit comments