net.nemerosa.ontrack.model.security.AccountGroupContributor.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-model Show documentation
Show all versions of ontrack-model Show documentation
Ontrack module: ontrack-model
package net.nemerosa.ontrack.model.security
import org.springframework.stereotype.Component
/**
* Contributes a list of groups to an account.
*/
interface AccountGroupContributor {
/**
* Collects the list of groups for this account
*
* @param account Account
* @return List of groups
*/
fun collectGroups(account: Account): Collection
}
/**
* NOP contributor
*/
@Component
class NOPAccountGroupContributor : AccountGroupContributor {
override fun collectGroups(account: Account): Collection = emptySet()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy