Identities

data class Identities constructor(val forUser: User? = null, val runAs: User? = null)

Identities associated with an agent process.

Parameters

forUser

the user for whom the process is running. Can be null.

runAs

the user under which the process is running. Can be null.

Constructors

Link copied to clipboard
constructor(forUser: User? = null, runAs: User? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val forUser: User? = null
Link copied to clipboard
val runAs: User? = null

Functions

Link copied to clipboard
fun withForUser(forUser: User?): Identities
Link copied to clipboard
fun withRunAs(runAs: User?): Identities