forked from webex/webex-java-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRoom.java
More file actions
81 lines (63 loc) · 1.5 KB
/
Copy pathRoom.java
File metadata and controls
81 lines (63 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package com.ciscospark;
import java.util.Date;
/**
* Copyright (c) 2015 Cisco Systems, Inc. See LICENSE file.
*/
public class Room {
private String id;
private String title;
private String teamId;
private Boolean isLocked;
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;
}
public void setTitle(String title) {
this.title = title;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getTeamId() {
return teamId;
}
public void setTeamId(String teamId) {
this.teamId = teamId;
}
public Boolean getIsLocked() {
return isLocked;
}
public void setIsLocked(Boolean isLocked) {
this.isLocked = isLocked;
}
public Date getCreated() {
return created;
}
public void setCreated(Date created) {
this.created = created;
}
public Date getLastActivity() {
return lastActivity;
}
public void setLastActivity(Date lastActivity) {
this.lastActivity = lastActivity;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}