locked constant

HttpStatus const locked

423 LOCKED.

The source or destination resource of a method is locked.

This response SHOULD contain an appropriate precondition or postcondition code, such as 'lock-token-submitted' or 'no-conflicting-lock'.

Implementation

static const HttpStatus locked = HttpStatus._(
  code: HttpStatusCode.locked,
  name: 'Locked',
  description: 'The source or destination resource of a method is locked.',
);