コード例 #1
0
 /**
  * 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();
 }
コード例 #2
0
ファイル: Approval.java プロジェクト: thekant/uaa
 @Override
 public String toString() {
   return String.format(
       "[%s, %s, %s, %s, %s, %s]",
       userId, scope, clientId, expiresAt, status.toString(), lastUpdatedAt);
 }