Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
ffds-smart-harvester
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
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
EOSC-Pillar
FFDS
ffds-smart-harvester
Merge requests
!5
Add example property in openApiResponseContent
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add example property in openApiResponseContent
describe_repository_api
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Baptiste Toulemonde
requested to merge
describe_repository_api
into
master
4 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Viewing commit
d56ef34d
Show latest version
1 file
+
5
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
d56ef34d
Add example property in openApiResponseContent
· d56ef34d
Charly Maeder
authored
4 years ago
src/main/java/com/smartharvester/model/openapi/OpenApiResponseContent.java
+
5
−
5
Options
@@ -2,14 +2,14 @@ package com.smartharvester.model.openapi;
public
class
OpenApiResponseContent
{
OpenApiMediaType
schema
;
String
example
;
public
OpenApiMediaType
getSchema
()
{
return
schema
;
public
String
getExample
()
{
return
this
.
example
;
}
public
void
set
Schema
(
OpenApiMediaType
schema
)
{
this
.
schema
=
schema
;
public
void
set
Exemple
(
String
example
)
{
this
.
example
=
example
;
}
}
Loading