Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
8dc9a96f
Commit
8dc9a96f
authored
5 years ago
by
Parichay Barpanda
Committed by
Greg Messner
5 years ago
Browse files
Options
Download
Email Patches
Plain Diff
Fixed typo on variable name (#413) (#414)
parent
ab866090
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/main/java/org/gitlab4j/api/systemhooks/AbstractSystemHookEvent.java
+4
-4
...org/gitlab4j/api/systemhooks/AbstractSystemHookEvent.java
src/main/java/org/gitlab4j/api/systemhooks/SystemHookEvent.java
+1
-1
...in/java/org/gitlab4j/api/systemhooks/SystemHookEvent.java
src/main/java/org/gitlab4j/api/webhook/AbstractEvent.java
+4
-4
src/main/java/org/gitlab4j/api/webhook/AbstractEvent.java
src/main/java/org/gitlab4j/api/webhook/AbstractPushEvent.java
+5
-5
...main/java/org/gitlab4j/api/webhook/AbstractPushEvent.java
with
14 additions
and
14 deletions
+14
-14
src/main/java/org/gitlab4j/api/systemhooks/AbstractSystemHookEvent.java
+
4
-
4
View file @
8dc9a96f
...
...
@@ -5,7 +5,7 @@ import com.fasterxml.jackson.annotation.JsonIgnore;
public
abstract
class
AbstractSystemHookEvent
implements
SystemHookEvent
{
private
String
requestUrl
;
private
String
requestQue
s
ryString
;
private
String
requestQueryString
;
private
String
requestSecretToken
;
@Override
...
...
@@ -20,14 +20,14 @@ public abstract class AbstractSystemHookEvent implements SystemHookEvent {
}
@Override
public
void
setRequestQueryString
(
String
requestQue
s
ryString
)
{
this
.
requestQue
s
ryString
=
requestQue
s
ryString
;
public
void
setRequestQueryString
(
String
requestQueryString
)
{
this
.
requestQueryString
=
requestQueryString
;
}
@Override
@JsonIgnore
public
String
getRequestQueryString
()
{
return
(
requestQue
s
ryString
);
return
(
requestQueryString
);
}
@Override
...
...
This diff is collapsed.
Click to expand it.
src/main/java/org/gitlab4j/api/systemhooks/SystemHookEvent.java
+
1
-
1
View file @
8dc9a96f
...
...
@@ -38,7 +38,7 @@ public interface SystemHookEvent {
void
setRequestUrl
(
String
requestUrl
);
@JsonIgnore
String
getRequestUrl
();
void
setRequestQueryString
(
String
requestQue
s
ryString
);
void
setRequestQueryString
(
String
requestQueryString
);
@JsonIgnore
String
getRequestQueryString
();
void
setRequestSecretToken
(
String
requestSecretToken
);
...
...
This diff is collapsed.
Click to expand it.
src/main/java/org/gitlab4j/api/webhook/AbstractEvent.java
+
4
-
4
View file @
8dc9a96f
...
...
@@ -5,7 +5,7 @@ import com.fasterxml.jackson.annotation.JsonIgnore;
public
abstract
class
AbstractEvent
implements
Event
{
private
String
requestUrl
;
private
String
requestQue
s
ryString
;
private
String
requestQueryString
;
private
String
secretToken
;
@Override
...
...
@@ -20,14 +20,14 @@ public abstract class AbstractEvent implements Event {
}
@Override
public
void
setRequestQueryString
(
String
requestQue
s
ryString
)
{
this
.
requestQue
s
ryString
=
requestQue
s
ryString
;
public
void
setRequestQueryString
(
String
requestQueryString
)
{
this
.
requestQueryString
=
requestQueryString
;
}
@Override
@JsonIgnore
public
String
getRequestQueryString
()
{
return
(
requestQue
s
ryString
);
return
(
requestQueryString
);
}
@Override
...
...
This diff is collapsed.
Click to expand it.
src/main/java/org/gitlab4j/api/webhook/AbstractPushEvent.java
+
5
-
5
View file @
8dc9a96f
...
...
@@ -25,7 +25,7 @@ public abstract class AbstractPushEvent {
private
Integer
totalCommitsCount
;
private
String
requestUrl
;
private
String
requestQue
s
ryString
;
private
String
requestQueryString
;
private
String
requestSecretToken
;
public
String
getEventName
()
{
...
...
@@ -149,13 +149,13 @@ public abstract class AbstractPushEvent {
return
(
requestUrl
);
}
public
void
setRequestQueryString
(
String
requestQue
s
ryString
)
{
this
.
requestQue
s
ryString
=
requestQue
s
ryString
;
public
void
setRequestQueryString
(
String
requestQueryString
)
{
this
.
requestQueryString
=
requestQueryString
;
}
@JsonIgnore
public
String
getRequestQueryString
()
{
return
(
requestQue
s
ryString
);
return
(
requestQueryString
);
}
...
...
@@ -191,4 +191,4 @@ public abstract class AbstractPushEvent {
}
private
static
final
String
REFS_HEADS
=
"refs/heads/"
;
}
\ No newline at end of file
}
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment