PersonalizationData.Builder


public static final class PersonalizationData.Builder
extends Object

java.lang.Object
   ↳ android.security.identity.PersonalizationData.Builder


A builder for PersonalizationData.

Summary

Public constructors

Builder()

Creates a new builder for a given namespace.

Public methods

PersonalizationData.Builder addAccessControlProfile(AccessControlProfile profile)

Adds a new access control profile to the builder.

PersonalizationData build()

Creates a new PersonalizationData with all the entries added to the builder.

PersonalizationData.Builder putEntry(String namespace, String name, Collection<AccessControlProfileId> accessControlProfileIds, byte[] value)

Adds a new entry to the builder.

Inherited methods

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

Public constructors

Builder

Added in API level 30
public Builder ()

Creates a new builder for a given namespace.

Public methods

addAccessControlProfile

Added in API level 30
public PersonalizationData.Builder addAccessControlProfile (AccessControlProfile profile)

Adds a new access control profile to the builder.

Parameters
profile AccessControlProfile: The access control profile. This value cannot be null.

Returns
PersonalizationData.Builder The builder. This value cannot be null.

build

Added in API level 30
public PersonalizationData build ()

Creates a new PersonalizationData with all the entries added to the builder.

Returns
PersonalizationData A new PersonalizationData instance. This value cannot be null.

putEntry

Added in API level 30
public PersonalizationData.Builder putEntry (String namespace, 
                String name, 
                Collection<AccessControlProfileId> accessControlProfileIds, 
                byte[] value)

Adds a new entry to the builder.

Parameters
namespace String: The namespace to use, e.g. org.iso.18013-5.2019. This value cannot be null.

name String: The name of the entry, e.g. height. This value cannot be null.

accessControlProfileIds Collection: A set of access control profiles to use. This value cannot be null.

value byte: The value to add, in CBOR encoding. This value cannot be null.

Returns
PersonalizationData.Builder The builder. This value cannot be null.