first commit
This commit is contained in:
32
app/src/main/java/com/tutpro/baresip/Call.java
Normal file
32
app/src/main/java/com/tutpro/baresip/Call.java
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user