/**
  * The response submitted by a reviewer assigned to an approval action request.
  *
  * @param status The response submitted by a reviewer assigned to an approval action request.
  * @see ApprovalStatus
  */
 public void setStatus(ApprovalStatus status) {
   this.status = status.toString();
 }
Beispiel #2
0
 @Override
 public String toString() {
   return String.format(
       "[%s, %s, %s, %s, %s, %s]",
       userId, scope, clientId, expiresAt, status.toString(), lastUpdatedAt);
 }