[JAVA-961] Standardize packages in spring-security-modules: spring-security-rest-custom

This commit is contained in:
dupirefr 2020-03-19 21:29:21 +01:00
parent 43299dc082
commit 4e839f8e32
22 changed files with 28 additions and 28 deletions

View File

@ -1,4 +1,4 @@
package org.baeldung.config.child;
package com.baeldung.config.child;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;

View File

@ -1,6 +1,6 @@
package org.baeldung.config.parent;
package com.baeldung.config.parent;
import org.baeldung.security.CustomAuthenticationProvider;
import com.baeldung.security.CustomAuthenticationProvider;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

View File

@ -1,4 +1,4 @@
package org.baeldung.config.parent;
package com.baeldung.config.parent;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;

View File

@ -1,4 +1,4 @@
package org.baeldung.security;
package com.baeldung.security;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.context.SecurityContextHolder;

View File

@ -1,6 +1,6 @@
package org.baeldung.service;
package com.baeldung.service;
import org.baeldung.web.dto.Foo;
import com.baeldung.web.dto.Foo;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;

View File

@ -1,6 +1,6 @@
package org.baeldung.service;
package com.baeldung.service;
import org.baeldung.web.dto.Foo;
import com.baeldung.web.dto.Foo;
public interface IFooService {

View File

@ -1,4 +1,4 @@
package org.baeldung.service;
package com.baeldung.service;
import org.springframework.security.access.annotation.Secured;
import org.springframework.security.core.Authentication;

View File

@ -1,7 +1,7 @@
package org.baeldung.web.controller;
package com.baeldung.web.controller;
import org.baeldung.service.IFooService;
import org.baeldung.web.dto.Foo;
import com.baeldung.service.IFooService;
import com.baeldung.web.dto.Foo;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;

View File

@ -1,6 +1,6 @@
package org.baeldung.web.controller;
package com.baeldung.web.controller;
import org.baeldung.security.IAuthenticationFacade;
import com.baeldung.security.IAuthenticationFacade;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.core.Authentication;
import org.springframework.stereotype.Controller;

View File

@ -1,4 +1,4 @@
package org.baeldung.web.controller;
package com.baeldung.web.controller;
import org.springframework.security.access.annotation.Secured;
import org.springframework.security.core.Authentication;

View File

@ -1,4 +1,4 @@
package org.baeldung.web.controller;
package com.baeldung.web.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationEventPublisher;

View File

@ -1,4 +1,4 @@
package org.baeldung.web.controller;
package com.baeldung.web.controller;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.userdetails.UserDetails;

View File

@ -1,4 +1,4 @@
package org.baeldung.web.controller;
package com.baeldung.web.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;