├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── diber.iml ├── pom.xml └── src └── main ├── java └── com │ └── github │ └── handioq │ └── diber │ ├── Application.java │ ├── configuration │ ├── AuditorAwareImpl.java │ ├── CORSFilter.java │ ├── JpaConfig.java │ └── security │ │ ├── AuthorizationServerConfiguration.java │ │ ├── OAuth2ServerConfiguration.java │ │ └── SecurityConfiguration.java │ ├── controller │ ├── AddressController.java │ ├── AuthController.java │ ├── MainController.java │ ├── OrderController.java │ ├── RequestController.java │ ├── StatisticController.java │ ├── TicketController.java │ ├── UserAddressController.java │ ├── UserController.java │ ├── UserOrderController.java │ ├── UserRequestController.java │ ├── UserReviewController.java │ └── UserTicketController.java │ ├── model │ ├── base │ │ ├── AuditableEntity.java │ │ ├── BaseDto.java │ │ └── BaseEntity.java │ ├── dto │ │ ├── AddressDto.java │ │ ├── ClientStatisticsDto.java │ │ ├── ErrorResponseDto.java │ │ ├── InvoiceDto.java │ │ ├── MessageDto.java │ │ ├── OrderDto.java │ │ ├── RequestDto.java │ │ ├── ReviewDto.java │ │ ├── RoleDto.java │ │ ├── StatisticsDto.java │ │ ├── TicketDto.java │ │ └── UserDto.java │ ├── entity │ │ ├── Address.java │ │ ├── Invoice.java │ │ ├── Message.java │ │ ├── Order.java │ │ ├── Request.java │ │ ├── Review.java │ │ ├── Role.java │ │ ├── Ticket.java │ │ └── User.java │ └── enums │ │ └── RoleEnum.java │ ├── repository │ ├── AddressRepository.java │ ├── AuthRepository.java │ ├── MessageRepository.java │ ├── OrderRepository.java │ ├── RequestRepository.java │ ├── ReviewRepository.java │ ├── RoleRepository.java │ ├── StatisticRepository.java │ ├── TicketRepository.java │ ├── UserRepository.java │ └── specification │ │ ├── OrderSpecification.java │ │ ├── OrderSpecificationsBuilder.java │ │ └── SearchCriteria.java │ ├── service │ ├── AddressService.java │ ├── AuthService.java │ ├── MessageService.java │ ├── OrderService.java │ ├── RequestService.java │ ├── ReviewService.java │ ├── RoleService.java │ ├── SecurityService.java │ ├── StatisticService.java │ ├── TicketService.java │ ├── UserService.java │ └── impl │ │ ├── AddressServiceImpl.java │ │ ├── AuthServiceImpl.java │ │ ├── MessageServiceImpl.java │ │ ├── OrderServiceImpl.java │ │ ├── RequestServiceImpl.java │ │ ├── ReviewServiceImpl.java │ │ ├── RoleServiceImpl.java │ │ ├── SecurityServiceImpl.java │ │ ├── StatisticServiceImpl.java │ │ ├── TicketServiceImpl.java │ │ ├── UserDetailsServiceImpl.java │ │ └── UserServiceImpl.java │ └── utils │ ├── Constants.java │ └── DateUtil.java └── resources ├── application-https.properties ├── application.properties └── sql ├── postgresql-data.sql └── postgresql-schema.sql /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: java 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/README.md -------------------------------------------------------------------------------- /diber.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/diber.iml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/Application.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/configuration/AuditorAwareImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/configuration/AuditorAwareImpl.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/configuration/CORSFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/configuration/CORSFilter.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/configuration/JpaConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/configuration/JpaConfig.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/configuration/security/AuthorizationServerConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/configuration/security/AuthorizationServerConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/configuration/security/OAuth2ServerConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/configuration/security/OAuth2ServerConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/configuration/security/SecurityConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/configuration/security/SecurityConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/controller/AddressController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/controller/AddressController.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/controller/AuthController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/controller/AuthController.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/controller/MainController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/controller/MainController.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/controller/OrderController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/controller/OrderController.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/controller/RequestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/controller/RequestController.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/controller/StatisticController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/controller/StatisticController.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/controller/TicketController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/controller/TicketController.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/controller/UserAddressController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/controller/UserAddressController.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/controller/UserController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/controller/UserController.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/controller/UserOrderController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/controller/UserOrderController.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/controller/UserRequestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/controller/UserRequestController.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/controller/UserReviewController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/controller/UserReviewController.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/controller/UserTicketController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/controller/UserTicketController.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/base/AuditableEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/base/AuditableEntity.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/base/BaseDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/base/BaseDto.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/base/BaseEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/base/BaseEntity.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/dto/AddressDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/dto/AddressDto.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/dto/ClientStatisticsDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/dto/ClientStatisticsDto.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/dto/ErrorResponseDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/dto/ErrorResponseDto.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/dto/InvoiceDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/dto/InvoiceDto.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/dto/MessageDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/dto/MessageDto.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/dto/OrderDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/dto/OrderDto.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/dto/RequestDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/dto/RequestDto.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/dto/ReviewDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/dto/ReviewDto.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/dto/RoleDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/dto/RoleDto.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/dto/StatisticsDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/dto/StatisticsDto.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/dto/TicketDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/dto/TicketDto.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/dto/UserDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/dto/UserDto.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/entity/Address.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/entity/Address.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/entity/Invoice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/entity/Invoice.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/entity/Message.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/entity/Message.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/entity/Order.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/entity/Order.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/entity/Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/entity/Request.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/entity/Review.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/entity/Review.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/entity/Role.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/entity/Role.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/entity/Ticket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/entity/Ticket.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/entity/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/entity/User.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/model/enums/RoleEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/model/enums/RoleEnum.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/repository/AddressRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/repository/AddressRepository.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/repository/AuthRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/repository/AuthRepository.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/repository/MessageRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/repository/MessageRepository.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/repository/OrderRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/repository/OrderRepository.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/repository/RequestRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/repository/RequestRepository.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/repository/ReviewRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/repository/ReviewRepository.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/repository/RoleRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/repository/RoleRepository.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/repository/StatisticRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/repository/StatisticRepository.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/repository/TicketRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/repository/TicketRepository.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/repository/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/repository/UserRepository.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/repository/specification/OrderSpecification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/repository/specification/OrderSpecification.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/repository/specification/OrderSpecificationsBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/repository/specification/OrderSpecificationsBuilder.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/repository/specification/SearchCriteria.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/repository/specification/SearchCriteria.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/service/AddressService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/service/AddressService.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/service/AuthService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/service/AuthService.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/service/MessageService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/service/MessageService.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/service/OrderService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/service/OrderService.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/service/RequestService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/service/RequestService.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/service/ReviewService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/service/ReviewService.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/service/RoleService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/service/RoleService.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/service/SecurityService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/service/SecurityService.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/service/StatisticService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/service/StatisticService.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/service/TicketService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/service/TicketService.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/service/UserService.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/service/impl/AddressServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/service/impl/AddressServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/service/impl/AuthServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/service/impl/AuthServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/service/impl/MessageServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/service/impl/MessageServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/service/impl/OrderServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/service/impl/OrderServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/service/impl/RequestServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/service/impl/RequestServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/service/impl/ReviewServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/service/impl/ReviewServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/service/impl/RoleServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/service/impl/RoleServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/service/impl/SecurityServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/service/impl/SecurityServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/service/impl/StatisticServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/service/impl/StatisticServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/service/impl/TicketServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/service/impl/TicketServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/service/impl/UserDetailsServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/service/impl/UserDetailsServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/service/impl/UserServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/service/impl/UserServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/utils/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/utils/Constants.java -------------------------------------------------------------------------------- /src/main/java/com/github/handioq/diber/utils/DateUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/java/com/github/handioq/diber/utils/DateUtil.java -------------------------------------------------------------------------------- /src/main/resources/application-https.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/resources/application-https.properties -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/sql/postgresql-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/resources/sql/postgresql-data.sql -------------------------------------------------------------------------------- /src/main/resources/sql/postgresql-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atereshkov/Diber-backend/HEAD/src/main/resources/sql/postgresql-schema.sql --------------------------------------------------------------------------------