Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

@RestController
@RequestMapping(value = "/cti")
public class CTIController {
public class ComputerTelephonyIntegrationController {
InputMapper inputMapper = new InputMapper();
final Logger logger = LoggerFactory.getLogger(this.getClass().getName());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@

@RequestMapping(value = "/beneficiary")
@RestController
public class H104BenHistoryController {
public class Helpline104BeneficiaryHistoryController {
InputMapper inputMapper = new InputMapper();
private Logger logger = LoggerFactory.getLogger(H104BenHistoryController.class);
private Logger logger = LoggerFactory.getLogger(Helpline104BeneficiaryHistoryController.class);

@Autowired
private H104BenHistoryServiceImpl smpleBenHistoryServiceImpl;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

@RequestMapping(value = "/nhm_dashboard")
@RestController
public class NHMDashboardController {
public class NationalHealthMissionDashboardController {
private final Logger logger = LoggerFactory.getLogger(this.getClass().getName());

@Autowired
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
@CrossOrigin
@RequestMapping({ "/crmReports" })
@RestController
public class CRMReports {
public class CustomerRelationshipManagementReports {

private final Logger logger = LoggerFactory.getLogger(this.getClass().getName());
InputMapper inputMapper = new InputMapper();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
@CrossOrigin
@RequestMapping({ "/crmReports" })
@RestController
public class CRMSecondaryReports {
public class CustomerRelationshipManagementSecondaryReports {
private final Logger logger = LoggerFactory.getLogger(this.getClass().getName());
@Autowired
private SecondaryReportService secondaryReportService;
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/com/iemr/common/cti/CTIControllerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
import org.springframework.mock.web.MockHttpServletRequest;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

import com.iemr.common.controller.cti.CTIController;
import com.iemr.common.controller.cti.ComputerTelephonyIntegrationController;
import com.iemr.common.service.cti.CTIService;
import com.iemr.common.service.cti.CTIServiceImpl;
import com.iemr.common.utils.mapper.InputMapper;
Expand All @@ -45,7 +45,7 @@
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class CTIControllerTest {
@InjectMocks
private CTIController controllerMock = spy(CTIController.class);
private ComputerTelephonyIntegrationController controllerMock = spy(ComputerTelephonyIntegrationController.class);

private CTIService ctiServiceSpy = spy(new CTIServiceImpl());

Expand Down