<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0-google-v4) on Fri Oct 07 18:15:04 PDT 2011 --> <TITLE> FetchOptions </TITLE> <META NAME="date" CONTENT="2011-10-07"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../dev_javadoc.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="FetchOptions"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> PREV CLASS <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.Builder.html" title="class in com.google.appengine.api.urlfetch"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?com/google/appengine/api/urlfetch/FetchOptions.html" target="_top"><B>FRAMES</B></A> <A HREF="FetchOptions.html" target="_top"><B>NO FRAMES</B></A> <SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY: <A HREF="#nested_class_summary">NESTED</A> | <A HREF="#field_summary">FIELD</A> | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL: <A HREF="#field_detail">FIELD</A> | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> com.google.appengine.api.urlfetch</FONT> <BR> Class FetchOptions</H2> <PRE> java.lang.Object <IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><B>com.google.appengine.api.urlfetch.FetchOptions</B> </PRE> <DL> <DT><B>All Implemented Interfaces:</B> <DD>java.io.Serializable</DD> </DL> <HR> <DL> <DT><PRE>public final class <B>FetchOptions</B><DT>extends java.lang.Object<DT>implements java.io.Serializable</DL> </PRE> <P> Allows users to customize the behavior of <A HREF="../../../../../com/google/appengine/api/urlfetch/URLFetchService.html" title="interface in com.google.appengine.api.urlfetch"><CODE>URLFetchService</CODE></A> operations. <p> If <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html#allowTruncate"><CODE>allowTruncate</CODE></A> is called, <A HREF="../../../../../com/google/appengine/api/urlfetch/URLFetchService.html" title="interface in com.google.appengine.api.urlfetch"><CODE>URLFetchService</CODE></A> will truncate large responses and return them without error. <p> If (@link #disallowTruncate} is called, <A HREF="../../../../../com/google/appengine/api/urlfetch/ResponseTooLargeException.html" title="class in com.google.appengine.api.urlfetch"><CODE>ResponseTooLargeException</CODE></A> will be thrown if the response is too large. <p> If <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html#followRedirects"><CODE>followRedirects</CODE></A> is called the <A HREF="../../../../../com/google/appengine/api/urlfetch/URLFetchService.html" title="interface in com.google.appengine.api.urlfetch"><CODE>URLFetchService</CODE></A> operation will follow redirects. <p> If <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html#doNotFollowRedirects()"><CODE>doNotFollowRedirects()</CODE></A> is called the <A HREF="../../../../../com/google/appengine/api/urlfetch/URLFetchService.html" title="interface in com.google.appengine.api.urlfetch"><CODE>URLFetchService</CODE></A> operation will not follow redirects. <p> If <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html#validateCertificate()"><CODE>validateCertificate()</CODE></A> is called the <A HREF="../../../../../com/google/appengine/api/urlfetch/URLFetchService.html" title="interface in com.google.appengine.api.urlfetch"><CODE>URLFetchService</CODE></A> operation will, if using an HTTPS connection, validate the server's SSL certificate using the same CA-based algorithm as a typical browser. HTTP connections are unaffected by this option. <p> If <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html#doNotValidateCertificate()"><CODE>doNotValidateCertificate()</CODE></A> is called the <A HREF="../../../../../com/google/appengine/api/urlfetch/URLFetchService.html" title="interface in com.google.appengine.api.urlfetch"><CODE>URLFetchService</CODE></A> will not validate the server's SSL certificate in any fashion. <p> If neither <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html#validateCertificate()"><CODE>validateCertificate()</CODE></A> nor <CODE>#doNotValidateCertificates()</CODE> is called, then the underlying <code>URLFetchService</code> implementation determines what type of validation is performed. <p> Notes on usage:<br> The recommended way to instantiate a <code>FetchOptions</code> object is to statically import <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.Builder.html" title="class in com.google.appengine.api.urlfetch"><CODE>FetchOptions.Builder</CODE></A>.* and invoke a static creation method followed by an instance mutator (if needed): <blockquote> <pre> import static com.google.appengine.api.urlfetch.FetchOptions.Builder.*; ... URL url = getURLToFetch(); urlFetchService.fetch(new HTTPRequest(url, HTTPMethod.GET, allowTruncate())); urlFetchService.fetch(new HTTPRequest(url, HTTPMethod.GET, allowTruncate().doNotFollowRedirects())); </pre> </blockquote> <P> <P> <DL> <DT><B>See Also:</B><DD><A HREF="../../../../../serialized-form.html#com.google.appengine.api.urlfetch.FetchOptions">Serialized Form</A></DL> <HR> <P> <!-- ======== NESTED CLASS SUMMARY ======== --> <A NAME="nested_class_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Nested Class Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.Builder.html" title="class in com.google.appengine.api.urlfetch">FetchOptions.Builder</A></B></CODE> <BR> Contains static creation methods for <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html" title="class in com.google.appengine.api.urlfetch"><CODE>FetchOptions</CODE></A>.</TD> </TR> </TABLE> <!-- =========== FIELD SUMMARY =========== --> <A NAME="field_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Field Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static boolean</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html#DEFAULT_ALLOW_TRUNCATE">DEFAULT_ALLOW_TRUNCATE</A></B></CODE> <BR> </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static java.lang.Double</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html#DEFAULT_DEADLINE">DEFAULT_DEADLINE</A></B></CODE> <BR> The default deadline is defined externally.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static boolean</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html#DEFAULT_FOLLOW_REDIRECTS">DEFAULT_FOLLOW_REDIRECTS</A></B></CODE> <BR> </TD> </TR> </TABLE> <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Method Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE> <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html" title="class in com.google.appengine.api.urlfetch">FetchOptions</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html#allowTruncate()">allowTruncate</A></B>()</CODE> <BR> Enables response truncation.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE> <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html" title="class in com.google.appengine.api.urlfetch">FetchOptions</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html#disallowTruncate()">disallowTruncate</A></B>()</CODE> <BR> Disables response truncation.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE> <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html" title="class in com.google.appengine.api.urlfetch">FetchOptions</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html#doNotFollowRedirects()">doNotFollowRedirects</A></B>()</CODE> <BR> Disables following of redirects.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE> <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html" title="class in com.google.appengine.api.urlfetch">FetchOptions</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html#doNotValidateCertificate()">doNotValidateCertificate</A></B>()</CODE> <BR> Disables certificate validation on HTTPS connections.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE> <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html" title="class in com.google.appengine.api.urlfetch">FetchOptions</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html#followRedirects()">followRedirects</A></B>()</CODE> <BR> Enables following of redirects.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE> <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html" title="class in com.google.appengine.api.urlfetch">FetchOptions</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html#setDeadline(java.lang.Double)">setDeadline</A></B>(java.lang.Double deadline)</CODE> <BR> Sets the deadline, in seconds, for the fetch request.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE> <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html" title="class in com.google.appengine.api.urlfetch">FetchOptions</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html#validateCertificate()">validateCertificate</A></B>()</CODE> <BR> Enables certificate validation on HTTPS connections via the normal CA-based mechanism.</TD> </TR> </TABLE> <A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD> </TR> </TABLE> <P> <!-- ============ FIELD DETAIL =========== --> <A NAME="field_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Field Detail</B></FONT></TH> </TR> </TABLE> <A NAME="DEFAULT_ALLOW_TRUNCATE"><!-- --></A><H3> DEFAULT_ALLOW_TRUNCATE</H3> <PRE> public static final boolean <B>DEFAULT_ALLOW_TRUNCATE</B></PRE> <DL> <DL> <DT><B>See Also:</B><DD><A HREF="../../../../../constant-values.html#com.google.appengine.api.urlfetch.FetchOptions.DEFAULT_ALLOW_TRUNCATE">Constant Field Values</A></DL> </DL> <HR> <A NAME="DEFAULT_FOLLOW_REDIRECTS"><!-- --></A><H3> DEFAULT_FOLLOW_REDIRECTS</H3> <PRE> public static final boolean <B>DEFAULT_FOLLOW_REDIRECTS</B></PRE> <DL> <DL> <DT><B>See Also:</B><DD><A HREF="../../../../../constant-values.html#com.google.appengine.api.urlfetch.FetchOptions.DEFAULT_FOLLOW_REDIRECTS">Constant Field Values</A></DL> </DL> <HR> <A NAME="DEFAULT_DEADLINE"><!-- --></A><H3> DEFAULT_DEADLINE</H3> <PRE> public static final java.lang.Double <B>DEFAULT_DEADLINE</B></PRE> <DL> <DD>The default deadline is defined externally. <P> <DL> </DL> </DL> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Method Detail</B></FONT></TH> </TR> </TABLE> <A NAME="allowTruncate()"><!-- --></A><H3> allowTruncate</H3> <PRE> public <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html" title="class in com.google.appengine.api.urlfetch">FetchOptions</A> <B>allowTruncate</B>()</PRE> <DL> <DD>Enables response truncation. Please read the class javadoc for an explanation of how allowTruncate is used. <P> <DD><DL> </DL> </DD> <DD><DL> <DT><B>Returns:</B><DD><code>this</code> (for chaining)</DL> </DD> </DL> <HR> <A NAME="disallowTruncate()"><!-- --></A><H3> disallowTruncate</H3> <PRE> public <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html" title="class in com.google.appengine.api.urlfetch">FetchOptions</A> <B>disallowTruncate</B>()</PRE> <DL> <DD>Disables response truncation. Please read the class javadoc for an explanation of how allowTruncate is used. <P> <DD><DL> </DL> </DD> <DD><DL> <DT><B>Returns:</B><DD><code>this</code> (for chaining)</DL> </DD> </DL> <HR> <A NAME="followRedirects()"><!-- --></A><H3> followRedirects</H3> <PRE> public <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html" title="class in com.google.appengine.api.urlfetch">FetchOptions</A> <B>followRedirects</B>()</PRE> <DL> <DD>Enables following of redirects. Please read the class javadoc for an explanation of how followRedirects is used. <P> <DD><DL> </DL> </DD> <DD><DL> <DT><B>Returns:</B><DD><code>this</code> (for chaining)</DL> </DD> </DL> <HR> <A NAME="validateCertificate()"><!-- --></A><H3> validateCertificate</H3> <PRE> public <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html" title="class in com.google.appengine.api.urlfetch">FetchOptions</A> <B>validateCertificate</B>()</PRE> <DL> <DD>Enables certificate validation on HTTPS connections via the normal CA-based mechanism. Please read the class javadoc for an explanation of how this option affects certificate validation behavior. <P> <DD><DL> </DL> </DD> <DD><DL> <DT><B>Returns:</B><DD><code>this</code> (for chaining)</DL> </DD> </DL> <HR> <A NAME="doNotValidateCertificate()"><!-- --></A><H3> doNotValidateCertificate</H3> <PRE> public <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html" title="class in com.google.appengine.api.urlfetch">FetchOptions</A> <B>doNotValidateCertificate</B>()</PRE> <DL> <DD>Disables certificate validation on HTTPS connections. Please read the class javadoc for an explanation of how this option affects certificate validation behavior. <P> <DD><DL> </DL> </DD> <DD><DL> <DT><B>Returns:</B><DD><code>this</code> (for chaining)</DL> </DD> </DL> <HR> <A NAME="setDeadline(java.lang.Double)"><!-- --></A><H3> setDeadline</H3> <PRE> public <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html" title="class in com.google.appengine.api.urlfetch">FetchOptions</A> <B>setDeadline</B>(java.lang.Double deadline)</PRE> <DL> <DD>Sets the deadline, in seconds, for the fetch request. <P> <DD><DL> </DL> </DD> <DD><DL> <DT><B>Returns:</B><DD><code>this</code> (for chaining) <DT><B>Throws:</B> <DD><CODE>java.lang.IllegalArgumentException</CODE> - if deadline is not positive</DL> </DD> </DL> <HR> <A NAME="doNotFollowRedirects()"><!-- --></A><H3> doNotFollowRedirects</H3> <PRE> public <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.html" title="class in com.google.appengine.api.urlfetch">FetchOptions</A> <B>doNotFollowRedirects</B>()</PRE> <DL> <DD>Disables following of redirects. Please read the class javadoc for an explanation of how doNotFollowRedirects is used. <P> <DD><DL> </DL> </DD> <DD><DL> <DT><B>Returns:</B><DD><code>this</code> (for chaining)</DL> </DD> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> PREV CLASS <A HREF="../../../../../com/google/appengine/api/urlfetch/FetchOptions.Builder.html" title="class in com.google.appengine.api.urlfetch"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?com/google/appengine/api/urlfetch/FetchOptions.html" target="_top"><B>FRAMES</B></A> <A HREF="FetchOptions.html" target="_top"><B>NO FRAMES</B></A> <SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY: <A HREF="#nested_class_summary">NESTED</A> | <A HREF="#field_summary">FIELD</A> | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL: <A HREF="#field_detail">FIELD</A> | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>