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
Jul 20, 2019
by
Parichay Barpanda
Committed by
Greg Messner
Jul 20, 2019
Browse files
Fixed typo on variable name (#413) (#414)
parent
ab866090
Changes
4
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/systemhooks/AbstractSystemHookEvent.java
View file @
8dc9a96f
...
@@ -5,7 +5,7 @@ import com.fasterxml.jackson.annotation.JsonIgnore;
...
@@ -5,7 +5,7 @@ import com.fasterxml.jackson.annotation.JsonIgnore;
public
abstract
class
AbstractSystemHookEvent
implements
SystemHookEvent
{
public
abstract
class
AbstractSystemHookEvent
implements
SystemHookEvent
{
private
String
requestUrl
;
private
String
requestUrl
;
private
String
requestQue
s
ryString
;
private
String
requestQueryString
;
private
String
requestSecretToken
;
private
String
requestSecretToken
;
@Override
@Override
...
@@ -20,14 +20,14 @@ public abstract class AbstractSystemHookEvent implements SystemHookEvent {
...
@@ -20,14 +20,14 @@ public abstract class AbstractSystemHookEvent implements SystemHookEvent {
}
}
@Override
@Override
public
void
setRequestQueryString
(
String
requestQue
s
ryString
)
{
public
void
setRequestQueryString
(
String
requestQueryString
)
{
this
.
requestQue
s
ryString
=
requestQue
s
ryString
;
this
.
requestQueryString
=
requestQueryString
;
}
}
@Override
@Override
@JsonIgnore
@JsonIgnore
public
String
getRequestQueryString
()
{
public
String
getRequestQueryString
()
{
return
(
requestQue
s
ryString
);
return
(
requestQueryString
);
}
}
@Override
@Override
...
...
src/main/java/org/gitlab4j/api/systemhooks/SystemHookEvent.java
View file @
8dc9a96f
...
@@ -38,7 +38,7 @@ public interface SystemHookEvent {
...
@@ -38,7 +38,7 @@ public interface SystemHookEvent {
void
setRequestUrl
(
String
requestUrl
);
void
setRequestUrl
(
String
requestUrl
);
@JsonIgnore
String
getRequestUrl
();
@JsonIgnore
String
getRequestUrl
();
void
setRequestQueryString
(
String
requestQue
s
ryString
);
void
setRequestQueryString
(
String
requestQueryString
);
@JsonIgnore
String
getRequestQueryString
();
@JsonIgnore
String
getRequestQueryString
();
void
setRequestSecretToken
(
String
requestSecretToken
);
void
setRequestSecretToken
(
String
requestSecretToken
);
...
...
src/main/java/org/gitlab4j/api/webhook/AbstractEvent.java
View file @
8dc9a96f
...
@@ -5,7 +5,7 @@ import com.fasterxml.jackson.annotation.JsonIgnore;
...
@@ -5,7 +5,7 @@ import com.fasterxml.jackson.annotation.JsonIgnore;
public
abstract
class
AbstractEvent
implements
Event
{
public
abstract
class
AbstractEvent
implements
Event
{
private
String
requestUrl
;
private
String
requestUrl
;
private
String
requestQue
s
ryString
;
private
String
requestQueryString
;
private
String
secretToken
;
private
String
secretToken
;
@Override
@Override
...
@@ -20,14 +20,14 @@ public abstract class AbstractEvent implements Event {
...
@@ -20,14 +20,14 @@ public abstract class AbstractEvent implements Event {
}
}
@Override
@Override
public
void
setRequestQueryString
(
String
requestQue
s
ryString
)
{
public
void
setRequestQueryString
(
String
requestQueryString
)
{
this
.
requestQue
s
ryString
=
requestQue
s
ryString
;
this
.
requestQueryString
=
requestQueryString
;
}
}
@Override
@Override
@JsonIgnore
@JsonIgnore
public
String
getRequestQueryString
()
{
public
String
getRequestQueryString
()
{
return
(
requestQue
s
ryString
);
return
(
requestQueryString
);
}
}
@Override
@Override
...
...
src/main/java/org/gitlab4j/api/webhook/AbstractPushEvent.java
View file @
8dc9a96f
...
@@ -25,7 +25,7 @@ public abstract class AbstractPushEvent {
...
@@ -25,7 +25,7 @@ public abstract class AbstractPushEvent {
private
Integer
totalCommitsCount
;
private
Integer
totalCommitsCount
;
private
String
requestUrl
;
private
String
requestUrl
;
private
String
requestQue
s
ryString
;
private
String
requestQueryString
;
private
String
requestSecretToken
;
private
String
requestSecretToken
;
public
String
getEventName
()
{
public
String
getEventName
()
{
...
@@ -149,13 +149,13 @@ public abstract class AbstractPushEvent {
...
@@ -149,13 +149,13 @@ public abstract class AbstractPushEvent {
return
(
requestUrl
);
return
(
requestUrl
);
}
}
public
void
setRequestQueryString
(
String
requestQue
s
ryString
)
{
public
void
setRequestQueryString
(
String
requestQueryString
)
{
this
.
requestQue
s
ryString
=
requestQue
s
ryString
;
this
.
requestQueryString
=
requestQueryString
;
}
}
@JsonIgnore
@JsonIgnore
public
String
getRequestQueryString
()
{
public
String
getRequestQueryString
()
{
return
(
requestQue
s
ryString
);
return
(
requestQueryString
);
}
}
...
@@ -191,4 +191,4 @@ public abstract class AbstractPushEvent {
...
@@ -191,4 +191,4 @@ public abstract class AbstractPushEvent {
}
}
private
static
final
String
REFS_HEADS
=
"refs/heads/"
;
private
static
final
String
REFS_HEADS
=
"refs/heads/"
;
}
}
\ No newline at end of file
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