clearAttributes

fun clearAttributes(vararg keys: String): Identity.Builder

Clears the value of the specified attributes effectively setting them to null.

Example:

clearAttributes("key1", "key2", "key2", "... as many keys as desired")

Return

The builder instance.

Parameters

keys

Vararg of keys of the entries to clear. These are optional.


fun clearAttributes(keys: List<String>): Identity.Builder

Clears the value of the specified attributes effectively setting them to null.

Example:

clearAttributes(listOf("key1", "key2", "key2"))

Return

The builder instance.