package refactoring

This commit is contained in:
ard333
2018-05-13 21:20:54 +07:00
parent b5ddc1c6d9
commit f4b5f8b1f7
5 changed files with 5 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
* Ardiansyah | http://ard.web.id
*
*/
package id.web.ard.springbootwebfluxjjwt.entity;
package id.web.ard.springbootwebfluxjjwt.model;
import lombok.AllArgsConstructor;
import lombok.Data;

View File

@@ -2,7 +2,7 @@
* Ardiansyah | http://ard.web.id
*
*/
package id.web.ard.springbootwebfluxjjwt.entity;
package id.web.ard.springbootwebfluxjjwt.model;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;

View File

@@ -4,7 +4,7 @@
*/
package id.web.ard.springbootwebfluxjjwt.rest;
import id.web.ard.springbootwebfluxjjwt.entity.Message;
import id.web.ard.springbootwebfluxjjwt.model.Message;
import org.springframework.http.ResponseEntity;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.RequestMapping;

View File

@@ -4,7 +4,7 @@
*/
package id.web.ard.springbootwebfluxjjwt.security;
import id.web.ard.springbootwebfluxjjwt.entity.User;
import id.web.ard.springbootwebfluxjjwt.model.User;
import java.io.Serializable;
import java.util.Date;
import java.util.HashMap;

View File

@@ -4,7 +4,7 @@
*/
package id.web.ard.springbootwebfluxjjwt.service;
import id.web.ard.springbootwebfluxjjwt.entity.User;
import id.web.ard.springbootwebfluxjjwt.model.User;
import id.web.ard.springbootwebfluxjjwt.security.model.Role;
import java.util.Arrays;
import org.springframework.security.core.userdetails.UserDetails;