All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.nemerosa.ontrack.model.security.AccountGroupContributor.kt Maven / Gradle / Ivy

There is a newer version: 4.4.5
Show newest version
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