Skip to content

Commit

Permalink
Fixed rebasing issues after repackaging on other branch [#413]
Browse files Browse the repository at this point in the history
  • Loading branch information
mcpierce authored and BRUCELLA2 committed Jul 22, 2020
1 parent ce4184a commit 6df2d78
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import javax.persistence.*;
import lombok.Getter;
import lombok.Setter;
import org.comixed.views.View;
import org.comixedproject.views.View;

/**
* <code>TaskAuditLogEntry</code> represents a single entry in the task audit log table.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixed.controller;
package org.comixedproject.controller;

/**
* <code>ComiXedControllerException</code> is throw when an error occurs during the processing of a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import com.fasterxml.jackson.annotation.JsonView;
import java.util.List;
import lombok.extern.log4j.Log4j2;
import org.comixedproject.controller.RESTException;
import org.comixedproject.controller.ComiXedControllerException;
import org.comixedproject.model.comic.Comic;
import org.comixedproject.net.ComicScrapeRequest;
import org.comixedproject.net.GetScrapingIssueRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixed.controller.tasks;
package org.comixedproject.controller.tasks;

import com.fasterxml.jackson.annotation.JsonView;
import java.util.Date;
import java.util.List;
import lombok.extern.log4j.Log4j2;
import org.comixed.controller.ComiXedControllerException;
import org.comixed.model.tasks.TaskAuditLogEntry;
import org.comixed.repositories.tasks.TaskAuditLogRepository;
import org.comixed.service.ComiXedServiceException;
import org.comixed.service.task.TaskService;
import org.comixed.views.View;
import org.comixedproject.controller.ComiXedControllerException;
import org.comixedproject.model.tasks.TaskAuditLogEntry;
import org.comixedproject.repositories.tasks.TaskAuditLogRepository;
import org.comixedproject.service.ComiXedServiceException;
import org.comixedproject.service.task.TaskService;
import org.comixedproject.views.View;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType;
import org.springframework.security.access.prepost.PreAuthorize;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
@Configuration
@EnableWebSecurity
@EnableGlobalMethodSecurity(prePostEnabled = true)
@ComponentScan("org.comixed.controller")
@ComponentScan("org.comixedprojectcontroller")
@Log4j2
public class ComiXedWebSecurityConfig extends WebSecurityConfigurerAdapter {
@Autowired private ComiXedAuthenticationEntryPoint unauthorizedHandler;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import static org.junit.Assert.assertSame;

import java.util.List;
import org.comixedproject.controller.RESTException;
import org.comixedproject.controller.ComiXedControllerException;
import org.comixedproject.model.comic.Comic;
import org.comixedproject.net.ComicScrapeRequest;
import org.comixedproject.net.GetScrapingIssueRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixed.controller.tasks;
package org.comixedproject.controller.tasks;

import static junit.framework.TestCase.assertNotNull;
import static junit.framework.TestCase.assertSame;

import java.util.Date;
import java.util.List;
import org.comixed.controller.ComiXedControllerException;
import org.comixed.model.tasks.TaskAuditLogEntry;
import org.comixed.service.ComiXedServiceException;
import org.comixed.service.task.TaskService;
import org.comixed.service.user.UserService;
import org.comixedproject.controller.ComiXedControllerException;
import org.comixedproject.model.tasks.TaskAuditLogEntry;
import org.comixedproject.service.ComiXedServiceException;
import org.comixedproject.service.task.TaskService;
import org.comixedproject.service.user.UserService;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses>
*/

package org.comixed.service;
package org.comixedproject.service;

/**
* <code>ComiXedServiceException</code> is thrown when a service-level exception occurs.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@
import java.util.Date;
import java.util.List;
import lombok.extern.log4j.Log4j2;
import org.comixedproject.model.tasks.TaskAuditLogEntry;
import org.comixedproject.model.tasks.TaskType;
import org.comixedproject.repositories.tasks.TaskAuditLogRepository;
import org.comixedproject.repositories.tasks.TaskRepository;
import org.comixedproject.service.ComiXedServiceException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,13 @@

import static junit.framework.TestCase.*;

import java.util.Date;
import java.util.List;
import org.comixedproject.model.tasks.TaskAuditLogEntry;
import org.comixedproject.model.tasks.TaskType;
import org.comixedproject.repositories.tasks.TaskAuditLogRepository;
import org.comixedproject.repositories.tasks.TaskRepository;
import org.comixedproject.service.ComiXedServiceException;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
Expand Down

0 comments on commit 6df2d78

Please sign in to comment.