Skip to content

Commit

Permalink
Merge pull request #17 from weddle/master
Browse files Browse the repository at this point in the history
Update Room.java to add support for sipAddress
  • Loading branch information
santokum committed Mar 21, 2018
2 parents 453a9a1 + 62b48a2 commit dce7fcc
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/main/java/com/ciscospark/Room.java
Expand Up @@ -13,7 +13,16 @@ public class Room {
private Date created;
private Date lastActivity;
private String type;
private String sipAddress;

public String getSipAddress() {
return sipAddress;
}

public void setSipAddress(String sipAddress) {
this.sipAddress = sipAddress;
}

public String getTitle() {
return title;
}
Expand Down

0 comments on commit dce7fcc

Please sign in to comment.