Interface PendingOutOfBandOperationsResult
public interface PendingOutOfBandOperationsResult
The object with the non-redeemed out-of-band operations returned
by nevisFIDO in the Get Device Out-of-Band Operations
service.
If the pending operations in a given server could be found, but they failed for
another server. The operations found will be returned by the operations()
method,
and the error will be returned by the errors()
method.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionerrors()
Returns the errors that occurred retrieving the pending out-of-band operations.Returns the out-of-band operations of the device that have not been redeemed, nor timed-out.
-
Method Details
-
operations
Set<PendingOutOfBandOperation> operations()Returns the out-of-band operations of the device that have not been redeemed, nor timed-out.- Returns:
- the out-of-band operations of the device that have not been redeemed
-
errors
Set<PendingOutOfBandOperationsError> errors()Returns the errors that occurred retrieving the pending out-of-band operations.- Returns:
- the errors that occurred retrieving the pending out-of-band operations.
-