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
45290320
Commit
45290320
authored
Jun 09, 2017
by
Greg Messner
Browse files
Added tag field.
parent
484cf71e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/models/Pipeline.java
View file @
45290320
...
...
@@ -15,6 +15,7 @@ public class Pipeline {
private
String
ref
;
private
String
sha
;
private
String
beforeSha
;
private
Boolean
tag
;
private
String
yamlErrors
;
private
User
user
;
private
Date
createdAt
;
...
...
@@ -24,116 +25,124 @@ public class Pipeline {
private
Date
committed_at
;
private
String
coverage
;
private
Integer
duration
;
public
Integer
getId
()
{
return
id
;
}
public
void
setId
(
Integer
id
)
{
this
.
id
=
id
;
}
public
Integer
getId
(
)
{
return
id
;
}
public
String
getStatus
()
{
return
status
;
}
public
void
setStatus
(
String
status
)
{
this
.
status
=
status
;
}
public
String
getRef
()
{
return
ref
;
}
public
void
setRef
(
String
ref
)
{
this
.
ref
=
ref
;
}
public
String
getSha
()
{
return
sha
;
}
public
void
setSha
(
String
sha
)
{
this
.
sha
=
sha
;
}
public
String
getBeforeSha
()
{
return
beforeSha
;
}
public
void
setBeforeSha
(
String
beforeSha
)
{
this
.
beforeSha
=
beforeSha
;
}
public
String
getYamlErrors
()
{
return
yamlErrors
;
}
public
void
setYamlErrors
(
String
yamlErrors
)
{
this
.
yamlErrors
=
yamlErrors
;
}
public
User
getUser
()
{
return
user
;
}
public
void
setUser
(
User
user
)
{
this
.
user
=
user
;
}
public
Date
getCreatedAt
()
{
return
createdAt
;
}
public
void
setCreatedAt
(
Date
createdAt
)
{
this
.
createdAt
=
createdAt
;
}
public
Date
getUpdated_at
()
{
return
updated_at
;
}
public
void
setUpdated_at
(
Date
updated_at
)
{
this
.
updated_at
=
updated_at
;
}
public
Date
getStarted_at
()
{
return
started_at
;
}
public
void
setStarted_at
(
Date
started_at
)
{
this
.
started_at
=
started_at
;
}
public
Date
getFinished_at
()
{
return
finished_at
;
}
public
void
setFinished_at
(
Date
finished_at
)
{
this
.
finished_at
=
finished_at
;
}
public
Date
getCommitted_at
()
{
return
committed_at
;
}
public
void
setCommitted_at
(
Date
committed_at
)
{
this
.
committed_at
=
committed_at
;
}
public
String
getCoverage
()
{
return
coverage
;
}
public
void
setCoverage
(
String
coverage
)
{
this
.
coverage
=
coverage
;
}
public
void
setId
(
Integer
id
)
{
this
.
id
=
id
;
}
public
Integer
getDuration
()
{
return
duration
;
}
public
String
getStatus
()
{
return
status
;
}
public
void
setDuration
(
Integer
duration
)
{
this
.
duration
=
duration
;
}
public
void
setStatus
(
String
status
)
{
this
.
status
=
status
;
}
public
String
getRef
()
{
return
ref
;
}
public
void
setRef
(
String
ref
)
{
this
.
ref
=
ref
;
}
public
String
getSha
()
{
return
sha
;
}
public
void
setSha
(
String
sha
)
{
this
.
sha
=
sha
;
}
public
String
getBeforeSha
()
{
return
beforeSha
;
}
public
void
setBeforeSha
(
String
beforeSha
)
{
this
.
beforeSha
=
beforeSha
;
}
public
Boolean
getTag
()
{
return
tag
;
}
public
void
setTag
(
Boolean
tag
)
{
this
.
tag
=
tag
;
}
public
String
getYamlErrors
()
{
return
yamlErrors
;
}
public
void
setYamlErrors
(
String
yamlErrors
)
{
this
.
yamlErrors
=
yamlErrors
;
}
public
User
getUser
()
{
return
user
;
}
public
void
setUser
(
User
user
)
{
this
.
user
=
user
;
}
public
Date
getCreatedAt
()
{
return
createdAt
;
}
public
void
setCreatedAt
(
Date
createdAt
)
{
this
.
createdAt
=
createdAt
;
}
public
Date
getUpdated_at
()
{
return
updated_at
;
}
public
void
setUpdated_at
(
Date
updated_at
)
{
this
.
updated_at
=
updated_at
;
}
public
Date
getStarted_at
()
{
return
started_at
;
}
public
void
setStarted_at
(
Date
started_at
)
{
this
.
started_at
=
started_at
;
}
public
Date
getFinished_at
()
{
return
finished_at
;
}
public
void
setFinished_at
(
Date
finished_at
)
{
this
.
finished_at
=
finished_at
;
}
public
Date
getCommitted_at
()
{
return
committed_at
;
}
public
void
setCommitted_at
(
Date
committed_at
)
{
this
.
committed_at
=
committed_at
;
}
public
String
getCoverage
()
{
return
coverage
;
}
public
void
setCoverage
(
String
coverage
)
{
this
.
coverage
=
coverage
;
}
public
Integer
getDuration
()
{
return
duration
;
}
public
void
setDuration
(
Integer
duration
)
{
this
.
duration
=
duration
;
}
}
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