Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nile-common
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
nile
streams
Libraries
nile-common
Merge requests
!21
1.3.0: Implement Conversion type, JsonArraySerde and DLQ support in AbstractStream base class
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
1.3.0: Implement Conversion type, JsonArraySerde and DLQ support in AbstractStream base class
jsonarrayserde
into
qa
Overview
0
Commits
2
Pipelines
7
Changes
9
Open
Ignacio Coterillo Coz
requested to merge
jsonarrayserde
into
qa
2 months ago
Overview
0
Commits
2
Pipelines
7
Changes
9
Expand
0
0
Merge request reports
Compare
qa
version 6
ef613baa
2 months ago
version 5
b6040ce3
2 months ago
version 4
f70a074e
2 months ago
version 3
b021fc17
2 months ago
version 2
0a46cc1c
2 months ago
version 1
730f7209
2 months ago
qa (HEAD)
and
latest version
latest version
42de08ab
2 commits,
2 months ago
version 6
ef613baa
2 commits,
2 months ago
version 5
b6040ce3
2 commits,
2 months ago
version 4
f70a074e
2 commits,
2 months ago
version 3
b021fc17
2 commits,
2 months ago
version 2
0a46cc1c
1 commit,
2 months ago
version 1
730f7209
1 commit,
2 months ago
9 files
+
119
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
Search (e.g. *.vue) (Ctrl+P)
src/main/java/ch/cern/nile/common/configuration/properties/ConversionProperties.java
0 → 100644
+
15
−
0
Options
package
ch.cern.nile.common.configuration.properties
;
import
lombok.Getter
;
/**
* Enum representing properties specific to conversion clients.
*/
@Getter
public
enum
ConversionProperties
implements
PropertyEnum
{
CLOCK_CHANNEL_NAME
(
"clock.channel.name"
);
private
final
String
value
;
ConversionProperties
(
final
String
value
)
{
this
.
value
=
value
;
}
}
Loading