Skip to content

Commit

Permalink
fix: backend package name
Browse files Browse the repository at this point in the history
  • Loading branch information
nitin-vavdiya committed Jul 5, 2024
1 parent a652160 commit dde05f7
Show file tree
Hide file tree
Showing 159 changed files with 393 additions and 393 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* ********************************************************************************
*/

package org.eclipse.tractusx.demandcapacitymgmt.backend;
package org.eclipse.tractusx.demandcapacitymgm.backend;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* *******************************************************************************
*/

package org.eclipse.tractusx.demandcapacitymgmt.backend.appinfo;
package org.eclipse.tractusx.demandcapacitymgm.backend.appinfo;

import org.springframework.boot.context.properties.ConfigurationProperties;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* ********************************************************************************
*/

package org.eclipse.tractusx.demandcapacitymgmt.backend.config;
package org.eclipse.tractusx.demandcapacitymgm.backend.config;

import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.exception.ExceptionUtils;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* *******************************************************************************
*/

package org.eclipse.tractusx.demandcapacitymgmt.backend.config.openapi;
package org.eclipse.tractusx.demandcapacitymgm.backend.config.openapi;

import io.swagger.v3.oas.models.Components;
import io.swagger.v3.oas.models.OpenAPI;
Expand All @@ -29,8 +29,8 @@
import io.swagger.v3.oas.models.security.SecurityRequirement;
import io.swagger.v3.oas.models.security.SecurityScheme;
import lombok.AllArgsConstructor;
import org.eclipse.tractusx.demandcapacitymgmt.backend.appinfo.InfoConfiguration;
import org.eclipse.tractusx.demandcapacitymgmt.backend.security.AppSecurityConfigProperties;
import org.eclipse.tractusx.demandcapacitymgm.backend.appinfo.InfoConfiguration;
import org.eclipse.tractusx.demandcapacitymgm.backend.security.AppSecurityConfigProperties;
import org.springdoc.core.models.GroupedOpenApi;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@
* *******************************************************************************
*/

package org.eclipse.tractusx.demandcapacitymgmt.backend.controllers;
package org.eclipse.tractusx.demandcapacitymgm.backend.controllers;

import eclipse.tractusx.demandcapacitymgm.specification.api.AddressBookApi;
import eclipse.tractusx.demandcapacitymgm.specification.model.AddressBookRequest;
import eclipse.tractusx.demandcapacitymgm.specification.model.AddressBookResponse;
import jakarta.servlet.http.HttpServletRequest;
import lombok.AllArgsConstructor;
import org.eclipse.tractusx.demandcapacitymgmt.backend.entities.enums.Role;
import org.eclipse.tractusx.demandcapacitymgmt.backend.services.AddressBookService;
import org.eclipse.tractusx.demandcapacitymgmt.backend.utils.UserUtil;
import org.eclipse.tractusx.demandcapacitymgm.backend.entities.enums.Role;
import org.eclipse.tractusx.demandcapacitymgm.backend.services.AddressBookService;
import org.eclipse.tractusx.demandcapacitymgm.backend.utils.UserUtil;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@
* ********************************************************************************
*/

package org.eclipse.tractusx.demandcapacitymgmt.backend.controllers;
package org.eclipse.tractusx.demandcapacitymgm.backend.controllers;

import eclipse.tractusx.demandcapacitymgm.specification.api.RulesApi;
import eclipse.tractusx.demandcapacitymgm.specification.model.AddRuleRequest;
import eclipse.tractusx.demandcapacitymgm.specification.model.RuleRequest;
import eclipse.tractusx.demandcapacitymgm.specification.model.RuleResponse;
import jakarta.servlet.http.HttpServletRequest;
import lombok.AllArgsConstructor;
import org.eclipse.tractusx.demandcapacitymgmt.backend.entities.enums.Role;
import org.eclipse.tractusx.demandcapacitymgmt.backend.services.RulesetService;
import org.eclipse.tractusx.demandcapacitymgmt.backend.utils.UserUtil;
import org.eclipse.tractusx.demandcapacitymgm.backend.entities.enums.Role;
import org.eclipse.tractusx.demandcapacitymgm.backend.services.RulesetService;
import org.eclipse.tractusx.demandcapacitymgm.backend.utils.UserUtil;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* SPDX-License-Identifier: Apache-2.0
* *******************************************************************************
*/
package org.eclipse.tractusx.demandcapacitymgmt.backend.controllers;
package org.eclipse.tractusx.demandcapacitymgm.backend.controllers;

import eclipse.tractusx.demandcapacitymgm.specification.api.AlertsApi;
import eclipse.tractusx.demandcapacitymgm.specification.model.AlertRequest;
Expand All @@ -28,8 +28,8 @@
import eclipse.tractusx.demandcapacitymgm.specification.model.TriggeredAlertResponse;
import jakarta.servlet.http.HttpServletRequest;
import lombok.AllArgsConstructor;
import org.eclipse.tractusx.demandcapacitymgmt.backend.services.AlertService;
import org.eclipse.tractusx.demandcapacitymgmt.backend.utils.UserUtil;
import org.eclipse.tractusx.demandcapacitymgm.backend.services.AlertService;
import org.eclipse.tractusx.demandcapacitymgm.backend.utils.UserUtil;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
* ********************************************************************************
*/

package org.eclipse.tractusx.demandcapacitymgmt.backend.controllers;
package org.eclipse.tractusx.demandcapacitymgm.backend.controllers;

import eclipse.tractusx.demandcapacitymgm.specification.api.CgRulesetApi;
import eclipse.tractusx.demandcapacitymgm.specification.model.CGRulesetRequest;
import eclipse.tractusx.demandcapacitymgm.specification.model.CGRulesetResponse;
import lombok.AllArgsConstructor;
import org.eclipse.tractusx.demandcapacitymgmt.backend.services.CapacityGroupRuleSetService;
import org.eclipse.tractusx.demandcapacitymgm.backend.services.CapacityGroupRuleSetService;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
* *******************************************************************************
*/

package org.eclipse.tractusx.demandcapacitymgmt.backend.controllers;
package org.eclipse.tractusx.demandcapacitymgm.backend.controllers;

import eclipse.tractusx.demandcapacitymgm.specification.api.CapacityGroupApi;
import eclipse.tractusx.demandcapacitymgm.specification.model.*;
import jakarta.servlet.http.HttpServletRequest;
import lombok.AllArgsConstructor;
import org.eclipse.tractusx.demandcapacitymgmt.backend.entities.enums.Role;
import org.eclipse.tractusx.demandcapacitymgmt.backend.services.CapacityGroupService;
import org.eclipse.tractusx.demandcapacitymgmt.backend.utils.UserUtil;
import org.eclipse.tractusx.demandcapacitymgm.backend.entities.enums.Role;
import org.eclipse.tractusx.demandcapacitymgm.backend.services.CapacityGroupService;
import org.eclipse.tractusx.demandcapacitymgm.backend.utils.UserUtil;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
* ********************************************************************************
*/

package org.eclipse.tractusx.demandcapacitymgmt.backend.controllers;
package org.eclipse.tractusx.demandcapacitymgm.backend.controllers;

import eclipse.tractusx.demandcapacitymgm.specification.api.CompanyApi;
import eclipse.tractusx.demandcapacitymgm.specification.model.CompanyDto;
import lombok.AllArgsConstructor;
import org.eclipse.tractusx.demandcapacitymgmt.backend.services.CompanyService;
import org.eclipse.tractusx.demandcapacitymgm.backend.services.CompanyService;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
* ********************************************************************************
*/

package org.eclipse.tractusx.demandcapacitymgmt.backend.controllers;
package org.eclipse.tractusx.demandcapacitymgm.backend.controllers;

import eclipse.tractusx.demandcapacitymgm.specification.api.CdRulesetApi;
import eclipse.tractusx.demandcapacitymgm.specification.model.CDRulesetRequest;
import eclipse.tractusx.demandcapacitymgm.specification.model.CDRulesetResponse;
import lombok.AllArgsConstructor;
import org.eclipse.tractusx.demandcapacitymgmt.backend.services.CompanyRuleSetService;
import org.eclipse.tractusx.demandcapacitymgm.backend.services.CompanyRuleSetService;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
* ********************************************************************************
*/

package org.eclipse.tractusx.demandcapacitymgmt.backend.controllers;
package org.eclipse.tractusx.demandcapacitymgm.backend.controllers;

import eclipse.tractusx.demandcapacitymgm.specification.api.DemandCategoryApi;
import eclipse.tractusx.demandcapacitymgm.specification.model.DemandCategoryResponse;
import lombok.AllArgsConstructor;
import org.eclipse.tractusx.demandcapacitymgmt.backend.services.DemandCategoryService;
import org.eclipse.tractusx.demandcapacitymgm.backend.services.DemandCategoryService;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
* ********************************************************************************
*/

package org.eclipse.tractusx.demandcapacitymgmt.backend.controllers;
package org.eclipse.tractusx.demandcapacitymgm.backend.controllers;

import eclipse.tractusx.demandcapacitymgm.specification.api.DemandApi;
import eclipse.tractusx.demandcapacitymgm.specification.model.*;
import jakarta.servlet.http.HttpServletRequest;
import lombok.AllArgsConstructor;
import org.eclipse.tractusx.demandcapacitymgmt.backend.services.DemandService;
import org.eclipse.tractusx.demandcapacitymgmt.backend.utils.UserUtil;
import org.eclipse.tractusx.demandcapacitymgm.backend.services.DemandService;
import org.eclipse.tractusx.demandcapacitymgm.backend.utils.UserUtil;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
* ********************************************************************************
*/

package org.eclipse.tractusx.demandcapacitymgmt.backend.controllers;
package org.eclipse.tractusx.demandcapacitymgm.backend.controllers;

import eclipse.tractusx.demandcapacitymgm.specification.api.EdcApi;
import eclipse.tractusx.demandcapacitymgm.specification.model.*;
import lombok.AllArgsConstructor;
import org.eclipse.tractusx.demandcapacitymgmt.backend.services.EDCService;
import org.eclipse.tractusx.demandcapacitymgm.backend.services.EDCService;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@
* *******************************************************************************
*/

package org.eclipse.tractusx.demandcapacitymgmt.backend.controllers;
package org.eclipse.tractusx.demandcapacitymgm.backend.controllers;

import eclipse.tractusx.demandcapacitymgm.specification.api.FavoriteApi;
import eclipse.tractusx.demandcapacitymgm.specification.model.FavoriteRequest;
import eclipse.tractusx.demandcapacitymgm.specification.model.FavoriteResponse;
import jakarta.servlet.http.HttpServletRequest;
import lombok.AllArgsConstructor;
import org.eclipse.tractusx.demandcapacitymgmt.backend.entities.enums.FavoriteType;
import org.eclipse.tractusx.demandcapacitymgmt.backend.services.FavoriteService;
import org.eclipse.tractusx.demandcapacitymgmt.backend.utils.UserUtil;
import org.eclipse.tractusx.demandcapacitymgm.backend.entities.enums.FavoriteType;
import org.eclipse.tractusx.demandcapacitymgm.backend.services.FavoriteService;
import org.eclipse.tractusx.demandcapacitymgm.backend.utils.UserUtil;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@
* ********************************************************************************
*/

package org.eclipse.tractusx.demandcapacitymgmt.backend.controllers;
package org.eclipse.tractusx.demandcapacitymgm.backend.controllers;

import eclipse.tractusx.demandcapacitymgm.specification.api.LoggingHistoryApi;
import eclipse.tractusx.demandcapacitymgm.specification.model.ArchivedLoggingHistoryResponse;
import eclipse.tractusx.demandcapacitymgm.specification.model.LoggingHistoryRequest;
import eclipse.tractusx.demandcapacitymgm.specification.model.LoggingHistoryResponse;
import jakarta.servlet.http.HttpServletRequest;
import lombok.AllArgsConstructor;
import org.eclipse.tractusx.demandcapacitymgmt.backend.services.LoggingHistoryService;
import org.eclipse.tractusx.demandcapacitymgmt.backend.utils.UserUtil;
import org.eclipse.tractusx.demandcapacitymgm.backend.services.LoggingHistoryService;
import org.eclipse.tractusx.demandcapacitymgm.backend.utils.UserUtil;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
* *******************************************************************************
*/

package org.eclipse.tractusx.demandcapacitymgmt.backend.controllers;
package org.eclipse.tractusx.demandcapacitymgm.backend.controllers;

import eclipse.tractusx.demandcapacitymgm.specification.api.KeycloakApi;
import eclipse.tractusx.demandcapacitymgm.specification.model.IntrospectTokenResponse;
import eclipse.tractusx.demandcapacitymgm.specification.model.User;
import lombok.AllArgsConstructor;
import org.eclipse.tractusx.demandcapacitymgmt.backend.services.SecurityTokenService;
import org.eclipse.tractusx.demandcapacitymgm.backend.services.SecurityTokenService;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
* ********************************************************************************
*/

package org.eclipse.tractusx.demandcapacitymgmt.backend.controllers;
package org.eclipse.tractusx.demandcapacitymgm.backend.controllers;

import eclipse.tractusx.demandcapacitymgm.specification.api.StatusesApi;
import eclipse.tractusx.demandcapacitymgm.specification.model.StatusRequest;
import eclipse.tractusx.demandcapacitymgm.specification.model.StatusesResponse;
import jakarta.servlet.http.HttpServletRequest;
import lombok.AllArgsConstructor;
import org.eclipse.tractusx.demandcapacitymgmt.backend.services.StatusesService;
import org.eclipse.tractusx.demandcapacitymgmt.backend.utils.UserUtil;
import org.eclipse.tractusx.demandcapacitymgm.backend.services.StatusesService;
import org.eclipse.tractusx.demandcapacitymgm.backend.utils.UserUtil;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
* ********************************************************************************
*/

package org.eclipse.tractusx.demandcapacitymgmt.backend.controllers;
package org.eclipse.tractusx.demandcapacitymgm.backend.controllers;

import eclipse.tractusx.demandcapacitymgm.specification.api.UnitMeasureApi;
import eclipse.tractusx.demandcapacitymgm.specification.model.UnitMeasure;
import lombok.AllArgsConstructor;
import org.eclipse.tractusx.demandcapacitymgmt.backend.services.UnityOfMeasureService;
import org.eclipse.tractusx.demandcapacitymgm.backend.services.UnityOfMeasureService;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@
* SPDX-License-Identifier: Apache-2.0
* *******************************************************************************
*/
package org.eclipse.tractusx.demandcapacitymgmt.backend.controllers;
package org.eclipse.tractusx.demandcapacitymgm.backend.controllers;

import eclipse.tractusx.demandcapacitymgm.specification.api.UserOperationsApi;
import eclipse.tractusx.demandcapacitymgm.specification.model.UserRequest;
import eclipse.tractusx.demandcapacitymgm.specification.model.UserResponse;
import jakarta.servlet.http.HttpServletRequest;
import lombok.AllArgsConstructor;
import org.eclipse.tractusx.demandcapacitymgmt.backend.services.UserOperationsService;
import org.eclipse.tractusx.demandcapacitymgm.backend.services.UserOperationsService;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
* ********************************************************************************
*/

package org.eclipse.tractusx.demandcapacitymgmt.backend.controllers;
package org.eclipse.tractusx.demandcapacitymgm.backend.controllers;

import eclipse.tractusx.demandcapacitymgm.specification.api.WeekBasedCapacityGroupApi;
import eclipse.tractusx.demandcapacitymgm.specification.model.WeekBasedCapacityGroupDtoRequest;
import eclipse.tractusx.demandcapacitymgm.specification.model.WeekBasedCapacityGroupDtoResponse;
import jakarta.servlet.http.HttpServletRequest;
import lombok.AllArgsConstructor;
import org.eclipse.tractusx.demandcapacitymgmt.backend.services.WeekBasedCapacityGroupService;
import org.eclipse.tractusx.demandcapacitymgmt.backend.utils.UserUtil;
import org.eclipse.tractusx.demandcapacitymgm.backend.services.WeekBasedCapacityGroupService;
import org.eclipse.tractusx.demandcapacitymgm.backend.utils.UserUtil;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
* ********************************************************************************
*/

package org.eclipse.tractusx.demandcapacitymgmt.backend.controllers;
package org.eclipse.tractusx.demandcapacitymgm.backend.controllers;

import eclipse.tractusx.demandcapacitymgm.specification.api.WeekBasedMaterialDemandApi;
import eclipse.tractusx.demandcapacitymgm.specification.model.WeekBasedMaterialDemandRequestDto;
import eclipse.tractusx.demandcapacitymgm.specification.model.WeekBasedMaterialDemandResponseDto;
import jakarta.servlet.http.HttpServletRequest;
import lombok.AllArgsConstructor;
import org.eclipse.tractusx.demandcapacitymgmt.backend.services.WeekBasedMaterialService;
import org.eclipse.tractusx.demandcapacitymgmt.backend.utils.UserUtil;
import org.eclipse.tractusx.demandcapacitymgm.backend.services.WeekBasedMaterialService;
import org.eclipse.tractusx.demandcapacitymgm.backend.utils.UserUtil;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController;
Expand Down
Loading

0 comments on commit dde05f7

Please sign in to comment.