Skip to content

Commit

Permalink
Changed the package for all REST model classes [comixed#482]
Browse files Browse the repository at this point in the history
  • Loading branch information
mcpierce committed Aug 23, 2020
1 parent 327da64 commit ef0e634
Show file tree
Hide file tree
Showing 49 changed files with 71 additions and 71 deletions.
Expand Up @@ -28,7 +28,7 @@
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.comixedproject.model.auditlog.RestAuditLogEntry;
import org.comixedproject.net.ApiResponse;
import org.comixedproject.model.net.ApiResponse;
import org.comixedproject.service.auditlog.RestAuditLogService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Configuration;
Expand Down
Expand Up @@ -36,11 +36,11 @@
import org.comixedproject.model.comic.ComicFormat;
import org.comixedproject.model.comic.Page;
import org.comixedproject.model.comic.ScanType;
import org.comixedproject.model.net.GetLibraryUpdatesRequest;
import org.comixedproject.model.net.GetLibraryUpdatesResponse;
import org.comixedproject.model.net.UndeleteMultipleComicsRequest;
import org.comixedproject.model.net.UndeleteMultipleComicsResponse;
import org.comixedproject.model.user.LastReadDate;
import org.comixedproject.net.GetLibraryUpdatesRequest;
import org.comixedproject.net.GetLibraryUpdatesResponse;
import org.comixedproject.net.UndeleteMultipleComicsRequest;
import org.comixedproject.net.UndeleteMultipleComicsResponse;
import org.comixedproject.repositories.comic.ComicFormatRepository;
import org.comixedproject.repositories.comic.ScanTypeRepository;
import org.comixedproject.service.comic.ComicException;
Expand Down
Expand Up @@ -31,9 +31,9 @@
import org.comixedproject.model.comic.Page;
import org.comixedproject.model.comic.PageType;
import org.comixedproject.model.library.DuplicatePage;
import org.comixedproject.net.SetBlockingStateRequest;
import org.comixedproject.net.SetDeletedStateRequest;
import org.comixedproject.net.SetPageTypeRequest;
import org.comixedproject.model.net.SetBlockingStateRequest;
import org.comixedproject.model.net.SetDeletedStateRequest;
import org.comixedproject.model.net.SetPageTypeRequest;
import org.comixedproject.service.comic.PageCacheService;
import org.comixedproject.service.comic.PageException;
import org.comixedproject.service.comic.PageService;
Expand Down
Expand Up @@ -25,10 +25,10 @@
import org.comixedproject.auditlog.AuditableEndpoint;
import org.comixedproject.controller.ComiXedControllerException;
import org.comixedproject.model.auditlog.RestAuditLogEntry;
import org.comixedproject.model.net.ApiResponse;
import org.comixedproject.model.net.GetRestAuditLogResponse;
import org.comixedproject.model.net.GetTaskAuditLogResponse;
import org.comixedproject.model.tasks.TaskAuditLogEntry;
import org.comixedproject.net.ApiResponse;
import org.comixedproject.net.GetRestAuditLogResponse;
import org.comixedproject.net.GetTaskAuditLogResponse;
import org.comixedproject.service.ComiXedServiceException;
import org.comixedproject.service.auditlog.RestAuditLogService;
import org.comixedproject.service.task.TaskService;
Expand Down
Expand Up @@ -28,9 +28,9 @@
import org.comixedproject.controller.comic.ComicController;
import org.comixedproject.handlers.ComicFileHandlerException;
import org.comixedproject.model.file.FileDetails;
import org.comixedproject.net.GetAllComicsUnderRequest;
import org.comixedproject.net.ImportComicFilesRequest;
import org.comixedproject.net.ImportComicFilesResponse;
import org.comixedproject.model.net.GetAllComicsUnderRequest;
import org.comixedproject.model.net.ImportComicFilesRequest;
import org.comixedproject.model.net.ImportComicFilesResponse;
import org.comixedproject.service.comic.ComicService;
import org.comixedproject.service.file.FileService;
import org.comixedproject.task.model.QueueComicsWorkerTask;
Expand Down
Expand Up @@ -26,8 +26,8 @@
import org.comixedproject.model.archives.ArchiveType;
import org.comixedproject.model.comic.Comic;
import org.comixedproject.model.library.ReadingList;
import org.comixedproject.model.net.*;
import org.comixedproject.model.user.LastReadDate;
import org.comixedproject.net.*;
import org.comixedproject.service.comic.ComicService;
import org.comixedproject.service.library.LibraryException;
import org.comixedproject.service.library.LibraryService;
Expand Down
Expand Up @@ -24,7 +24,7 @@
import java.util.List;
import lombok.extern.log4j.Log4j2;
import org.comixedproject.model.library.ReadingList;
import org.comixedproject.net.*;
import org.comixedproject.model.net.*;
import org.comixedproject.repositories.library.ReadingListRepository;
import org.comixedproject.service.comic.ComicException;
import org.comixedproject.service.library.NoSuchReadingListException;
Expand Down
Expand Up @@ -23,9 +23,9 @@
import lombok.extern.log4j.Log4j2;
import org.comixedproject.controller.ComiXedControllerException;
import org.comixedproject.model.comic.Comic;
import org.comixedproject.net.ComicScrapeRequest;
import org.comixedproject.net.GetScrapingIssueRequest;
import org.comixedproject.net.GetVolumesRequest;
import org.comixedproject.model.net.ComicScrapeRequest;
import org.comixedproject.model.net.GetScrapingIssueRequest;
import org.comixedproject.model.net.GetVolumesRequest;
import org.comixedproject.scrapers.ScrapingException;
import org.comixedproject.scrapers.model.ScrapingIssue;
import org.comixedproject.scrapers.model.ScrapingVolume;
Expand Down
Expand Up @@ -22,10 +22,10 @@
import java.security.Principal;
import java.util.List;
import lombok.extern.log4j.Log4j2;
import org.comixedproject.model.net.SaveUserRequest;
import org.comixedproject.model.user.ComiXedUser;
import org.comixedproject.model.user.Preference;
import org.comixedproject.model.user.Role;
import org.comixedproject.net.SaveUserRequest;
import org.comixedproject.service.user.ComiXedUserException;
import org.comixedproject.service.user.UserService;
import org.comixedproject.utils.Utils;
Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.ArrayList;
Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;

Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;

Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;

Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http:/www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;

Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;

Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;

Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonView;
Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;

Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonView;
Expand Down
@@ -1,4 +1,4 @@
package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonProperty;
Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;

Expand Down
@@ -1,4 +1,4 @@
package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonProperty;
Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;

Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonProperty;
Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.ArrayList;
Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;

Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;

Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;

Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.ArrayList;
Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.ArrayList;
Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;

Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.ArrayList;
Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;

Expand Down
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixedproject.net;
package org.comixedproject.model.net;

import com.fasterxml.jackson.annotation.JsonProperty;

Expand Down
Expand Up @@ -24,7 +24,7 @@
import com.fasterxml.jackson.databind.ObjectMapper;
import org.aspectj.lang.ProceedingJoinPoint;
import org.comixedproject.model.auditlog.RestAuditLogEntry;
import org.comixedproject.net.ApiResponse;
import org.comixedproject.model.net.ApiResponse;
import org.comixedproject.service.auditlog.RestAuditLogService;
import org.junit.Before;
import org.junit.Test;
Expand Down

0 comments on commit ef0e634

Please sign in to comment.