Skip to content
Merged
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 @@ -23,12 +23,9 @@

import java.sql.Timestamp;

import org.springframework.beans.factory.annotation.Value;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.google.gson.annotations.Expose;
import com.iemr.common.data.beneficiary.Beneficiary;
import com.iemr.common.utils.config.ConfigProperties;
import com.iemr.common.utils.mapper.OutputMapper;

import jakarta.persistence.Column;
Expand Down Expand Up @@ -280,17 +277,6 @@ public BeneficiaryCall(Long beneficiaryRegID, Boolean is1097, String createdBy)
this.createdBy = createdBy;
}

public BeneficiaryCall(Long benCallID, Timestamp createdDate, String agentID, String callID, String recordingPath,
String archivePath) {
// String loggerBaseURL = ConfigProperties.getPropertyByName("cti-logger_base_url");
this.benCallID = benCallID;
this.createdDate = createdDate;
this.agentID = agentID;
this.callID = callID;
this.recordingPath = (recordingPath != null) ? (loggerBaseURL + "/" + recordingPath) : recordingPath;
this.archivePath = (archivePath != null) ? (loggerBaseURL + "/" + archivePath) : archivePath;
}

@Transient
private OutputMapper outputMapper = new OutputMapper();

Expand Down
Loading