392393394395396397398399
/** * @return true if this message requires authorization. */ public boolean hasAuth() { Authorize auth = getAuth(); return auth != null && auth.hasAuth(); }
409410411412413414415416417
p.check(); for (Thrown n: thrown) n.check(); Authorize auth = getAuth(); if (auth != null) auth.check( parent(), this ); }