first commit

This commit is contained in:
Juha Heinanen
2018-02-20 05:01:26 +02:00
commit ce52d1dbff
63 changed files with 2568 additions and 0 deletions

View File

@ -0,0 +1,32 @@
package com.tutpro.baresip;
public class Call {
private String ua, call, peer_uri, status;
public Call(String ua, String call, String peer_uri, String status) {
this.ua = ua;
this.call = call;
this.peer_uri = peer_uri;
this.status = status;
}
public String getUA() {
return ua;
}
public String getCall() {
return call;
}
public String getPeerURI() {
return peer_uri;
}
public void setStatus(String status) {
this.status = status;
}
public String getStatus() {
return status;
}
}