Subversion Repositories SmartDukaan

Rev

Rev 35702 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
35671 ranu 1
package com.spice.profitmandi.dao.model;
2
 
3
public class CalledPartnerDetailModel {
4
    private String partyName;
5
    private String code;
6
    private String remark;
35677 ranu 7
    private String message;
35671 ranu 8
    private String time;
35702 ranu 9
    private String recordingUrl;
10
    private String callStatus;
11
    private String callDuration;
12
    private String callDateTime;
35984 ranu 13
    private boolean breakLog;  // true if this is a break log entry
14
    private String breakStatus;  // e.g., "On Break - Lunch Break"
35671 ranu 15
 
16
    public CalledPartnerDetailModel() {
17
    }
18
 
35677 ranu 19
    public CalledPartnerDetailModel(String partyName, String code, String remark, String message, String time) {
35671 ranu 20
        this.partyName = partyName;
21
        this.code = code;
22
        this.remark = remark;
35677 ranu 23
        this.message = message;
35671 ranu 24
        this.time = time;
25
    }
26
 
35702 ranu 27
    public CalledPartnerDetailModel(String partyName, String code, String remark, String message, String time,
28
                                    String recordingUrl, String callStatus, String callDuration, String callDateTime) {
29
        this.partyName = partyName;
30
        this.code = code;
31
        this.remark = remark;
32
        this.message = message;
33
        this.time = time;
34
        this.recordingUrl = recordingUrl;
35
        this.callStatus = callStatus;
36
        this.callDuration = callDuration;
37
        this.callDateTime = callDateTime;
38
    }
39
 
35671 ranu 40
    public String getPartyName() {
41
        return partyName;
42
    }
43
 
44
    public void setPartyName(String partyName) {
45
        this.partyName = partyName;
46
    }
47
 
48
    public String getCode() {
49
        return code;
50
    }
51
 
52
    public void setCode(String code) {
53
        this.code = code;
54
    }
55
 
56
    public String getRemark() {
57
        return remark;
58
    }
59
 
60
    public void setRemark(String remark) {
61
        this.remark = remark;
62
    }
63
 
35677 ranu 64
    public String getMessage() {
65
        return message;
66
    }
67
 
68
    public void setMessage(String message) {
69
        this.message = message;
70
    }
71
 
35671 ranu 72
    public String getTime() {
73
        return time;
74
    }
75
 
76
    public void setTime(String time) {
77
        this.time = time;
78
    }
35702 ranu 79
 
80
    public String getRecordingUrl() {
81
        return recordingUrl;
82
    }
83
 
84
    public void setRecordingUrl(String recordingUrl) {
85
        this.recordingUrl = recordingUrl;
86
    }
87
 
88
    public String getCallStatus() {
89
        return callStatus;
90
    }
91
 
92
    public void setCallStatus(String callStatus) {
93
        this.callStatus = callStatus;
94
    }
95
 
96
    public String getCallDuration() {
97
        return callDuration;
98
    }
99
 
100
    public void setCallDuration(String callDuration) {
101
        this.callDuration = callDuration;
102
    }
103
 
104
    public String getCallDateTime() {
105
        return callDateTime;
106
    }
107
 
108
    public void setCallDateTime(String callDateTime) {
109
        this.callDateTime = callDateTime;
110
    }
35984 ranu 111
 
112
    public boolean isBreakLog() {
113
        return breakLog;
114
    }
115
 
116
    public void setBreakLog(boolean breakLog) {
117
        this.breakLog = breakLog;
118
    }
119
 
120
    public String getBreakStatus() {
121
        return breakStatus;
122
    }
123
 
124
    public void setBreakStatus(String breakStatus) {
125
        this.breakStatus = breakStatus;
126
    }
35671 ranu 127
}