You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by sb...@apache.org on 2016/10/25 21:52:03 UTC

[06/51] [abbrv] [partial] incubator-geode git commit: Adding javadocs for the 1.0.0-incubating release

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8888a496/releases/latest/javadoc/org/apache/geode/cache/DataPolicy.html
----------------------------------------------------------------------
diff --git a/releases/latest/javadoc/org/apache/geode/cache/DataPolicy.html b/releases/latest/javadoc/org/apache/geode/cache/DataPolicy.html
new file mode 100644
index 0000000..21a5f94
--- /dev/null
+++ b/releases/latest/javadoc/org/apache/geode/cache/DataPolicy.html
@@ -0,0 +1,760 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (1.8.0_45) on Sat Oct 15 16:23:28 PDT 2016 -->
+<title>DataPolicy (Apache Geode (incubating) 1.0.0-incubating)</title>
+<meta name="date" content="2016-10-15">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="DataPolicy (Apache Geode (incubating) 1.0.0-incubating)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var methods = {"i0":9,"i1":42,"i2":42,"i3":42,"i4":42,"i5":42,"i6":42,"i7":42,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"],32:["t6","Deprecated Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a name="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a name="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList">
+<li><a href="../../../../org/apache/geode/cache/CustomExpiry.html" title="interface in org.apache.geode.cache"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
+<li><a href="../../../../org/apache/geode/cache/Declarable.html" title="interface in org.apache.geode.cache"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
+</ul>
+<ul class="navList">
+<li><a href="../../../../index.html?org/apache/geode/cache/DataPolicy.html" target="_top">Frames</a></li>
+<li><a href="DataPolicy.html" target="_top">No&nbsp;Frames</a></li>
+</ul>
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a name="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+<!-- ======== START OF CLASS DATA ======== -->
+<div class="header">
+<div class="subTitle">org.apache.geode.cache</div>
+<h2 title="Class DataPolicy" class="title">Class DataPolicy</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li>java.lang.Object</li>
+<li>
+<ul class="inheritance">
+<li>org.apache.geode.cache.DataPolicy</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>java.io.Serializable</dd>
+</dl>
+<hr>
+<br>
+<pre>public class <span class="typeNameLabel">DataPolicy</span>
+extends java.lang.Object
+implements java.io.Serializable</pre>
+<div class="block">Enumerated type for region data policy.
+ The data policy specifies how this local cache will handle the data for a region.
+ <ol>
+ <li><code>EMPTY</code> causes data to never be stored in local memory. The region will always appear empty. It can be used to for zero footprint producers that only want to distribute their data to others and for zero footprint consumers that only want to see events.
+ <li><code>NORMAL</code> causes data that this region is interested in to be stored in local memory. It allows the contents in this cache to differ from other caches.
+ <li><code>PARTITION</code> causes data that this region holds to be spread across processes.  The amount of data held in this cache is configured in <a href="../../../../org/apache/geode/cache/PartitionAttributes.html" title="interface in org.apache.geode.cache"><code>PartitionAttributes</code></a> with a <a href="../../../../org/apache/geode/cache/PartitionAttributesFactory.html" title="class in org.apache.geode.cache"><code>PartitionAttributesFactory</code></a>.
+ <li><code>PERSISTENT_PARTITION</code> in addition to <code>PARTITION</code> also causes data to be stored to disk. The region initialization uses the data stored on disk.
+ <li><code>REPLICATE</code> causes data that this region is interested in to be stored in local memory. A distributed region will be initialized with the data from other caches. On distributed region operations that would cause the contents to differ with other caches are not allowed. This policy is allowed on local scope region but it behaves the same as <code>NORMAL</code>.
+ <li><code>PERSISTENT_REPLICATE</code> in addition to <code>REPLICATE</code> also causes data to be stored to disk. The region initialization uses the data stored on disk. Note that the persistence applies to both local scope and distributed scope.
+ </ol></div>
+<dl>
+<dt><span class="simpleTagLabel">Since:</span></dt>
+<dd>GemFire 5.0</dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../../../org/apache/geode/cache/AttributesFactory.html#setDataPolicy-org.apache.geode.cache.DataPolicy-"><code>AttributesFactory.setDataPolicy(org.apache.geode.cache.DataPolicy)</code></a>, 
+<a href="../../../../org/apache/geode/cache/RegionAttributes.html#getDataPolicy--"><code>RegionAttributes.getDataPolicy()</code></a>, 
+<a href="../../../../serialized-form.html#org.apache.geode.cache.DataPolicy">Serialized Form</a></dd>
+</dl>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== FIELD SUMMARY =========== -->
+<ul class="blockList">
+<li class="blockList"><a name="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colLast" scope="col">Field and Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static <a href="../../../../org/apache/geode/cache/DataPolicy.html" title="class in org.apache.geode.cache">DataPolicy</a></code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DataPolicy.html#DEFAULT">DEFAULT</a></span></code>
+<div class="block">The data policy used by default; it is <a href="../../../../org/apache/geode/cache/DataPolicy.html#NORMAL"><code>NORMAL</code></a>.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>static <a href="../../../../org/apache/geode/cache/DataPolicy.html" title="class in org.apache.geode.cache">DataPolicy</a></code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DataPolicy.html#EMPTY">EMPTY</a></span></code>
+<div class="block">Data is never stored in local memory.</div>
+</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static <a href="../../../../org/apache/geode/cache/DataPolicy.html" title="class in org.apache.geode.cache">DataPolicy</a></code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DataPolicy.html#NORMAL">NORMAL</a></span></code>
+<div class="block">Allows the contents in this cache to differ from other caches.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>byte</code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DataPolicy.html#ordinal">ordinal</a></span></code>
+<div class="block">used as ordinal to represent this DataPolicy</div>
+</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static <a href="../../../../org/apache/geode/cache/DataPolicy.html" title="class in org.apache.geode.cache">DataPolicy</a></code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DataPolicy.html#PARTITION">PARTITION</a></span></code>
+<div class="block">Data in this region may be spread across a number of processes.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>static <a href="../../../../org/apache/geode/cache/DataPolicy.html" title="class in org.apache.geode.cache">DataPolicy</a></code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DataPolicy.html#PERSISTENT_PARTITION">PERSISTENT_PARTITION</a></span></code>
+<div class="block">In addition to <code>PARTITION</code> also causes data to be stored to
+ disk.</div>
+</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static <a href="../../../../org/apache/geode/cache/DataPolicy.html" title="class in org.apache.geode.cache">DataPolicy</a></code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DataPolicy.html#PERSISTENT_REPLICATE">PERSISTENT_REPLICATE</a></span></code>
+<div class="block">In addition to <code>REPLICATE</code> also causes data to be stored to
+ disk.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>static <a href="../../../../org/apache/geode/cache/DataPolicy.html" title="class in org.apache.geode.cache">DataPolicy</a></code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DataPolicy.html#PRELOADED">PRELOADED</a></span></code>
+<div class="block">In addition to <code>NORMAL</code>, contents inside of this cache are
+ (partially) initialized with data from other caches, if available.</div>
+</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static <a href="../../../../org/apache/geode/cache/DataPolicy.html" title="class in org.apache.geode.cache">DataPolicy</a></code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DataPolicy.html#REPLICATE">REPLICATE</a></span></code>
+<div class="block">The region will be initialized with the data from other caches and accepts
+ any new entries created in other caches.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+<!-- ========== METHOD SUMMARY =========== -->
+<ul class="blockList">
+<li class="blockList"><a name="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t6" class="tableTab"><span><a href="javascript:show(32);">Deprecated Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colLast" scope="col">Method and Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static <a href="../../../../org/apache/geode/cache/DataPolicy.html" title="class in org.apache.geode.cache">DataPolicy</a></code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DataPolicy.html#fromOrdinal-byte-">fromOrdinal</a></span>(byte&nbsp;ordinal)</code>
+<div class="block">Return the DataPolicy represented by specified ordinal</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DataPolicy.html#isDefault--">isDefault</a></span>()</code>
+<div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;
+<div class="block"><span class="deprecationComment">from version 6.5 forward please use an identity comparison instead of this method</span></div>
+</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DataPolicy.html#isEmpty--">isEmpty</a></span>()</code>
+<div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;
+<div class="block"><span class="deprecationComment">from version 6.5 forward please use withStorage()</span></div>
+</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DataPolicy.html#isNormal--">isNormal</a></span>()</code>
+<div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;
+<div class="block"><span class="deprecationComment">from version 6.5 forward please use an identity comparison instead of this method</span></div>
+</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DataPolicy.html#isPartition--">isPartition</a></span>()</code>
+<div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;
+<div class="block"><span class="deprecationComment">from version 6.5 forward please use withPartitioning()</span></div>
+</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DataPolicy.html#isPersistentReplicate--">isPersistentReplicate</a></span>()</code>
+<div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;
+<div class="block"><span class="deprecationComment">from version 6.5 forward please use withPersistence() and withReplication()</span></div>
+</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DataPolicy.html#isPreloaded--">isPreloaded</a></span>()</code>
+<div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;
+<div class="block"><span class="deprecationComment">from version 6.5 forward please use withPreloaded()</span></div>
+</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DataPolicy.html#isReplicate--">isReplicate</a></span>()</code>
+<div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;
+<div class="block"><span class="deprecationComment">from version 6.5 forward please use withReplication()</span></div>
+</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>java.lang.String</code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DataPolicy.html#toString--">toString</a></span>()</code>
+<div class="block">Returns a string representation for this data policy.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DataPolicy.html#withPartitioning--">withPartitioning</a></span>()</code>
+<div class="block">Return whether this policy does partitioning.</div>
+</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DataPolicy.html#withPersistence--">withPersistence</a></span>()</code>
+<div class="block">Return whether this policy does persistence.</div>
+</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DataPolicy.html#withPreloaded--">withPreloaded</a></span>()</code>
+<div class="block">Return whether this policy does preloaded.</div>
+</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DataPolicy.html#withReplication--">withReplication</a></span>()</code>
+<div class="block">Return whether this policy does replication.</div>
+</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DataPolicy.html#withStorage--">withStorage</a></span>()</code>
+<div class="block">Return true if regions with this policy store data locally.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
+<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<ul class="blockList">
+<li class="blockList"><a name="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a name="EMPTY">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>EMPTY</h4>
+<pre>public static final&nbsp;<a href="../../../../org/apache/geode/cache/DataPolicy.html" title="class in org.apache.geode.cache">DataPolicy</a> EMPTY</pre>
+<div class="block">Data is never stored in local memory.
+ The region will always be empty locally.
+ It can be used to for zero footprint producers that only want to distribute
+ their data to others
+ and for zero footprint consumers that only want to see events.</div>
+</li>
+</ul>
+<a name="NORMAL">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>NORMAL</h4>
+<pre>public static final&nbsp;<a href="../../../../org/apache/geode/cache/DataPolicy.html" title="class in org.apache.geode.cache">DataPolicy</a> NORMAL</pre>
+<div class="block">Allows the contents in this cache to differ from other caches.<p>
+ Data that this region is interested in is stored in local memory.</div>
+</li>
+</ul>
+<a name="REPLICATE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>REPLICATE</h4>
+<pre>public static final&nbsp;<a href="../../../../org/apache/geode/cache/DataPolicy.html" title="class in org.apache.geode.cache">DataPolicy</a> REPLICATE</pre>
+<div class="block">The region will be initialized with the data from other caches and accepts
+ any new entries created in other caches.<p>
+ Operations that would cause the contents to differ with other caches
+ are not allowed.<p>
+ Data that this region is interested in is stored in local memory.</div>
+</li>
+</ul>
+<a name="PERSISTENT_REPLICATE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>PERSISTENT_REPLICATE</h4>
+<pre>public static final&nbsp;<a href="../../../../org/apache/geode/cache/DataPolicy.html" title="class in org.apache.geode.cache">DataPolicy</a> PERSISTENT_REPLICATE</pre>
+<div class="block">In addition to <code>REPLICATE</code> also causes data to be stored to
+ disk. The region initialization may use the data stored on disk.</div>
+</li>
+</ul>
+<a name="PARTITION">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>PARTITION</h4>
+<pre>public static final&nbsp;<a href="../../../../org/apache/geode/cache/DataPolicy.html" title="class in org.apache.geode.cache">DataPolicy</a> PARTITION</pre>
+<div class="block">Data in this region may be spread across a number of processes.  This is
+ further configured with <a href="../../../../org/apache/geode/cache/PartitionAttributes.html" title="interface in org.apache.geode.cache"><code>partitioning attributes</code></a></div>
+</li>
+</ul>
+<a name="PRELOADED">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>PRELOADED</h4>
+<pre>public static final&nbsp;<a href="../../../../org/apache/geode/cache/DataPolicy.html" title="class in org.apache.geode.cache">DataPolicy</a> PRELOADED</pre>
+<div class="block">In addition to <code>NORMAL</code>, contents inside of this cache are
+ (partially) initialized with data from other caches, if available.</div>
+</li>
+</ul>
+<a name="PERSISTENT_PARTITION">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>PERSISTENT_PARTITION</h4>
+<pre>public static final&nbsp;<a href="../../../../org/apache/geode/cache/DataPolicy.html" title="class in org.apache.geode.cache">DataPolicy</a> PERSISTENT_PARTITION</pre>
+<div class="block">In addition to <code>PARTITION</code> also causes data to be stored to
+ disk. The region initialization may use the data stored on disk.</div>
+<dl>
+<dt><span class="simpleTagLabel">Since:</span></dt>
+<dd>GemFire 6.5</dd>
+</dl>
+</li>
+</ul>
+<a name="DEFAULT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>DEFAULT</h4>
+<pre>public static final&nbsp;<a href="../../../../org/apache/geode/cache/DataPolicy.html" title="class in org.apache.geode.cache">DataPolicy</a> DEFAULT</pre>
+<div class="block">The data policy used by default; it is <a href="../../../../org/apache/geode/cache/DataPolicy.html#NORMAL"><code>NORMAL</code></a>.</div>
+</li>
+</ul>
+<a name="ordinal">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>ordinal</h4>
+<pre>public final&nbsp;byte ordinal</pre>
+<div class="block">used as ordinal to represent this DataPolicy</div>
+</li>
+</ul>
+</li>
+</ul>
+<!-- ============ METHOD DETAIL ========== -->
+<ul class="blockList">
+<li class="blockList"><a name="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a name="fromOrdinal-byte-">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>fromOrdinal</h4>
+<pre>public static&nbsp;<a href="../../../../org/apache/geode/cache/DataPolicy.html" title="class in org.apache.geode.cache">DataPolicy</a>&nbsp;fromOrdinal(byte&nbsp;ordinal)</pre>
+<div class="block">Return the DataPolicy represented by specified ordinal</div>
+</li>
+</ul>
+<a name="withStorage--">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>withStorage</h4>
+<pre>public&nbsp;boolean&nbsp;withStorage()</pre>
+<div class="block">Return true if regions with this policy store data locally.<p>
+ Although DataPolicy <a href="../../../../org/apache/geode/cache/DataPolicy.html#PARTITION"><code>PARTITION</code></a> will return true to this query,
+ it is possible to turn off local storage with
+ <a href="../../../../org/apache/geode/cache/PartitionAttributesFactory.html#setLocalMaxMemory-int-"><code>PartitionAttributesFactory.setLocalMaxMemory(int)</code></a> by setting
+ localMaxMemory to zero.</div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>true if regions with this policy store data locally.</dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../../../org/apache/geode/cache/DataPolicy.html#NORMAL"><code>NORMAL</code></a>, 
+<a href="../../../../org/apache/geode/cache/DataPolicy.html#PRELOADED"><code>PRELOADED</code></a>, 
+<a href="../../../../org/apache/geode/cache/DataPolicy.html#REPLICATE"><code>REPLICATE</code></a>, 
+<a href="../../../../org/apache/geode/cache/DataPolicy.html#PERSISTENT_REPLICATE"><code>PERSISTENT_REPLICATE</code></a>, 
+<a href="../../../../org/apache/geode/cache/DataPolicy.html#PARTITION"><code>PARTITION</code></a>, 
+<a href="../../../../org/apache/geode/cache/DataPolicy.html#PERSISTENT_PARTITION"><code>PERSISTENT_PARTITION</code></a></dd>
+</dl>
+</li>
+</ul>
+<a name="withReplication--">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>withReplication</h4>
+<pre>public&nbsp;boolean&nbsp;withReplication()</pre>
+<div class="block">Return whether this policy does replication.</div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>true if this policy does replication.</dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../../../org/apache/geode/cache/DataPolicy.html#REPLICATE"><code>REPLICATE</code></a>, 
+<a href="../../../../org/apache/geode/cache/DataPolicy.html#PERSISTENT_REPLICATE"><code>PERSISTENT_REPLICATE</code></a></dd>
+</dl>
+</li>
+</ul>
+<a name="withPersistence--">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>withPersistence</h4>
+<pre>public&nbsp;boolean&nbsp;withPersistence()</pre>
+<div class="block">Return whether this policy does persistence.</div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>true if this policy does persistence.</dd>
+<dt><span class="simpleTagLabel">Since:</span></dt>
+<dd>GemFire 6.5</dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../../../org/apache/geode/cache/DataPolicy.html#PERSISTENT_PARTITION"><code>PERSISTENT_PARTITION</code></a>, 
+<a href="../../../../org/apache/geode/cache/DataPolicy.html#PERSISTENT_REPLICATE"><code>PERSISTENT_REPLICATE</code></a></dd>
+</dl>
+</li>
+</ul>
+<a name="withPartitioning--">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>withPartitioning</h4>
+<pre>public&nbsp;boolean&nbsp;withPartitioning()</pre>
+<div class="block">Return whether this policy does partitioning.</div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>true if this policy does partitioning</dd>
+<dt><span class="simpleTagLabel">Since:</span></dt>
+<dd>GemFire 6.5</dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../../../org/apache/geode/cache/DataPolicy.html#PARTITION"><code>PARTITION</code></a>, 
+<a href="../../../../org/apache/geode/cache/DataPolicy.html#PERSISTENT_PARTITION"><code>PERSISTENT_PARTITION</code></a></dd>
+</dl>
+</li>
+</ul>
+<a name="withPreloaded--">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>withPreloaded</h4>
+<pre>public&nbsp;boolean&nbsp;withPreloaded()</pre>
+<div class="block">Return whether this policy does preloaded.</div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>true if this policy does preloaded.</dd>
+<dt><span class="simpleTagLabel">Since:</span></dt>
+<dd>GemFire 6.5</dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../../../org/apache/geode/cache/DataPolicy.html#PRELOADED"><code>PRELOADED</code></a></dd>
+</dl>
+</li>
+</ul>
+<a name="isEmpty--">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isEmpty</h4>
+<pre>public&nbsp;boolean&nbsp;isEmpty()</pre>
+<div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;<span class="deprecationComment">from version 6.5 forward please use withStorage()</span></div>
+<div class="block">Return true if this policy is <a href="../../../../org/apache/geode/cache/DataPolicy.html#EMPTY"><code>EMPTY</code></a>.</div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>true if this policy is <a href="../../../../org/apache/geode/cache/DataPolicy.html#EMPTY"><code>EMPTY</code></a>.</dd>
+</dl>
+</li>
+</ul>
+<a name="isNormal--">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isNormal</h4>
+<pre>public&nbsp;boolean&nbsp;isNormal()</pre>
+<div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;<span class="deprecationComment">from version 6.5 forward please use an identity comparison instead of this method</span></div>
+<div class="block">Return true if this policy is <a href="../../../../org/apache/geode/cache/DataPolicy.html#NORMAL"><code>NORMAL</code></a>.</div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>true if this policy is <a href="../../../../org/apache/geode/cache/DataPolicy.html#NORMAL"><code>NORMAL</code></a>.</dd>
+</dl>
+</li>
+</ul>
+<a name="isPreloaded--">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isPreloaded</h4>
+<pre>public&nbsp;boolean&nbsp;isPreloaded()</pre>
+<div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;<span class="deprecationComment">from version 6.5 forward please use withPreloaded()</span></div>
+<div class="block">Return true if this policy is <a href="../../../../org/apache/geode/cache/DataPolicy.html#PRELOADED"><code>PRELOADED</code></a>.</div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>true if this policy is <a href="../../../../org/apache/geode/cache/DataPolicy.html#PRELOADED"><code>PRELOADED</code></a></dd>
+</dl>
+</li>
+</ul>
+<a name="isDefault--">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isDefault</h4>
+<pre>public&nbsp;boolean&nbsp;isDefault()</pre>
+<div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;<span class="deprecationComment">from version 6.5 forward please use an identity comparison instead of this method</span></div>
+<div class="block">Return true if this policy is the default.</div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>true if this policy is the default.</dd>
+</dl>
+</li>
+</ul>
+<a name="isReplicate--">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isReplicate</h4>
+<pre>public&nbsp;boolean&nbsp;isReplicate()</pre>
+<div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;<span class="deprecationComment">from version 6.5 forward please use withReplication()</span></div>
+<div class="block">Return true if this policy is <a href="../../../../org/apache/geode/cache/DataPolicy.html#REPLICATE"><code>REPLICATE</code></a>.</div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>true if this policy is <a href="../../../../org/apache/geode/cache/DataPolicy.html#REPLICATE"><code>REPLICATE</code></a>.</dd>
+</dl>
+</li>
+</ul>
+<a name="isPersistentReplicate--">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isPersistentReplicate</h4>
+<pre>public&nbsp;boolean&nbsp;isPersistentReplicate()</pre>
+<div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;<span class="deprecationComment">from version 6.5 forward please use withPersistence() and withReplication()</span></div>
+<div class="block">Return true if this policy is <a href="../../../../org/apache/geode/cache/DataPolicy.html#PERSISTENT_REPLICATE"><code>PERSISTENT_REPLICATE</code></a>.</div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>true if this policy is <a href="../../../../org/apache/geode/cache/DataPolicy.html#PERSISTENT_REPLICATE"><code>PERSISTENT_REPLICATE</code></a>.</dd>
+</dl>
+</li>
+</ul>
+<a name="isPartition--">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isPartition</h4>
+<pre>public&nbsp;boolean&nbsp;isPartition()</pre>
+<div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;<span class="deprecationComment">from version 6.5 forward please use withPartitioning()</span></div>
+<div class="block">Return true if this policy is <a href="../../../../org/apache/geode/cache/DataPolicy.html#PARTITION"><code>PARTITION</code></a>.</div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>true if this policy is <a href="../../../../org/apache/geode/cache/DataPolicy.html#PARTITION"><code>PARTITION</code></a></dd>
+</dl>
+</li>
+</ul>
+<a name="toString--">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toString</h4>
+<pre>public&nbsp;java.lang.String&nbsp;toString()</pre>
+<div class="block">Returns a string representation for this data policy.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code>toString</code>&nbsp;in class&nbsp;<code>java.lang.Object</code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>the name of this data policy.</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</div>
+</div>
+<!-- ========= END OF CLASS DATA ========= -->
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a name="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a name="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList">
+<li><a href="../../../../org/apache/geode/cache/CustomExpiry.html" title="interface in org.apache.geode.cache"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
+<li><a href="../../../../org/apache/geode/cache/Declarable.html" title="interface in org.apache.geode.cache"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
+</ul>
+<ul class="navList">
+<li><a href="../../../../index.html?org/apache/geode/cache/DataPolicy.html" target="_top">Frames</a></li>
+<li><a href="DataPolicy.html" target="_top">No&nbsp;Frames</a></li>
+</ul>
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a name="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</body>
+</html>

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8888a496/releases/latest/javadoc/org/apache/geode/cache/Declarable.html
----------------------------------------------------------------------
diff --git a/releases/latest/javadoc/org/apache/geode/cache/Declarable.html b/releases/latest/javadoc/org/apache/geode/cache/Declarable.html
new file mode 100644
index 0000000..a818fed
--- /dev/null
+++ b/releases/latest/javadoc/org/apache/geode/cache/Declarable.html
@@ -0,0 +1,273 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (1.8.0_45) on Sat Oct 15 16:23:28 PDT 2016 -->
+<title>Declarable (Apache Geode (incubating) 1.0.0-incubating)</title>
+<meta name="date" content="2016-10-15">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="Declarable (Apache Geode (incubating) 1.0.0-incubating)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var methods = {"i0":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a name="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a name="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList">
+<li><a href="../../../../org/apache/geode/cache/DataPolicy.html" title="class in org.apache.geode.cache"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
+<li><a href="../../../../org/apache/geode/cache/DiskAccessException.html" title="class in org.apache.geode.cache"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
+</ul>
+<ul class="navList">
+<li><a href="../../../../index.html?org/apache/geode/cache/Declarable.html" target="_top">Frames</a></li>
+<li><a href="Declarable.html" target="_top">No&nbsp;Frames</a></li>
+</ul>
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a name="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+<!-- ======== START OF CLASS DATA ======== -->
+<div class="header">
+<div class="subTitle">org.apache.geode.cache</div>
+<h2 title="Interface Declarable" class="title">Interface Declarable</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><a href="../../../../org/apache/geode/cache/util/AutoBalancer.html" title="class in org.apache.geode.cache.util">AutoBalancer</a>, <a href="../../../../org/apache/geode/modules/util/CreateRegionFunction.html" title="class in org.apache.geode.modules.util">CreateRegionFunction</a>, <a href="../../../../org/apache/geode/modules/util/DebugCacheListener.html" title="class in org.apache.geode.modules.util">DebugCacheListener</a>, <a href="../../../../org/apache/geode/modules/gatewaydelta/GatewayDeltaEventApplicationCacheListener.html" title="class in org.apache.geode.modules.gatewaydelta">GatewayDeltaEventApplicationCacheListener</a>, <a href="../../../../org/apache/geode/modules/gatewaydelta/GatewayDeltaForwarderCacheListener.html" title="class in org.apache.geode.modules.gatewaydelta">GatewayDeltaForwarderCacheListener</a>, <a href="../../../../org/apache/geode/modules/session/catalina/callback/LocalSessionCacheLoader.html" title="class in org.apache.geode.modules.session.catalina.
 callback">LocalSessionCacheLoader</a>, <a href="../../../../org/apache/geode/modules/session/catalina/callback/LocalSessionCacheWriter.html" title="class in org.apache.geode.modules.session.catalina.callback">LocalSessionCacheWriter</a>, <a href="../../../../org/apache/geode/pdx/ReflectionBasedAutoSerializer.html" title="class in org.apache.geode.pdx">ReflectionBasedAutoSerializer</a>, <a href="../../../../org/apache/geode/modules/util/RegionConfigurationCacheListener.html" title="class in org.apache.geode.modules.util">RegionConfigurationCacheListener</a>, <a href="../../../../org/apache/geode/modules/util/RegionSizeFunction.html" title="class in org.apache.geode.modules.util">RegionSizeFunction</a>, <a href="../../../../org/apache/geode/modules/util/SessionCustomExpiry.html" title="class in org.apache.geode.modules.util">SessionCustomExpiry</a>, <a href="../../../../org/apache/geode/modules/session/catalina/callback/SessionExpirationCacheListener.html" title="class in org.apache.g
 eode.modules.session.catalina.callback">SessionExpirationCacheListener</a>, <a href="../../../../org/apache/geode/modules/util/TouchPartitionedRegionEntriesFunction.html" title="class in org.apache.geode.modules.util">TouchPartitionedRegionEntriesFunction</a>, <a href="../../../../org/apache/geode/modules/util/TouchReplicatedRegionEntriesFunction.html" title="class in org.apache.geode.modules.util">TouchReplicatedRegionEntriesFunction</a></dd>
+</dl>
+<hr>
+<br>
+<pre>public interface <span class="typeNameLabel">Declarable</span></pre>
+<div class="block">An object that can be described in a declarative caching XML file.
+
+ <p>
+
+ Any user-defined object in the declarative caching xml file
+ should implement this interface in order to be constructed.
+
+ <p>
+
+ For example, the user can declare a <code>CacheLoader</code> in a declarative
+ XML file as follows:
+
+ <pre>
+        &lt;cache-loader&gt;
+          &lt;class-name&gt;com.company.app.DBLoader&lt;/class-name&gt;
+          &lt;parameter name="URL"&gt;
+            &lt;string&gt;jdbc://12.34.56.78/mydb&lt;/string&gt;
+          &lt;/parameter&gt;
+        &lt;/cache-loader&gt;
+ </pre>
+
+ <p>
+
+ In this case, <code>com.company.app.DBLoader</code> must 
+ implement both the <a href="../../../../org/apache/geode/cache/CacheLoader.html" title="interface in org.apache.geode.cache"><code>CacheLoader</code></a> and <code>Declarable</code>
+ interfaces. The cache service will construct a
+ <code>com.company.app.DBLoader</code> object by invoking the loader's
+ zero-argument constructor and then calling the <a href="../../../../org/apache/geode/cache/Declarable.html#init-java.util.Properties-"><code>init(java.util.Properties)</code></a> method
+ to pass in the parameters.
+
+ <P>
+
+ See <a href="package-summary.html#declarative">package introduction</a>.</div>
+<dl>
+<dt><span class="simpleTagLabel">Since:</span></dt>
+<dd>GemFire 2.0</dd>
+</dl>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<ul class="blockList">
+<li class="blockList"><a name="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colLast" scope="col">Method and Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/Declarable.html#init-java.util.Properties-">init</a></span>(java.util.Properties&nbsp;props)</code>
+<div class="block">Initializes a user-defined object using the given properties.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<ul class="blockList">
+<li class="blockList"><a name="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a name="init-java.util.Properties-">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>init</h4>
+<pre>void&nbsp;init(java.util.Properties&nbsp;props)</pre>
+<div class="block">Initializes a user-defined object using the given properties.
+ Note that any uncaught exception thrown by this method will cause
+ the <code>Cache</code> initialization to fail.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>props</code> - Contains the parameters declared in the declarative xml
+        file.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code>java.lang.IllegalArgumentException</code> - If one of the configuration options in <code>props</code>
+         is illegal or malformed.</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</div>
+</div>
+<!-- ========= END OF CLASS DATA ========= -->
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a name="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a name="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList">
+<li><a href="../../../../org/apache/geode/cache/DataPolicy.html" title="class in org.apache.geode.cache"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
+<li><a href="../../../../org/apache/geode/cache/DiskAccessException.html" title="class in org.apache.geode.cache"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
+</ul>
+<ul class="navList">
+<li><a href="../../../../index.html?org/apache/geode/cache/Declarable.html" target="_top">Frames</a></li>
+<li><a href="Declarable.html" target="_top">No&nbsp;Frames</a></li>
+</ul>
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a name="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</body>
+</html>

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8888a496/releases/latest/javadoc/org/apache/geode/cache/DiskAccessException.html
----------------------------------------------------------------------
diff --git a/releases/latest/javadoc/org/apache/geode/cache/DiskAccessException.html b/releases/latest/javadoc/org/apache/geode/cache/DiskAccessException.html
new file mode 100644
index 0000000..600c0cd
--- /dev/null
+++ b/releases/latest/javadoc/org/apache/geode/cache/DiskAccessException.html
@@ -0,0 +1,505 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (1.8.0_45) on Sat Oct 15 16:23:28 PDT 2016 -->
+<title>DiskAccessException (Apache Geode (incubating) 1.0.0-incubating)</title>
+<meta name="date" content="2016-10-15">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="DiskAccessException (Apache Geode (incubating) 1.0.0-incubating)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var methods = {"i0":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a name="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a name="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList">
+<li><a href="../../../../org/apache/geode/cache/Declarable.html" title="interface in org.apache.geode.cache"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
+<li><a href="../../../../org/apache/geode/cache/DiskStore.html" title="interface in org.apache.geode.cache"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
+</ul>
+<ul class="navList">
+<li><a href="../../../../index.html?org/apache/geode/cache/DiskAccessException.html" target="_top">Frames</a></li>
+<li><a href="DiskAccessException.html" target="_top">No&nbsp;Frames</a></li>
+</ul>
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a name="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+<!-- ======== START OF CLASS DATA ======== -->
+<div class="header">
+<div class="subTitle">org.apache.geode.cache</div>
+<h2 title="Class DiskAccessException" class="title">Class DiskAccessException</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li>java.lang.Object</li>
+<li>
+<ul class="inheritance">
+<li>java.lang.Throwable</li>
+<li>
+<ul class="inheritance">
+<li>java.lang.Exception</li>
+<li>
+<ul class="inheritance">
+<li>java.lang.RuntimeException</li>
+<li>
+<ul class="inheritance">
+<li><a href="../../../../org/apache/geode/GemFireException.html" title="class in org.apache.geode">org.apache.geode.GemFireException</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="../../../../org/apache/geode/cache/CacheRuntimeException.html" title="class in org.apache.geode.cache">org.apache.geode.cache.CacheRuntimeException</a></li>
+<li>
+<ul class="inheritance">
+<li>org.apache.geode.cache.DiskAccessException</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>java.io.Serializable</dd>
+</dl>
+<hr>
+<br>
+<pre>public class <span class="typeNameLabel">DiskAccessException</span>
+extends <a href="../../../../org/apache/geode/cache/CacheRuntimeException.html" title="class in org.apache.geode.cache">CacheRuntimeException</a></pre>
+<div class="block">Indicates that an <code>IOException</code> during a disk region operation.</div>
+<dl>
+<dt><span class="simpleTagLabel">Since:</span></dt>
+<dd>GemFire 3.2</dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../../../serialized-form.html#org.apache.geode.cache.DiskAccessException">Serialized Form</a></dd>
+</dl>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<ul class="blockList">
+<li class="blockList"><a name="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colOne" scope="col">Constructor and Description</th>
+</tr>
+<tr class="altColor">
+<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DiskAccessException.html#DiskAccessException--">DiskAccessException</a></span>()</code>
+<div class="block">Constructs a new <code>DiskAccessException</code>.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DiskAccessException.html#DiskAccessException-java.lang.String-org.apache.geode.cache.DiskStore-">DiskAccessException</a></span>(java.lang.String&nbsp;msg,
+                   <a href="../../../../org/apache/geode/cache/DiskStore.html" title="interface in org.apache.geode.cache">DiskStore</a>&nbsp;ds)</code>
+<div class="block">Constructs a new <code>DiskAccessException</code> with a message string.</div>
+</td>
+</tr>
+<tr class="altColor">
+<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DiskAccessException.html#DiskAccessException-java.lang.String-org.apache.geode.cache.Region-">DiskAccessException</a></span>(java.lang.String&nbsp;msg,
+                   <a href="../../../../org/apache/geode/cache/Region.html" title="interface in org.apache.geode.cache">Region</a>&nbsp;r)</code>
+<div class="block">Constructs a new <code>DiskAccessException</code> with a message string.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DiskAccessException.html#DiskAccessException-java.lang.String-java.lang.String-">DiskAccessException</a></span>(java.lang.String&nbsp;msg,
+                   java.lang.String&nbsp;regionName)</code>
+<div class="block">Constructs a new <code>DiskAccessException</code> with a message string.</div>
+</td>
+</tr>
+<tr class="altColor">
+<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DiskAccessException.html#DiskAccessException-java.lang.String-java.lang.Throwable-">DiskAccessException</a></span>(java.lang.String&nbsp;msg,
+                   java.lang.Throwable&nbsp;cause)</code>
+<div class="block">Constructs a new <code>DiskAccessException</code> with a message string
+ and a cause.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DiskAccessException.html#DiskAccessException-java.lang.String-java.lang.Throwable-org.apache.geode.cache.DiskStore-">DiskAccessException</a></span>(java.lang.String&nbsp;msg,
+                   java.lang.Throwable&nbsp;cause,
+                   <a href="../../../../org/apache/geode/cache/DiskStore.html" title="interface in org.apache.geode.cache">DiskStore</a>&nbsp;ds)</code>
+<div class="block">Constructs a new <code>DiskAccessException</code> with a message string
+ and a cause.</div>
+</td>
+</tr>
+<tr class="altColor">
+<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DiskAccessException.html#DiskAccessException-java.lang.String-java.lang.Throwable-java.lang.String-">DiskAccessException</a></span>(java.lang.String&nbsp;msg,
+                   java.lang.Throwable&nbsp;cause,
+                   java.lang.String&nbsp;regionName)</code>
+<div class="block">Constructs a new <code>DiskAccessException</code> with a message string
+ and a cause.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DiskAccessException.html#DiskAccessException-java.lang.Throwable-">DiskAccessException</a></span>(java.lang.Throwable&nbsp;cause)</code>
+<div class="block">Constructs a new <code>DiskAccessException</code> with a cause.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+<!-- ========== METHOD SUMMARY =========== -->
+<ul class="blockList">
+<li class="blockList"><a name="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colLast" scope="col">Method and Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/geode/cache/DiskAccessException.html#isRemote--">isRemote</a></span>()</code>
+<div class="block">Returns true if this exception originated from a remote node.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a name="methods.inherited.from.class.org.apache.geode.cache.CacheRuntimeException">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.apache.geode.cache.<a href="../../../../org/apache/geode/cache/CacheRuntimeException.html" title="class in org.apache.geode.cache">CacheRuntimeException</a></h3>
+<code><a href="../../../../org/apache/geode/cache/CacheRuntimeException.html#toString--">toString</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a name="methods.inherited.from.class.org.apache.geode.GemFireException">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.apache.geode.<a href="../../../../org/apache/geode/GemFireException.html" title="class in org.apache.geode">GemFireException</a></h3>
+<code><a href="../../../../org/apache/geode/GemFireException.html#getRootCause--">getRootCause</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a name="methods.inherited.from.class.java.lang.Throwable">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.Throwable</h3>
+<code>addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace</code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
+<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<ul class="blockList">
+<li class="blockList"><a name="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a name="DiskAccessException--">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>DiskAccessException</h4>
+<pre>public&nbsp;DiskAccessException()</pre>
+<div class="block">Constructs a new <code>DiskAccessException</code>.</div>
+</li>
+</ul>
+<a name="DiskAccessException-java.lang.String-org.apache.geode.cache.Region-">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>DiskAccessException</h4>
+<pre>public&nbsp;DiskAccessException(java.lang.String&nbsp;msg,
+                           <a href="../../../../org/apache/geode/cache/Region.html" title="interface in org.apache.geode.cache">Region</a>&nbsp;r)</pre>
+<div class="block">Constructs a new <code>DiskAccessException</code> with a message string.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>msg</code> - a message string</dd>
+<dd><code>r</code> - The Region for which the disk operation failed</dd>
+</dl>
+</li>
+</ul>
+<a name="DiskAccessException-java.lang.String-java.lang.String-">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>DiskAccessException</h4>
+<pre>public&nbsp;DiskAccessException(java.lang.String&nbsp;msg,
+                           java.lang.String&nbsp;regionName)</pre>
+<div class="block">Constructs a new <code>DiskAccessException</code> with a message string.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>msg</code> - a message string</dd>
+<dd><code>regionName</code> - The name of the Region for which the disk operation failed</dd>
+<dt><span class="simpleTagLabel">Since:</span></dt>
+<dd>GemFire 6.5</dd>
+</dl>
+</li>
+</ul>
+<a name="DiskAccessException-java.lang.String-org.apache.geode.cache.DiskStore-">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>DiskAccessException</h4>
+<pre>public&nbsp;DiskAccessException(java.lang.String&nbsp;msg,
+                           <a href="../../../../org/apache/geode/cache/DiskStore.html" title="interface in org.apache.geode.cache">DiskStore</a>&nbsp;ds)</pre>
+<div class="block">Constructs a new <code>DiskAccessException</code> with a message string.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>msg</code> - a message string</dd>
+<dd><code>ds</code> - The disk store for which the disk operation failed</dd>
+<dt><span class="simpleTagLabel">Since:</span></dt>
+<dd>GemFire 6.5</dd>
+</dl>
+</li>
+</ul>
+<a name="DiskAccessException-java.lang.String-java.lang.Throwable-java.lang.String-">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>DiskAccessException</h4>
+<pre>public&nbsp;DiskAccessException(java.lang.String&nbsp;msg,
+                           java.lang.Throwable&nbsp;cause,
+                           java.lang.String&nbsp;regionName)</pre>
+<div class="block">Constructs a new <code>DiskAccessException</code> with a message string
+ and a cause.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>msg</code> - the message string</dd>
+<dd><code>cause</code> - a causal Throwable</dd>
+<dd><code>regionName</code> - The name of the Region for which the disk operation failed</dd>
+<dt><span class="simpleTagLabel">Since:</span></dt>
+<dd>GemFire 6.5</dd>
+</dl>
+</li>
+</ul>
+<a name="DiskAccessException-java.lang.String-java.lang.Throwable-org.apache.geode.cache.DiskStore-">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>DiskAccessException</h4>
+<pre>public&nbsp;DiskAccessException(java.lang.String&nbsp;msg,
+                           java.lang.Throwable&nbsp;cause,
+                           <a href="../../../../org/apache/geode/cache/DiskStore.html" title="interface in org.apache.geode.cache">DiskStore</a>&nbsp;ds)</pre>
+<div class="block">Constructs a new <code>DiskAccessException</code> with a message string
+ and a cause.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>msg</code> - the message string</dd>
+<dd><code>cause</code> - a causal Throwable</dd>
+<dd><code>ds</code> - The disk store for which the disk operation failed</dd>
+<dt><span class="simpleTagLabel">Since:</span></dt>
+<dd>GemFire 6.5</dd>
+</dl>
+</li>
+</ul>
+<a name="DiskAccessException-java.lang.Throwable-">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>DiskAccessException</h4>
+<pre>public&nbsp;DiskAccessException(java.lang.Throwable&nbsp;cause)</pre>
+<div class="block">Constructs a new <code>DiskAccessException</code> with a cause.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>cause</code> - a causal Throwable</dd>
+</dl>
+</li>
+</ul>
+<a name="DiskAccessException-java.lang.String-java.lang.Throwable-">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>DiskAccessException</h4>
+<pre>public&nbsp;DiskAccessException(java.lang.String&nbsp;msg,
+                           java.lang.Throwable&nbsp;cause)</pre>
+<div class="block">Constructs a new <code>DiskAccessException</code> with a message string
+ and a cause.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>msg</code> - the message string</dd>
+<dd><code>cause</code> - a causal Throwable</dd>
+<dt><span class="simpleTagLabel">Since:</span></dt>
+<dd>GemFire 8.0</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+<!-- ============ METHOD DETAIL ========== -->
+<ul class="blockList">
+<li class="blockList"><a name="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a name="isRemote--">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>isRemote</h4>
+<pre>public final&nbsp;boolean&nbsp;isRemote()</pre>
+<div class="block">Returns true if this exception originated from a remote node.</div>
+</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</div>
+</div>
+<!-- ========= END OF CLASS DATA ========= -->
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a name="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a name="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList">
+<li><a href="../../../../org/apache/geode/cache/Declarable.html" title="interface in org.apache.geode.cache"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
+<li><a href="../../../../org/apache/geode/cache/DiskStore.html" title="interface in org.apache.geode.cache"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
+</ul>
+<ul class="navList">
+<li><a href="../../../../index.html?org/apache/geode/cache/DiskAccessException.html" target="_top">Frames</a></li>
+<li><a href="DiskAccessException.html" target="_top">No&nbsp;Frames</a></li>
+</ul>
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a name="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</body>
+</html>