CommissioningService.CommissioningError

@Retention(value = RetentionPolicy.SOURCE)
@IntDef(value = [CommissioningError.OTHER, CommissioningError.DEVICE_UNREACHABLE, CommissioningError.ATTESTATION_FAILED])
annotation CommissioningService.CommissioningError


Enumeration of valid error code values for sendCommissioningError

Summary

Constants

const Int

Indicates a failure of device attestation.

const Int

Indicates a failure occurred because the device could not be reached on the network.

const Int
OTHER = 1000

Indicates a failure that cannot be described by a more specific error code.

Constants

ATTESTATION_FAILED

const val ATTESTATION_FAILED = 1002: Int

Indicates a failure of device attestation.

DEVICE_UNREACHABLE

const val DEVICE_UNREACHABLE = 1001: Int

Indicates a failure occurred because the device could not be reached on the network.

OTHER

const val OTHER = 1000: Int

Indicates a failure that cannot be described by a more specific error code.