FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
webex-java-sdk/src/main/java/com/ciscospark/Room.java at master · webex/webex-java-sdk · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
webex
/
webex-java-sdk
Public
Notifications
You must be signed in to change notification settings
Fork
75
Star
70
Code
Pull requests
3
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
webex-java-sdk
/
src
/
main
/
java
/
com
/
ciscospark
/
Room.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
81 lines (63 loc) · 1.5 KB
Breadcrumbs
webex-java-sdk
/
src
/
main
/
java
/
com
/
ciscospark
/
Room.java
Copy path
File metadata and controls
81 lines (63 loc) · 1.5 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
;
}
}
Back
|
FazBrowse Home
|
New Git URL