FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
webex-java-sdk/src/main/java/com/ciscospark/Organization.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
/
Organization.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
38 lines (28 loc) · 664 Bytes
Breadcrumbs
webex-java-sdk
/
src
/
main
/
java
/
com
/
ciscospark
/
Organization.java
Copy path
File metadata and controls
38 lines (28 loc) · 664 Bytes
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
package
com
.
ciscospark
;
import
java
.
util
.
Date
;
/**
* Copyright (c) 2016 Cisco Systems, Inc. See LICENSE file.
*/
public
class
Organization
{
private
String
id
;
private
String
displayName
;
private
Date
created
;
public
String
getId
() {
return
id
;
}
public
void
setId
(
String
id
) {
this
.
id
=
id
;
}
public
String
getDisplayName
() {
return
displayName
;
}
public
void
setDisplayName
(
String
displayName
) {
this
.
displayName
=
displayName
;
}
public
Date
getCreated
() {
return
created
;
}
public
void
setCreated
(
Date
created
) {
this
.
created
=
created
;
}
}
Back
|
FazBrowse Home
|
New Git URL