Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
org.etsi.osl.bugzilla
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OSL
code
org.etsi.osl.bugzilla
Merge requests
!3
Initial commit
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Initial commit
cherry-pick-2790fae9
into
main
Overview
0
Commits
1
Pipelines
0
Changes
22
Merged
tranoris
requested to merge
cherry-pick-2790fae9
into
main
1 year ago
Overview
0
Commits
1
Pipelines
0
Changes
22
Expand
(cherry picked from commit
2790fae9
)
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
cd548872
1 commit,
1 year ago
22 files
+
3771
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
22
Search (e.g. *.vue) (Ctrl+P)
src/main/java/org/etsi/osl/bugzilla/model/AssignedToDetail.java
0 → 100644
+
102
−
0
Options
/*-
* ========================LICENSE_START=================================
* org.etsi.osl.bugzilla
* %%
* Copyright (C) 2019 openslice.io
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* =========================LICENSE_END==================================
*/
package
org.etsi.osl.bugzilla.model
;
import
java.util.HashMap
;
import
java.util.Map
;
import
com.fasterxml.jackson.annotation.JsonAnyGetter
;
import
com.fasterxml.jackson.annotation.JsonAnySetter
;
import
com.fasterxml.jackson.annotation.JsonIgnore
;
import
com.fasterxml.jackson.annotation.JsonInclude
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
import
com.fasterxml.jackson.annotation.JsonPropertyOrder
;
/**
* @author ctranoris
*
*/
@JsonInclude
(
JsonInclude
.
Include
.
NON_NULL
)
public
class
AssignedToDetail
{
@JsonProperty
(
"email"
)
private
String
email
;
@JsonProperty
(
"id"
)
private
Integer
id
;
@JsonProperty
(
"name"
)
private
String
name
;
@JsonProperty
(
"real_name"
)
private
String
realName
;
@JsonIgnore
private
Map
<
String
,
Object
>
additionalProperties
=
new
HashMap
<
String
,
Object
>();
@JsonProperty
(
"email"
)
public
String
getEmail
()
{
return
email
;
}
@JsonProperty
(
"email"
)
public
void
setEmail
(
String
email
)
{
this
.
email
=
email
;
}
@JsonProperty
(
"id"
)
public
Integer
getId
()
{
return
id
;
}
@JsonProperty
(
"id"
)
public
void
setId
(
Integer
id
)
{
this
.
id
=
id
;
}
@JsonProperty
(
"name"
)
public
String
getName
()
{
return
name
;
}
@JsonProperty
(
"name"
)
public
void
setName
(
String
name
)
{
this
.
name
=
name
;
}
@JsonProperty
(
"real_name"
)
public
String
getRealName
()
{
return
realName
;
}
@JsonProperty
(
"real_name"
)
public
void
setRealName
(
String
realName
)
{
this
.
realName
=
realName
;
}
@JsonAnyGetter
public
Map
<
String
,
Object
>
getAdditionalProperties
()
{
return
this
.
additionalProperties
;
}
@JsonAnySetter
public
void
setAdditionalProperty
(
String
name
,
Object
value
)
{
this
.
additionalProperties
.
put
(
name
,
value
);
}
}
Loading