FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
webex-java-sdk/src/main/java/com/ciscospark/Webhook.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
/
Webhook.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
82 lines (64 loc) · 1.46 KB
Breadcrumbs
webex-java-sdk
/
src
/
main
/
java
/
com
/
ciscospark
/
Webhook.java
Copy path
File metadata and controls
82 lines (64 loc) · 1.46 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
82
package
com
.
ciscospark
;
import
java
.
net
.
URI
;
import
java
.
util
.
Date
;
/**
* Copyright (c) 2015 Cisco Systems, Inc. See LICENSE file.
*/
public
class
Webhook
{
private
String
id
;
private
String
name
;
private
String
resource
;
private
String
event
;
private
String
filter
;
private
URI
targetUrl
;
private
String
secret
;
private
Date
created
;
public
String
getId
() {
return
id
;
}
public
void
setId
(
String
id
) {
this
.
id
=
id
;
}
public
String
getName
() {
return
name
;
}
public
void
setName
(
String
name
) {
this
.
name
=
name
;
}
public
String
getResource
() {
return
resource
;
}
public
void
setResource
(
String
resource
) {
this
.
resource
=
resource
;
}
public
String
getEvent
() {
return
event
;
}
public
void
setEvent
(
String
event
) {
this
.
event
=
event
;
}
public
String
getFilter
() {
return
filter
;
}
public
void
setFilter
(
String
filter
) {
this
.
filter
=
filter
;
}
public
URI
getTargetUrl
() {
return
targetUrl
;
}
public
void
setTargetUrl
(
URI
targetUrl
) {
this
.
targetUrl
=
targetUrl
;
}
public
String
getSecret
() {
return
secret
;
}
public
void
setSecret
(
String
secret
) {
this
.
secret
=
secret
;
}
public
Date
getCreated
() {
return
created
;
}
public
void
setCreated
(
Date
created
) {
this
.
created
=
created
;
}
}
Back
|
FazBrowse Home
|
New Git URL