This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • development/sharing/codeability-sharing-platform
1 result
Show changes
Commits on Source (2)
Showing
with 23 additions and 18 deletions
...@@ -17,7 +17,7 @@ import tech.jhipster.config.JHipsterConstants; ...@@ -17,7 +17,7 @@ import tech.jhipster.config.JHipsterConstants;
import tech.jhipster.config.h2.H2ConfigurationHelper; import tech.jhipster.config.h2.H2ConfigurationHelper;
@Configuration @Configuration
@EnableJpaRepositories({ "at.ac.uibk.gitsearch.repository" }) @EnableJpaRepositories({ "at.ac.uibk.gitsearch.repository.jpa" })
@EnableJpaAuditing(auditorAwareRef = "springSecurityAuditorAware") @EnableJpaAuditing(auditorAwareRef = "springSecurityAuditorAware")
@EnableTransactionManagement @EnableTransactionManagement
@EnableElasticsearchRepositories("at.ac.uibk.gitsearch.repository.search") @EnableElasticsearchRepositories("at.ac.uibk.gitsearch.repository.search")
......
package at.ac.uibk.gitsearch.repository; package at.ac.uibk.gitsearch.repository.jpa;
import at.ac.uibk.gitsearch.domain.ReviewHistoryEntry; import at.ac.uibk.gitsearch.domain.ReviewHistoryEntry;
import org.springframework.data.jpa.repository.*; import org.springframework.data.jpa.repository.*;
......
package at.ac.uibk.gitsearch.repository; package at.ac.uibk.gitsearch.repository.jpa;
import at.ac.uibk.gitsearch.domain.ReviewRating; import at.ac.uibk.gitsearch.domain.ReviewRating;
import java.util.List; import java.util.List;
......
package at.ac.uibk.gitsearch.repository; package at.ac.uibk.gitsearch.repository.jpa;
import at.ac.uibk.gitsearch.domain.Review; import at.ac.uibk.gitsearch.domain.Review;
import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.JpaRepository;
......
/** /**
* Spring Data JPA repositories. * Spring Data JPA repositories.
*/ */
package at.ac.uibk.gitsearch.repository; package at.ac.uibk.gitsearch.repository.jpa;
...@@ -4,8 +4,8 @@ import at.ac.uibk.gitsearch.domain.ChatMessage; ...@@ -4,8 +4,8 @@ import at.ac.uibk.gitsearch.domain.ChatMessage;
import at.ac.uibk.gitsearch.domain.Review; import at.ac.uibk.gitsearch.domain.Review;
import at.ac.uibk.gitsearch.domain.ReviewRating; import at.ac.uibk.gitsearch.domain.ReviewRating;
import at.ac.uibk.gitsearch.domain.User; import at.ac.uibk.gitsearch.domain.User;
import at.ac.uibk.gitsearch.repository.ReviewRepository;
import at.ac.uibk.gitsearch.repository.jpa.ChatMessageRepository; import at.ac.uibk.gitsearch.repository.jpa.ChatMessageRepository;
import at.ac.uibk.gitsearch.repository.jpa.ReviewRepository;
import at.ac.uibk.gitsearch.service.dto.ChatMessageDTO; import at.ac.uibk.gitsearch.service.dto.ChatMessageDTO;
import java.nio.charset.StandardCharsets; import java.nio.charset.StandardCharsets;
import java.security.MessageDigest; import java.security.MessageDigest;
......
...@@ -5,7 +5,7 @@ import at.ac.uibk.gitsearch.domain.Review; ...@@ -5,7 +5,7 @@ import at.ac.uibk.gitsearch.domain.Review;
import at.ac.uibk.gitsearch.domain.ReviewHistoryEntry_; import at.ac.uibk.gitsearch.domain.ReviewHistoryEntry_;
import at.ac.uibk.gitsearch.domain.ReviewRating_; import at.ac.uibk.gitsearch.domain.ReviewRating_;
import at.ac.uibk.gitsearch.domain.Review_; import at.ac.uibk.gitsearch.domain.Review_;
import at.ac.uibk.gitsearch.repository.ReviewRepository; import at.ac.uibk.gitsearch.repository.jpa.ReviewRepository;
import at.ac.uibk.gitsearch.service.criteria.ReviewCriteria; import at.ac.uibk.gitsearch.service.criteria.ReviewCriteria;
import at.ac.uibk.gitsearch.service.dto.ReviewDTO; import at.ac.uibk.gitsearch.service.dto.ReviewDTO;
import at.ac.uibk.gitsearch.service.mapper.ReviewMapper; import at.ac.uibk.gitsearch.service.mapper.ReviewMapper;
......
...@@ -6,7 +6,7 @@ import at.ac.uibk.gitsearch.domain.ReviewRating; ...@@ -6,7 +6,7 @@ import at.ac.uibk.gitsearch.domain.ReviewRating;
import at.ac.uibk.gitsearch.domain.ReviewRating_; import at.ac.uibk.gitsearch.domain.ReviewRating_;
import at.ac.uibk.gitsearch.domain.Review_; import at.ac.uibk.gitsearch.domain.Review_;
import at.ac.uibk.gitsearch.domain.User_; import at.ac.uibk.gitsearch.domain.User_;
import at.ac.uibk.gitsearch.repository.ReviewRatingRepository; import at.ac.uibk.gitsearch.repository.jpa.ReviewRatingRepository;
import at.ac.uibk.gitsearch.service.criteria.ReviewRatingCriteria; import at.ac.uibk.gitsearch.service.criteria.ReviewRatingCriteria;
import at.ac.uibk.gitsearch.service.dto.ReviewRatingDTO; import at.ac.uibk.gitsearch.service.dto.ReviewRatingDTO;
import at.ac.uibk.gitsearch.service.mapper.ReviewRatingMapper; import at.ac.uibk.gitsearch.service.mapper.ReviewRatingMapper;
......
package at.ac.uibk.gitsearch.service; package at.ac.uibk.gitsearch.service;
import at.ac.uibk.gitsearch.domain.ReviewRating; import at.ac.uibk.gitsearch.domain.ReviewRating;
import at.ac.uibk.gitsearch.repository.ReviewRatingRepository; import at.ac.uibk.gitsearch.repository.jpa.ReviewRatingRepository;
import at.ac.uibk.gitsearch.service.dto.ReviewRatingDTO; import at.ac.uibk.gitsearch.service.dto.ReviewRatingDTO;
import at.ac.uibk.gitsearch.service.mapper.ReviewRatingMapper; import at.ac.uibk.gitsearch.service.mapper.ReviewRatingMapper;
import java.util.LinkedList; import java.util.LinkedList;
......
...@@ -4,8 +4,8 @@ import at.ac.uibk.gitsearch.domain.Review; ...@@ -4,8 +4,8 @@ import at.ac.uibk.gitsearch.domain.Review;
import at.ac.uibk.gitsearch.domain.ReviewHistoryEntry; import at.ac.uibk.gitsearch.domain.ReviewHistoryEntry;
import at.ac.uibk.gitsearch.domain.ReviewRating; import at.ac.uibk.gitsearch.domain.ReviewRating;
import at.ac.uibk.gitsearch.domain.User; import at.ac.uibk.gitsearch.domain.User;
import at.ac.uibk.gitsearch.repository.ReviewRatingRepository; import at.ac.uibk.gitsearch.repository.jpa.ReviewRatingRepository;
import at.ac.uibk.gitsearch.repository.ReviewRepository; import at.ac.uibk.gitsearch.repository.jpa.ReviewRepository;
import at.ac.uibk.gitsearch.repository.jpa.UserRepository; import at.ac.uibk.gitsearch.repository.jpa.UserRepository;
import at.ac.uibk.gitsearch.service.dto.ReviewHistoryEntryDTO; import at.ac.uibk.gitsearch.service.dto.ReviewHistoryEntryDTO;
import liquibase.pro.packaged.D; import liquibase.pro.packaged.D;
......
package at.ac.uibk.gitsearch.web.rest; package at.ac.uibk.gitsearch.web.rest;
import at.ac.uibk.gitsearch.repository.ReviewHistoryEntryRepository; import at.ac.uibk.gitsearch.repository.jpa.ReviewHistoryEntryRepository;
import at.ac.uibk.gitsearch.service.ReviewHistoryEntryQueryService; import at.ac.uibk.gitsearch.service.ReviewHistoryEntryQueryService;
import at.ac.uibk.gitsearch.service.ReviewHistoryEntryService; import at.ac.uibk.gitsearch.service.ReviewHistoryEntryService;
import at.ac.uibk.gitsearch.service.criteria.ReviewHistoryEntryCriteria; import at.ac.uibk.gitsearch.service.criteria.ReviewHistoryEntryCriteria;
......
package at.ac.uibk.gitsearch.web.rest; package at.ac.uibk.gitsearch.web.rest;
import at.ac.uibk.gitsearch.repository.ReviewRatingRepository; import at.ac.uibk.gitsearch.repository.jpa.ReviewRatingRepository;
import at.ac.uibk.gitsearch.service.ReviewRatingQueryService; import at.ac.uibk.gitsearch.service.ReviewRatingQueryService;
import at.ac.uibk.gitsearch.service.ReviewRatingService; import at.ac.uibk.gitsearch.service.ReviewRatingService;
import at.ac.uibk.gitsearch.service.criteria.ReviewRatingCriteria; import at.ac.uibk.gitsearch.service.criteria.ReviewRatingCriteria;
......
...@@ -6,6 +6,7 @@ import at.ac.uibk.gitsearch.IntegrationTest; ...@@ -6,6 +6,7 @@ import at.ac.uibk.gitsearch.IntegrationTest;
import at.ac.uibk.gitsearch.domain.ChatMessage; import at.ac.uibk.gitsearch.domain.ChatMessage;
import at.ac.uibk.gitsearch.domain.Review; import at.ac.uibk.gitsearch.domain.Review;
import at.ac.uibk.gitsearch.repository.jpa.ChatMessageRepository; import at.ac.uibk.gitsearch.repository.jpa.ChatMessageRepository;
import at.ac.uibk.gitsearch.repository.jpa.ReviewRepository;
import java.util.Date; import java.util.Date;
import java.util.List; import java.util.List;
import javax.transaction.Transactional; import javax.transaction.Transactional;
......
...@@ -6,7 +6,7 @@ import at.ac.uibk.gitsearch.IntegrationTest; ...@@ -6,7 +6,7 @@ import at.ac.uibk.gitsearch.IntegrationTest;
import at.ac.uibk.gitsearch.domain.ChatMessage; import at.ac.uibk.gitsearch.domain.ChatMessage;
import at.ac.uibk.gitsearch.domain.Review; import at.ac.uibk.gitsearch.domain.Review;
import at.ac.uibk.gitsearch.domain.User; import at.ac.uibk.gitsearch.domain.User;
import at.ac.uibk.gitsearch.repository.ReviewRepository; import at.ac.uibk.gitsearch.repository.jpa.ReviewRepository;
import at.ac.uibk.gitsearch.security.AuthoritiesConstants; import at.ac.uibk.gitsearch.security.AuthoritiesConstants;
import at.ac.uibk.gitsearch.service.dto.ChatMessageDTO; import at.ac.uibk.gitsearch.service.dto.ChatMessageDTO;
import java.util.List; import java.util.List;
......
...@@ -4,9 +4,9 @@ import static org.assertj.core.api.Assertions.assertThat; ...@@ -4,9 +4,9 @@ import static org.assertj.core.api.Assertions.assertThat;
import at.ac.uibk.gitsearch.IntegrationTest; import at.ac.uibk.gitsearch.IntegrationTest;
import at.ac.uibk.gitsearch.domain.ReviewHistoryEntry; import at.ac.uibk.gitsearch.domain.ReviewHistoryEntry;
import at.ac.uibk.gitsearch.repository.ReviewHistoryEntryRepository; import at.ac.uibk.gitsearch.repository.jpa.ReviewHistoryEntryRepository;
import at.ac.uibk.gitsearch.repository.ReviewRatingRepository; import at.ac.uibk.gitsearch.repository.jpa.ReviewRatingRepository;
import at.ac.uibk.gitsearch.repository.ReviewRepository; import at.ac.uibk.gitsearch.repository.jpa.ReviewRepository;
import at.ac.uibk.gitsearch.service.dto.ReviewHistoryEntryDTO; import at.ac.uibk.gitsearch.service.dto.ReviewHistoryEntryDTO;
import at.ac.uibk.gitsearch.web.rest.ReviewHistoryEntryResourceIT; import at.ac.uibk.gitsearch.web.rest.ReviewHistoryEntryResourceIT;
import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeUnit;
......
...@@ -20,7 +20,7 @@ import at.ac.uibk.gitsearch.domain.ReviewHistoryEntry; ...@@ -20,7 +20,7 @@ import at.ac.uibk.gitsearch.domain.ReviewHistoryEntry;
import at.ac.uibk.gitsearch.domain.ReviewRating; import at.ac.uibk.gitsearch.domain.ReviewRating;
import at.ac.uibk.gitsearch.domain.User; import at.ac.uibk.gitsearch.domain.User;
import at.ac.uibk.gitsearch.domain.enumeration.ReviewStatus; import at.ac.uibk.gitsearch.domain.enumeration.ReviewStatus;
import at.ac.uibk.gitsearch.repository.ReviewHistoryEntryRepository; import at.ac.uibk.gitsearch.repository.jpa.ReviewHistoryEntryRepository;
import at.ac.uibk.gitsearch.service.dto.ReviewHistoryEntryDTO; import at.ac.uibk.gitsearch.service.dto.ReviewHistoryEntryDTO;
import at.ac.uibk.gitsearch.service.mapper.ReviewHistoryEntryMapper; import at.ac.uibk.gitsearch.service.mapper.ReviewHistoryEntryMapper;
import java.util.List; import java.util.List;
......
...@@ -20,7 +20,7 @@ import at.ac.uibk.gitsearch.domain.ReviewComment; ...@@ -20,7 +20,7 @@ import at.ac.uibk.gitsearch.domain.ReviewComment;
import at.ac.uibk.gitsearch.domain.ReviewRating; import at.ac.uibk.gitsearch.domain.ReviewRating;
import at.ac.uibk.gitsearch.domain.User; import at.ac.uibk.gitsearch.domain.User;
import at.ac.uibk.gitsearch.domain.enumeration.ReviewStatus; import at.ac.uibk.gitsearch.domain.enumeration.ReviewStatus;
import at.ac.uibk.gitsearch.repository.ReviewRatingRepository; import at.ac.uibk.gitsearch.repository.jpa.ReviewRatingRepository;
import at.ac.uibk.gitsearch.security.AuthoritiesConstants; import at.ac.uibk.gitsearch.security.AuthoritiesConstants;
import at.ac.uibk.gitsearch.service.dto.ReviewRatingDTO; import at.ac.uibk.gitsearch.service.dto.ReviewRatingDTO;
import at.ac.uibk.gitsearch.service.mapper.ReviewRatingMapper; import at.ac.uibk.gitsearch.service.mapper.ReviewRatingMapper;
......