Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Git ECA API
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
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Foundation
Software Development
APIs
Git ECA API
Merge requests
!221
feat: adding email notification when certian revalidation threshold is met
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
feat: adding email notification when certian revalidation threshold is met
gnugomez/main/149
into
main
Overview
12
Commits
10
Pipelines
6
Changes
7
Merged
Jordi Gómez
requested to merge
gnugomez/main/149
into
main
7 months ago
Overview
8
Commits
10
Pipelines
6
Changes
7
Expand
feat: adding email notification when certian revalidation threshold is met
Resolves
#149 (closed)
Edited
7 months ago
by
Jordi Gómez
0
0
Merge request reports
Compare
main
version 12
3260c562
6 months ago
version 11
530e453a
7 months ago
version 10
d7f7846b
7 months ago
version 9
b5d01fc6
7 months ago
version 8
f45eff79
7 months ago
version 7
6e5b8e44
7 months ago
version 6
d7d9c4a1
7 months ago
version 5
de9b5ff9
7 months ago
version 4
4c347135
7 months ago
version 3
adf26a73
7 months ago
version 2
c95fa812
7 months ago
version 1
0e6b2263
7 months ago
main (base)
and
version 11
latest version
92d5e711
10 commits,
6 months ago
version 12
3260c562
10 commits,
6 months ago
version 11
530e453a
9 commits,
7 months ago
version 10
d7f7846b
9 commits,
7 months ago
version 9
b5d01fc6
9 commits,
7 months ago
version 8
f45eff79
8 commits,
7 months ago
version 7
6e5b8e44
8 commits,
7 months ago
version 6
d7d9c4a1
7 commits,
7 months ago
version 5
de9b5ff9
6 commits,
7 months ago
version 4
4c347135
5 commits,
7 months ago
version 3
adf26a73
1 commit,
7 months ago
version 2
c95fa812
1 commit,
7 months ago
version 1
0e6b2263
1 commit,
7 months ago
7 files
+
237
−
28
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
src/main/java/org/eclipsefoundation/git/eca/config/MailerConfig.java
0 → 100644
+
44
−
0
Options
/**
* Copyright (c) 2025 Eclipse Foundation
*
* This program and the accompanying materials are made available under the terms of the Eclipse
* Public License 2.0 which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Author: Jordi Gómez <jordi.gomez@eclipse-foundation.org>
*
* SPDX-License-Identifier: EPL-2.0
*/
package
org.eclipsefoundation.git.eca.config
;
import
java.util.List
;
import
java.util.Optional
;
import
io.smallrye.config.ConfigMapping
;
/**
* Represents configuration for the default mailer service.
*
* @author Martin Lowe
*
*/
@ConfigMapping
(
prefix
=
"eclipse.mailer"
)
public
interface
MailerConfig
{
public
RevalidationAlert
revalidationAlert
();
/**
* This interface defines the contract for specifying recipients and message configuration when sending revalidation alerts within the
* ECA validation process.
*/
public
interface
RevalidationAlert
{
public
List
<
String
>
to
();
public
MessageConfiguration
authorMessage
();
}
public
interface
MessageConfiguration
{
public
Optional
<
String
>
replyTo
();
public
Optional
<
List
<
String
>>
bcc
();
}
}
Loading