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
604f1e75
Commit
604f1e75
authored
May 04, 2019
by
Greg Messner
Browse files
Initial commit. (#339).
parent
e7c70b9e
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/models/Email.java
0 → 100644
View file @
604f1e75
package
org.gitlab4j.api.models
;
public
class
Email
{
private
Long
id
;
private
String
email
;
public
Long
getId
()
{
return
id
;
}
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
String
getEmail
()
{
return
email
;
}
public
void
setEmail
(
String
email
)
{
this
.
email
=
email
;
}
}
src/test/resources/org/gitlab4j/api/emails.json
0 → 100644
View file @
604f1e75
[
{
"id"
:
1
,
"email"
:
"email@example.com"
},
{
"id"
:
3
,
"email"
:
"email2@example.com"
}
]
\ 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