|
@@ -14,7 +14,7 @@ public class VoiceUtil {
|
|
|
return tcpModel;
|
|
|
}
|
|
|
|
|
|
- public static TcpModel voiceAccept(Integer fromId, Integer toId, Integer InteractionId){
|
|
|
+ public static TcpModel voiceAccept(Integer fromId, Integer toId,Integer InteractionId){
|
|
|
TcpModel tcpModel = new TcpModel();
|
|
|
tcpModel.setType(TcpType.VOICE);
|
|
|
tcpModel.setAction(TcpAction.VoiceAction.ACCEPT);
|
|
@@ -24,7 +24,7 @@ public class VoiceUtil {
|
|
|
return tcpModel;
|
|
|
}
|
|
|
|
|
|
- public static TcpModel voiceReject(Integer fromId, Integer toId, Integer InteractionId){
|
|
|
+ public static TcpModel voiceReject(Integer fromId, Integer toId,Integer InteractionId){
|
|
|
TcpModel tcpModel = new TcpModel();
|
|
|
tcpModel.setType(TcpType.VOICE);
|
|
|
tcpModel.setAction(TcpAction.VoiceAction.REJECT);
|
|
@@ -34,7 +34,7 @@ public class VoiceUtil {
|
|
|
return tcpModel;
|
|
|
}
|
|
|
|
|
|
- public static TcpModel voiceCalling(Integer fromId, Integer toId, Integer InteractionId){
|
|
|
+ public static TcpModel voiceCalling(Integer fromId, Integer toId,Integer InteractionId){
|
|
|
TcpModel tcpModel = new TcpModel();
|
|
|
tcpModel.setType(TcpType.VOICE);
|
|
|
tcpModel.setAction(TcpAction.VoiceAction.CALLING);
|
|
@@ -44,7 +44,7 @@ public class VoiceUtil {
|
|
|
return tcpModel;
|
|
|
}
|
|
|
|
|
|
- public static TcpModel voiceCancel(Integer fromId, Integer toId, Integer InteractionId){
|
|
|
+ public static TcpModel voiceCancel(Integer fromId, Integer toId,Integer InteractionId){
|
|
|
TcpModel tcpModel = new TcpModel();
|
|
|
tcpModel.setType(TcpType.VOICE);
|
|
|
tcpModel.setAction(TcpAction.VoiceAction.CANCEL);
|
|
@@ -53,7 +53,7 @@ public class VoiceUtil {
|
|
|
return tcpModel;
|
|
|
}
|
|
|
|
|
|
- public static TcpModel voiceHandoff(Integer fromId, Integer toId, Integer InteractionId){
|
|
|
+ public static TcpModel voiceHandoff(Integer fromId, Integer toId,Integer InteractionId){
|
|
|
TcpModel tcpModel = new TcpModel();
|
|
|
tcpModel.setType(TcpType.VOICE);
|
|
|
tcpModel.setAction(TcpAction.VoiceAction.HANDOFF);
|
|
@@ -63,7 +63,7 @@ public class VoiceUtil {
|
|
|
return tcpModel;
|
|
|
}
|
|
|
|
|
|
- public static TcpModel voiceSuccess(Integer fromId, Integer toId, Integer InteractionId){
|
|
|
+ public static TcpModel voiceSuccess(Integer fromId, Integer toId,Integer InteractionId){
|
|
|
TcpModel tcpModel = new TcpModel();
|
|
|
tcpModel.setType(TcpType.VOICE);
|
|
|
tcpModel.setAction(TcpAction.VoiceAction.SUCCESS);
|
|
@@ -73,7 +73,7 @@ public class VoiceUtil {
|
|
|
return tcpModel;
|
|
|
}
|
|
|
|
|
|
- public static TcpModel voiceFailed(Integer fromId, Integer toId, Integer InteractionId){
|
|
|
+ public static TcpModel voiceFailed(Integer fromId, Integer toId,Integer InteractionId){
|
|
|
TcpModel tcpModel = new TcpModel();
|
|
|
tcpModel.setType(TcpType.VOICE);
|
|
|
tcpModel.setAction(TcpAction.VoiceAction.FAILED);
|
|
@@ -83,7 +83,7 @@ public class VoiceUtil {
|
|
|
return tcpModel;
|
|
|
}
|
|
|
|
|
|
- public static TcpModel voiceTransfer(Integer fromId, Integer toId, Integer InteractionId){
|
|
|
+ public static TcpModel voiceTransfer(Integer fromId, Integer toId,Integer InteractionId){
|
|
|
TcpModel tcpModel = new TcpModel();
|
|
|
tcpModel.setType(TcpType.VOICE);
|
|
|
tcpModel.setAction(TcpAction.VoiceAction.TRANSFER);
|