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
6c46720e
Unverified
Commit
6c46720e
authored
May 16, 2020
by
Vasil
Committed by
GitHub
May 16, 2020
Browse files
Added variables property to PipelineSchedule class (#573)
Co-authored-by:
Vasil Hrytskevich
<
vhrytskevich@eisgroup.com
>
parent
9981843f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/models/PipelineSchedule.java
View file @
6c46720e
package
org.gitlab4j.api.models
;
import
java.util.Date
;
import
java.util.List
;
import
org.gitlab4j.api.utils.JacksonJson
;
...
...
@@ -17,6 +18,7 @@ public class PipelineSchedule {
private
Boolean
active
;
private
Pipeline
lastPipeline
;
private
Owner
owner
;
private
List
<
Variable
>
variables
;
public
Integer
getId
()
{
return
id
;
...
...
@@ -106,6 +108,14 @@ public class PipelineSchedule {
this
.
owner
=
owner
;
}
public
List
<
Variable
>
getVariables
()
{
return
variables
;
}
public
void
setVariables
(
List
<
Variable
>
variables
)
{
this
.
variables
=
variables
;
}
@Override
public
String
toString
()
{
return
(
JacksonJson
.
toJsonString
(
this
));
...
...
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