public AuthKey updateAuth(Auth auth, CommonRequestArgs cra) {
UpdateResult ur = update(PROC_UPDATE_AUTH, updateAuthSql, auth, cra);
if (ur.numberOfRowAffected == 0) {
ApplicationException.exception(DAOMessageID.UPDATE_FAILURE.getMessage());
}
return new AuthKey(auth.getAuthId(), auth.getRevNo() + 1);
}