[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-09-03 UTC."],[[["\u003cp\u003eThe \u003ccode\u003eBounceNotificationParser\u003c/code\u003e class is designed to interpret incoming HTTP requests and extract bounce notification details from them.\u003c/p\u003e\n"],["\u003cp\u003eThis class inherits from \u003ccode\u003eHttpRequestParser\u003c/code\u003e, extending its functionality to handle bounce-specific data, while it is also a descendant of the \u003ccode\u003ejava.lang.Object\u003c/code\u003e class.\u003c/p\u003e\n"],["\u003cp\u003eIt includes a static \u003ccode\u003eparse\u003c/code\u003e method which takes an \u003ccode\u003eHttpServletRequest\u003c/code\u003e as input to process the POST data and return a \u003ccode\u003eBounceNotification\u003c/code\u003e object.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eparse\u003c/code\u003e method can throw an \u003ccode\u003eIOException\u003c/code\u003e or \u003ccode\u003eMessagingException\u003c/code\u003e during the processing of the request data.\u003c/p\u003e\n"],["\u003cp\u003eThe class itself has a constructor, \u003ccode\u003eBounceNotificationParser()\u003c/code\u003e, which allows the creation of new instances.\u003c/p\u003e\n"]]],[],null,["# Class BounceNotificationParser (2.0.0)\n\n public final class BounceNotificationParser extends HttpRequestParser\n\nThe `BounceNotificationParser` parses an incoming HTTP request into\na description of a bounce notification. \n\nInheritance\n-----------\n\n[java.lang.Object](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html) \\\u003e [HttpRequestParser](/appengine/docs/standard/java-gen2/reference/services/bundled/latest/com.google.appengine.api.utils.ee10.HttpRequestParser) \\\u003e BounceNotificationParser \n\nInherited Members\n-----------------\n\n[HttpRequestParser.getFieldName(BodyPart)](/appengine/docs/standard/java-gen2/reference/services/bundled/latest/com.google.appengine.api.utils.ee10.HttpRequestParser#com_google_appengine_api_utils_ee10_HttpRequestParser_getFieldName_javax_mail_BodyPart_) \n[HttpRequestParser.getTextContent(BodyPart)](/appengine/docs/standard/java-gen2/reference/services/bundled/latest/com.google.appengine.api.utils.ee10.HttpRequestParser#com_google_appengine_api_utils_ee10_HttpRequestParser_getTextContent_javax_mail_BodyPart_) \n[HttpRequestParser.parseMultipartRequest(HttpServletRequest)](/appengine/docs/standard/java-gen2/reference/services/bundled/latest/com.google.appengine.api.utils.ee10.HttpRequestParser#com_google_appengine_api_utils_ee10_HttpRequestParser_parseMultipartRequest_jakarta_servlet_http_HttpServletRequest_) \n[Object.clone()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#clone--) \n[Object.equals(Object)](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#equals-java.lang.Object-) \n[Object.finalize()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#finalize--) \n[Object.getClass()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#getClass--) \n[Object.hashCode()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#hashCode--) \n[Object.notify()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#notify--) \n[Object.notifyAll()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#notifyAll--) \n[Object.toString()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#toString--) \n[Object.wait()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#wait--) \n[Object.wait(long)](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#wait-long-) \n[Object.wait(long,int)](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#wait-long-int-)\n\nStatic Methods\n--------------\n\n### parse(HttpServletRequest request)\n\n public static BounceNotification parse(HttpServletRequest request)\n\nParse the POST data of the given request to get details about the bounce notification.\n\nConstructors\n------------\n\n### BounceNotificationParser()\n\n public BounceNotificationParser()"]]