http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/e493ba2b/for_users.md
----------------------------------------------------------------------
diff --git a/for_users.md b/for_users.md
new file mode 100644
index 0000000..fa94e25
--- /dev/null
+++ b/for_users.md
@@ -0,0 +1,133 @@
+---
+title: For Users
+nav: nav_users
+---
+
+1. [System Requirements](#system-requirements)
+2. [Target Data](#target-data)
+3. [Data and Query Schemas](#data-and-query-schemas)
+       * [Data Schema](#data-schema)
+       * [Query Schema](#query-schema)
+4. [Querier](#querier)
+5. [Responder](#responder)
+       * [Platforms](#platforms)
+       * [Target Data](#target-data)
+       * [Launching](#launching)
+       * [Responder Output](#responder-output)
+
+## System Requirements
+
+Pirk requires JDK 1.7 (or greater). The remaining system requirements depend 
on the platform chosen for the Querier and Responder.
+
+## Target Data
+
+Target data refers to the data to be queried. Target data can be read from 
HDFS, Elasticsearch, or from the local file system, or as input to the 
encrypted query functionality as a part of a larger workflow. 
+
+Data over which the encrypted query is to be preformed must be transformed 
into a map of <key,value> pairs; JSON, MapWritable, and Map\<String,Object\> 
representations are currently used in Pirk to format target data. For a given 
data input represented as a set of \<key,value\> pairs, the ‘key’ 
corresponds to the name of the element or field of the data and the ‘value’ 
is the value of that field in the data.
+
+If the Responder is reading the target data from HDFS, an input format 
extending Pirk’s [org.apache.pirk.inputformat.hadoop.BaseInputFormat]({{ 
site.baseurl }}/javadocs/org/apache/pirk/inputformat/hadoop/BaseInputFormat) 
must be used; BaseInputFormat extends the [Hadoop 
InputFormat](https://hadoop.apache.org/docs/r2.7.2/api/org/apache/hadoop/mapred/InputFormat.html)\<[Text](https://hadoop.apache.org/docs/r2.6.2/api/org/apache/hadoop/io/Text.html),[MapWritable](https://hadoop.apache.org/docs/r2.6.2/api/org/apache/hadoop/io/MapWritable.html)\>.
+
+## Data and Query Schemas
+
+In order to perform an encrypted query over a target data set, Pirk requires 
the user to specify a data schema XML file for the target data and a query 
schema XML file for the query type. Both the Querier and the Responder must 
have the data and query schema XML files.
+
+### Data Schema
+
+The format of the data schema XML file is as follows:
+
+
+        <schema>
+         <schemaName> name of the data schema </schemaName>
+         <element>
+            <name> element name </name>
+             <type> class name or type name (if Java primitive type) of the 
element </type>
+            <isArray> true or false -- whether or not the schema element is an 
array within the data </isArray>
+            <partitioner> optional - Partitioner class for the element; 
defaults to primitive java type partitioner </partitioner> 
+         </element>
+        </schema>
+       
+       Primitive Java types must be one of the following: "byte", "short", 
"int", "long", "float", "double", "char", "string", "boolean"
+
+
+Each element of the data is defined by its name, type, whether or not it is an 
array of objects of the given type, and an optional partitioner class. 
+
+The element type may be one of the Java primitive types given above or may be 
defined by a custom class. 
+
+The Partitioner class contains the functionality for partitioning the given 
data element into ‘chunks’ which are used in computing the encrypted query. 
If no partitioner is specified for an element, it defaults to the 
[org.apache.pirk.schema.data.partitioner.PrimitiveTypePartitioner]({{ 
site.baseurl 
}}/javadocs/org/apache/pirk/schema/data/partitioner/PrimitiveTypePartitioner) 
and assumes that the element type is one of the allowed primitive Java types 
(an exception will be thrown if this is not the case). All custom partitioners 
must implement the [org.apache.pirk.schema.data.partitioner.DataPartitioner]({{ 
site.baseurl 
}}/javadocs/org/apache/pirk/schema/data/partitioner/DataPartitioner) interface. 
There are several implemented Partitioners available in the 
[org.apache.pirk.schema.data.partitioner]({{ site.baseurl 
}}/javadocs/org/apache/pirk/schema/data/partitioner) package.
+
+### Query Schema
+
+The format of the query schema XML file is as follows:
+
+       <schema>
+         <schemaName> name of the query schema </schemaName>
+         <dataSchemaName> name of the data schema over which this query is run 
</dataSchemaName>
+         <selectorName> name of the element in the data schema that will be 
the selector </selectorName>
+         <elements>
+               <name> element name of element in the data schema to include in 
the query response </name>
+         </elements>
+         <filter> (optional) name of the filter class to use to filter the 
data </filter>
+         <filterNames>
+              <name> (optional) element name of element in the data schema to 
apply pre-processing filters </name>
+         </filterNames>
+       </schema>
+
+
+The selectorName is the name of the element in the corresponding data schema 
that is to be used as the primary selector or indicator for the query (see 
Wideskies paper [link]). 
+
+The elements field specifies all elements (via \<name\>) within a given piece 
of data to return as part of the encrypted query.
+
+Optionally, the Responder can perform filtering on the input target data 
before performing the encrypted query. The filter class must implement the 
[org.apache.pirk.schema.query.filter.DataFilter]({{ site.baseurl 
}}/javadocs/org/apache/pirk/schema/query/filter/DataFilter) interface. Specific 
elements of a piece of input data on which the filter should be applied can be 
specified via \<filterNames\>; for example, for the 
[org.apache.pirk.schema.query.filter.StopListFilter]({{ site.baseurl 
}}/javadocs/org/apache/pirk/schema/query/filter/StopListFilter), filterNames 
may include the qname if the target data is a set of DNS records.
+
+## Querier
+
+The Querier is currently written to operate in a standalone (non-distributed), 
multi-threaded mode.
+
+For Wideskies, the user will need to generate the encrypted query vector via 
the [QuerierDriver]({{ site.baseurl 
}}/javadocs/org/apache/pirk/querier/wideskies/QuerierDriver).  Options 
available for query generation are given by:
+
+       java -cp <pirkJar>  org.apache.pirk.querier.wideskies.QuerierDriver 
—help
+
+The QuerierDriver generates [Query]({{ site.baseurl 
}}/javadocs/org/apache/pirk/query/wideskies/Query) and [Querier]({{ 
site.baseurl }}/javadocs/org/apache/pirk/querier/wideskies/Querier) objects and 
serializes them, respectively, to two files. 
+
+The Query object contains the encrypted query vectors and all information 
necessary for the Responder to perform the encrypted query. The file containing 
the Query object should be sent to the Responder platform; it is used as input 
for the Responder to execute the query. 
+
+The Querier object contains the information necessary for the Querier to 
decrypt the results of the encrypted query. The file containing the Querier 
object must not be sent to the Responder as it contains the 
encryption/decryption keys for the query.
+
+## Responder
+
+### Platforms
+
+The Responder currently operates on the following platforms:
+
+* Standalone, multithreaded (mainly used for testing purposes)
+* Spark batch, reading from HDFS or Elasticsearch
+* Hadoop MapReduce batch, reading from HDFS or Elasticsearch
+
+The [RoadMap]({{ site.baseurl }}/roadmap) details plans for various streaming 
implementations. 
+
+Components of the Responder implementations may also be called independently 
in custom workflows.
+
+### Target Data
+
+Target data is assumed to be in HDFS for the distributed Responder variants 
and in the local file system for the standalone version. 
+
+### Launching 
+
+The Responder can be launched via the [ResponderDriver]({{ site.baseurl 
}}/javadocs/org/apache/pirk/responder/wideskies/ResponderDriver).  Options 
available via the ResponderDriver are given by:
+
+       java -cp <pirkJar> org.apache.pirk.responder.wideskies.ResponderDriver 
—help
+
+When using the MapReduce implementation, launch the Responder via the 
following command:
+
+       hadoop jar <pirkJar> 
org.apache.pirk.responder.wideskies.ResponderDriver <responder options>
+
+When using the Spark implementation, launch the Responder via spark-submit as 
follows:
+
+       spark-submit <spark options> <pirkJar> 
org.apache.pirk.responder.wideskies.ResponderDriver <responder options>
+
+### Responder Output
+
+The Responder performs the encrypted query, stores the results in a 
[Response]({{ site.baseurl 
}}/javadocs/org/apache/pirk/response/wideskies/Response) object, and serializes 
this object to the output location specified in the \<responder options\>. For 
Responder implementations running in Hadoop MapReduce or Spark, this output 
file is stored in HDFS.
+
+The file containing the serialized Response object should be returned to the 
Querier for decryption.
+

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/e493ba2b/get_involved_pirk.md
----------------------------------------------------------------------
diff --git a/get_involved_pirk.md b/get_involved_pirk.md
new file mode 100755
index 0000000..075ba3e
--- /dev/null
+++ b/get_involved_pirk.md
@@ -0,0 +1,22 @@
+---
+title: Get Involved
+nav: nav_getinvolvedpirk
+---
+
+You don’t need to be a software developer to contribute to Pirk. A 
successful project requires many people to play many roles. Some members write 
code or documentation, while others are valuable as testers, submitting patches 
and suggestions. 
+
+We also highly encourage the involvement of algorithmic team members who 
provide algorithmic ideas and who may or may not participate in their 
implementation.
+
+## Team
+
+The team is comprised of [Project Management Committee Members and 
Contributors]({{ site.baseurl }}/people_pirk). Members have direct access to 
the source of a project and actively evolve the code-base. Contributors improve 
the project through submission of patches and suggestions to the Members. 
+
+The number of Contributors to the project is unbounded - we would love for you 
to get involved. All contributions to the project are greatly appreciated!
+
+## Mailing lists
+
+To start to get plugged into the project, please check out our [mailing 
lists]({{ site.baseurl }}/mailing_list_pirk).
+
+## Meetups
+
+Check back for meetup listings.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/e493ba2b/images/6edb214e-3f97-4edf-b1b6-c1c6269a41a7.png
----------------------------------------------------------------------
diff --git a/images/6edb214e-3f97-4edf-b1b6-c1c6269a41a7.png 
b/images/6edb214e-3f97-4edf-b1b6-c1c6269a41a7.png
new file mode 100644
index 0000000..846668e
Binary files /dev/null and b/images/6edb214e-3f97-4edf-b1b6-c1c6269a41a7.png 
differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/e493ba2b/images/GitHub-Mark-32px.png
----------------------------------------------------------------------
diff --git a/images/GitHub-Mark-32px.png b/images/GitHub-Mark-32px.png
new file mode 100755
index 0000000..8b25551
Binary files /dev/null and b/images/GitHub-Mark-32px.png differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/e493ba2b/images/Twitter_logo_blue.png
----------------------------------------------------------------------
diff --git a/images/Twitter_logo_blue.png b/images/Twitter_logo_blue.png
new file mode 100755
index 0000000..38bd57d
Binary files /dev/null and b/images/Twitter_logo_blue.png differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/e493ba2b/images/apache-incubator-logo.png
----------------------------------------------------------------------
diff --git a/images/apache-incubator-logo.png b/images/apache-incubator-logo.png
new file mode 100644
index 0000000..81fb31e
Binary files /dev/null and b/images/apache-incubator-logo.png differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/e493ba2b/images/feather-small.gif
----------------------------------------------------------------------
diff --git a/images/feather-small.gif b/images/feather-small.gif
new file mode 100755
index 0000000..5a8a79b
Binary files /dev/null and b/images/feather-small.gif differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/e493ba2b/images/glyphicons_social_17_linked_in.png
----------------------------------------------------------------------
diff --git a/images/glyphicons_social_17_linked_in.png 
b/images/glyphicons_social_17_linked_in.png
new file mode 100755
index 0000000..58c7b64
Binary files /dev/null and b/images/glyphicons_social_17_linked_in.png differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/e493ba2b/images/glyphicons_social_21_github.png
----------------------------------------------------------------------
diff --git a/images/glyphicons_social_21_github.png 
b/images/glyphicons_social_21_github.png
new file mode 100755
index 0000000..e80a682
Binary files /dev/null and b/images/glyphicons_social_21_github.png differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/e493ba2b/images/glyphicons_social_31_twitter.png
----------------------------------------------------------------------
diff --git a/images/glyphicons_social_31_twitter.png 
b/images/glyphicons_social_31_twitter.png
new file mode 100755
index 0000000..b092c87
Binary files /dev/null and b/images/glyphicons_social_31_twitter.png differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/e493ba2b/images/pirkImage.png
----------------------------------------------------------------------
diff --git a/images/pirkImage.png b/images/pirkImage.png
new file mode 100644
index 0000000..45805ea
Binary files /dev/null and b/images/pirkImage.png differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/e493ba2b/images/sort_asc.png
----------------------------------------------------------------------
diff --git a/images/sort_asc.png b/images/sort_asc.png
new file mode 100755
index 0000000..a88d797
Binary files /dev/null and b/images/sort_asc.png differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/e493ba2b/images/sort_both.png
----------------------------------------------------------------------
diff --git a/images/sort_both.png b/images/sort_both.png
new file mode 100755
index 0000000..1867040
Binary files /dev/null and b/images/sort_both.png differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/e493ba2b/images/sort_desc.png
----------------------------------------------------------------------
diff --git a/images/sort_desc.png b/images/sort_desc.png
new file mode 100755
index 0000000..def071e
Binary files /dev/null and b/images/sort_desc.png differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/e493ba2b/images/tapir.png
----------------------------------------------------------------------
diff --git a/images/tapir.png b/images/tapir.png
new file mode 100755
index 0000000..aba2076
Binary files /dev/null and b/images/tapir.png differ

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/e493ba2b/index.md
----------------------------------------------------------------------
diff --git a/index.md b/index.md
new file mode 100755
index 0000000..27f01bc
--- /dev/null
+++ b/index.md
@@ -0,0 +1,95 @@
+---
+title: Apache Pirk (incubating)
+skiph1fortitle: true
+nav: nav_index
+legal_notice: Apache Pirk (incubating), Apache, and the Apache feather logo, 
are trademarks of the [Apache Software Foundation](https://www.apache.org).
+---
+
+<div class="row">
+  <div class="col-md-2" id="sidebar">
+  <br>
+    {% capture social-include %}{% include social.md %}{% endcapture %}{{ 
social-include | markdownify }}
+    <hr>
+    <a href="{{ site.baseurl }}/news"> News</a>
+    <br>
+    <br>
+    {% capture newsfeed-include %}{% include newsfeed.md %}{% endcapture %}{{ 
newsfeed-include | markdownify }}
+    <hr>
+    <br>
+    <a id="apache_incubator_logo" href="http://incubator.apache.org/";><img 
alt="Apache Incubator" class="img-responsive" src="{{ site.baseurl 
}}/images/apache-incubator-logo.png"></a>
+    <br>
+    <p style="text-align:center"><img src="{{ site.baseurl 
}}/images/tapir.png" width="60"/></p>
+  </div>
+  <div class="col-md-8 col-md-offset-1">
+  <br>
+  <img alt="Apache Pirk" class="img-responsive" src="{{ site.baseurl 
}}/images/pirkImage.png" width="500" style="margin:0 auto;"/>
+  <br>
+  <br>
+    <div class="jumbotron" style="text-align:center">
+      <font size="5"><b>Apache Pirk (incubating) is a framework for scalable 
<br> Private Information Retrieval (PIR).</b></font>
+      <br>
+      <br>
+       <a class="btn btn-success" href="downloads/" role="button"><span 
class="glyphicon glyphicon-download"></span> Get Pirk</a>
+    </div>
+  </div>
+</div>
+
+## What is Pirk?
+
+Pirk is a framework for scalable Private Information Retrieval (PIR). The goal 
of Pirk is to provide a landing place for robust, scalable, and practical 
implementations of PIR algorithms.
+
+## Pirk Basics 
+
+[Private Information 
Retrieval](https://en.wikipedia.org/wiki/Private_information_retrieval) (PIR) 
enables a user/entity to privately and securely obtain information from a 
dataset, to which they have been granted access, without revealing, to the 
dataset owner or to an observer, any information regarding the questions asked 
or the results obtained. Employing homomorphic encryption techniques, PIR 
enables datasets to remain resident in their native locations while giving the 
ability to query the datasets with sensitive terms.
+
+There are two parties in a PIR transaction - the Querier, the party asking 
encrypted questions, and the Responder, the party holding the target data and 
answering encrypted questions (performing encrypted queries).  
+
+Pirk is centered around the [Querier]({{ site.baseurl }}/for_users#querier) 
and the [Responder]({{ site.baseurl }}/for_users#responder).
+
+In Pirk, the Querier is responsible for the following:
+
+* Generating the encrypted query vectors (representing encrypted questions)
+* Generating the necessary decryption items for each query vector
+* Decrypting encrypted query results obtained from the Responder
+
+Once the Querier generates an encrypted query, it must be sent to the 
Responder. 
+
+In Pirk, the Responder is responsible for the following:
+
+* Performing encrypted queries over their target datasets (using encrypted 
query vectors)
+* Forming the encrypted query results 
+
+The encrypted query results must be sent from the Responder back to the 
Querier for decryption.
+
+Pirk employs generic [data and query schemas]({{ site.baseurl 
}}/for_users#data-and-query-schemas), specified via XML files, that are shared 
between the Querier and Responder to enable flexible and varied data and query 
types.
+
+## Pirk Framework and Algorithms
+
+The Pirk framework is centered around the Querier and Responder; key 
supporting elements include generic query and data schemas, 
encryption/decryption, query/response, and in-memory and distributed testing 
components. 
+
+Pirk is seeded with the Wideskies PIR algorithm which employs [Paillier 
homomorphic encryption]({{ site.baseurl 
}}/papers/1999_asiacrypt_paillier_paper.pdf); the Wideskies white paper can be 
found [here]({{ site.baseurl }}/papers/wideskies_paper.pdf).
+
+## Getting Started
+
+Pirk can be downloaded [here]({{ site.baseurl }}/downloads)
+
+Pirk is written in Java and uses a Maven build system. Dependencies can be 
found in the pom.xml file and include [Apache 
Hadoop](http://hadoop.apache.org/), [Apache Spark](http://spark.apache.org/),  
and [Elasticsearch](https://github.com/elastic/elasticsearch). Currently, Pirk 
may be utilized in a distributed Hadoop/MapReduce or Spark framework as well as 
in standalone mode.
+
+Pirk is seeded with the Wideskies PIR algorithm; please check out the [white 
paper]({{ site.baseurl }}/papers/wideskies_paper.pdf)
+
+If you are a User, please check out the [For Users]({{ site.baseurl 
}}/for_users) section.
+
+If you are a Developer, please check out the [For Developers]({{ site.baseurl 
}}/for_developers) section.
+
+## Community
+
+Please check out our [community]({{ site.baseurl }}/get_involved) section.
+
+## Roadmap
+
+Please check out our [Roadmap]({{ site.baseurl }}/roadmap).
+
+## Disclaimer
+
+Apache Pirk (incubating) is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the name of Apache TLP sponsor. 
Incubation is required of all newly accepted projects until a further review 
indicates that the infrastructure, communications, and decision making process 
have stabilized in a manner consistent with other successful ASF projects. 
While incubation status is not necessarily a reflection of the completeness or 
stability of the code, it does indicate that the project has yet to be fully 
endorsed by the ASF.
+ 
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/e493ba2b/javadocs/allclasses-frame.html
----------------------------------------------------------------------
diff --git a/javadocs/allclasses-frame.html b/javadocs/allclasses-frame.html
new file mode 100644
index 0000000..5e33273
--- /dev/null
+++ b/javadocs/allclasses-frame.html
@@ -0,0 +1,111 @@
+<!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 (version 1.7.0_80) on Fri Jun 24 12:27:54 EDT 2016 
-->
+<title>All Classes</title>
+<meta name="date" content="2016-06-24">
+<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
+</head>
+<body>
+<h1 class="bar">All Classes</h1>
+<div class="indexContainer">
+<ul>
+<li><a href="org/apache/pirk/responder/wideskies/spark/Accumulators.html" 
title="class in org.apache.pirk.responder.wideskies.spark" 
target="classFrame">Accumulators</a></li>
+<li><a href="org/apache/pirk/inputformat/hadoop/BaseInputFormat.html" 
title="class in org.apache.pirk.inputformat.hadoop" 
target="classFrame">BaseInputFormat</a></li>
+<li><a href="org/apache/pirk/test/utils/BaseTests.html" title="class in 
org.apache.pirk.test.utils" target="classFrame">BaseTests</a></li>
+<li><a href="org/apache/pirk/benchmark/BenchmarkDriver.html" title="class in 
org.apache.pirk.benchmark" target="classFrame">BenchmarkDriver</a></li>
+<li><a href="org/apache/pirk/responder/wideskies/spark/BroadcastVars.html" 
title="class in org.apache.pirk.responder.wideskies.spark" 
target="classFrame">BroadcastVars</a></li>
+<li><a href="org/apache/pirk/inputformat/hadoop/BytesArrayWritable.html" 
title="class in org.apache.pirk.inputformat.hadoop" 
target="classFrame">BytesArrayWritable</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/mapreduce/ColumnMultMapper.html" 
title="class in org.apache.pirk.responder.wideskies.mapreduce" 
target="classFrame">ColumnMultMapper</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/mapreduce/ColumnMultReducer.html" 
title="class in org.apache.pirk.responder.wideskies.mapreduce" 
target="classFrame">ColumnMultReducer</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/common/ComputeEncryptedRow.html" 
title="class in org.apache.pirk.responder.wideskies.common" 
target="classFrame">ComputeEncryptedRow</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/spark/ComputeExpLookupTable.html" 
title="class in org.apache.pirk.responder.wideskies.spark" 
target="classFrame">ComputeExpLookupTable</a></li>
+<li><a href="org/apache/pirk/responder/wideskies/spark/ComputeResponse.html" 
title="class in org.apache.pirk.responder.wideskies.spark" 
target="classFrame">ComputeResponse</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/mapreduce/ComputeResponseTool.html" 
title="class in org.apache.pirk.responder.wideskies.mapreduce" 
target="classFrame">ComputeResponseTool</a></li>
+<li><a href="org/apache/pirk/utils/CSVOutputUtils.html" title="class in 
org.apache.pirk.utils" target="classFrame">CSVOutputUtils</a></li>
+<li><a href="org/apache/pirk/schema/query/filter/DataFilter.html" 
title="interface in org.apache.pirk.schema.query.filter" 
target="classFrame"><i>DataFilter</i></a></li>
+<li><a href="org/apache/pirk/schema/data/partitioner/DataPartitioner.html" 
title="interface in org.apache.pirk.schema.data.partitioner" 
target="classFrame"><i>DataPartitioner</i></a></li>
+<li><a href="org/apache/pirk/schema/data/DataSchema.html" title="class in 
org.apache.pirk.schema.data" target="classFrame">DataSchema</a></li>
+<li><a href="org/apache/pirk/querier/wideskies/decrypt/DecryptResponse.html" 
title="class in org.apache.pirk.querier.wideskies.decrypt" 
target="classFrame">DecryptResponse</a></li>
+<li><a 
href="org/apache/pirk/querier/wideskies/decrypt/DecryptResponseRunnable.html" 
title="class in org.apache.pirk.querier.wideskies.decrypt" 
target="classFrame">DecryptResponseRunnable</a></li>
+<li><a href="org/apache/pirk/test/distributed/DistributedTestCLI.html" 
title="class in org.apache.pirk.test.distributed" 
target="classFrame">DistributedTestCLI</a></li>
+<li><a href="org/apache/pirk/test/distributed/DistributedTestDriver.html" 
title="class in org.apache.pirk.test.distributed" 
target="classFrame">DistributedTestDriver</a></li>
+<li><a href="org/apache/pirk/test/distributed/testsuite/DistTestSuite.html" 
title="class in org.apache.pirk.test.distributed.testsuite" 
target="classFrame">DistTestSuite</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/spark/EncColMultGroupedMapper.html" 
title="class in org.apache.pirk.responder.wideskies.spark" 
target="classFrame">EncColMultGroupedMapper</a></li>
+<li><a href="org/apache/pirk/responder/wideskies/spark/EncColMultReducer.html" 
title="class in org.apache.pirk.responder.wideskies.spark" 
target="classFrame">EncColMultReducer</a></li>
+<li><a href="org/apache/pirk/responder/wideskies/spark/EncRowCalc.html" 
title="class in org.apache.pirk.responder.wideskies.spark" 
target="classFrame">EncRowCalc</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/spark/EncRowCalcPrecomputedCache.html"
 title="class in org.apache.pirk.responder.wideskies.spark" 
target="classFrame">EncRowCalcPrecomputedCache</a></li>
+<li><a href="org/apache/pirk/querier/wideskies/encrypt/EncryptQuery.html" 
title="class in org.apache.pirk.querier.wideskies.encrypt" 
target="classFrame">EncryptQuery</a></li>
+<li><a 
href="org/apache/pirk/querier/wideskies/encrypt/EncryptQueryRunnable.html" 
title="class in org.apache.pirk.querier.wideskies.encrypt" 
target="classFrame">EncryptQueryRunnable</a></li>
+<li><a href="org/apache/pirk/utils/EpochDateParser.html" title="class in 
org.apache.pirk.utils" target="classFrame">EpochDateParser</a></li>
+<li><a href="org/apache/pirk/responder/wideskies/spark/ExpKeyFilenameMap.html" 
title="class in org.apache.pirk.responder.wideskies.spark" 
target="classFrame">ExpKeyFilenameMap</a></li>
+<li><a href="org/apache/pirk/responder/wideskies/spark/ExpTableGenerator.html" 
title="class in org.apache.pirk.responder.wideskies.spark" 
target="classFrame">ExpTableGenerator</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/mapreduce/ExpTableMapper.html" 
title="class in org.apache.pirk.responder.wideskies.mapreduce" 
target="classFrame">ExpTableMapper</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/mapreduce/ExpTableReducer.html" 
title="class in org.apache.pirk.responder.wideskies.mapreduce" 
target="classFrame">ExpTableReducer</a></li>
+<li><a href="org/apache/pirk/querier/wideskies/encrypt/ExpTableRunnable.html" 
title="class in org.apache.pirk.querier.wideskies.encrypt" 
target="classFrame">ExpTableRunnable</a></li>
+<li><a href="org/apache/pirk/utils/FileConst.html" title="class in 
org.apache.pirk.utils" target="classFrame">FileConst</a></li>
+<li><a href="org/apache/pirk/utils/FileIOUtils.html" title="class in 
org.apache.pirk.utils" target="classFrame">FileIOUtils</a></li>
+<li><a href="org/apache/pirk/utils/FileIOUtils.Callable.html" title="interface 
in org.apache.pirk.utils" 
target="classFrame"><i>FileIOUtils.Callable</i></a></li>
+<li><a href="org/apache/pirk/responder/wideskies/spark/FilterData.html" 
title="class in org.apache.pirk.responder.wideskies.spark" 
target="classFrame">FilterData</a></li>
+<li><a href="org/apache/pirk/schema/query/filter/FilterFactory.html" 
title="class in org.apache.pirk.schema.query.filter" 
target="classFrame">FilterFactory</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/mapreduce/FinalResponseReducer.html" 
title="class in org.apache.pirk.responder.wideskies.mapreduce" 
target="classFrame">FinalResponseReducer</a></li>
+<li><a href="org/apache/pirk/utils/GenerateCronItems.html" title="class in 
org.apache.pirk.utils" target="classFrame">GenerateCronItems</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/common/HashSelectorAndPartitionData.html"
 title="class in org.apache.pirk.responder.wideskies.common" 
target="classFrame">HashSelectorAndPartitionData</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/spark/HashSelectorsAndPartitionData.html"
 title="class in org.apache.pirk.responder.wideskies.spark" 
target="classFrame">HashSelectorsAndPartitionData</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/mapreduce/HashSelectorsAndPartitionDataMapper.html"
 title="class in org.apache.pirk.responder.wideskies.mapreduce" 
target="classFrame">HashSelectorsAndPartitionDataMapper</a></li>
+<li><a href="org/apache/pirk/utils/HDFS.html" title="class in 
org.apache.pirk.utils" target="classFrame">HDFS</a></li>
+<li><a href="org/apache/pirk/inputformat/hadoop/InputFormatConst.html" 
title="class in org.apache.pirk.inputformat.hadoop" 
target="classFrame">InputFormatConst</a></li>
+<li><a href="org/apache/pirk/test/utils/Inputs.html" title="class in 
org.apache.pirk.test.utils" target="classFrame">Inputs</a></li>
+<li><a href="org/apache/pirk/schema/data/partitioner/IPDataPartitioner.html" 
title="class in org.apache.pirk.schema.data.partitioner" 
target="classFrame">IPDataPartitioner</a></li>
+<li><a href="org/apache/pirk/utils/ISO8601DateParser.html" title="class in 
org.apache.pirk.utils" target="classFrame">ISO8601DateParser</a></li>
+<li><a href="test/general/ISO8601DateParserTest.html" title="class in 
test.general" target="classFrame">ISO8601DateParserTest</a></li>
+<li><a 
href="org/apache/pirk/schema/data/partitioner/ISO8601DatePartitioner.html" 
title="class in org.apache.pirk.schema.data.partitioner" 
target="classFrame">ISO8601DatePartitioner</a></li>
+<li><a href="org/apache/pirk/inputformat/hadoop/json/JSONInputFormat.html" 
title="class in org.apache.pirk.inputformat.hadoop.json" 
target="classFrame">JSONInputFormat</a></li>
+<li><a href="org/apache/pirk/inputformat/hadoop/json/JSONInputFormatBase.html" 
title="class in org.apache.pirk.inputformat.hadoop.json" 
target="classFrame">JSONInputFormatBase</a></li>
+<li><a href="org/apache/pirk/inputformat/hadoop/json/JSONRecordReader.html" 
title="class in org.apache.pirk.inputformat.hadoop.json" 
target="classFrame">JSONRecordReader</a></li>
+<li><a href="org/apache/pirk/utils/KeyedHash.html" title="class in 
org.apache.pirk.utils" target="classFrame">KeyedHash</a></li>
+<li><a href="test/general/KeyedHashTest.html" title="class in test.general" 
target="classFrame">KeyedHashTest</a></li>
+<li><a href="org/apache/pirk/schema/data/LoadDataSchemas.html" title="class in 
org.apache.pirk.schema.data" target="classFrame">LoadDataSchemas</a></li>
+<li><a href="test/schema/data/LoadDataSchemaTest.html" title="class in 
test.schema.data" target="classFrame">LoadDataSchemaTest</a></li>
+<li><a href="org/apache/pirk/schema/query/LoadQuerySchemas.html" title="class 
in org.apache.pirk.schema.query" target="classFrame">LoadQuerySchemas</a></li>
+<li><a href="test/schema/query/LoadQuerySchemaTest.html" title="class in 
test.schema.query" target="classFrame">LoadQuerySchemaTest</a></li>
+<li><a href="org/apache/pirk/utils/LogUtils.html" title="class in 
org.apache.pirk.utils" target="classFrame">LogUtils</a></li>
+<li><a href="org/apache/pirk/encryption/ModPowAbstraction.html" title="class 
in org.apache.pirk.encryption" target="classFrame">ModPowAbstraction</a></li>
+<li><a href="org/apache/pirk/responder/wideskies/mapreduce/MRStats.html" 
title="class in org.apache.pirk.responder.wideskies.mapreduce" 
target="classFrame">MRStats</a></li>
+<li><a href="org/apache/pirk/responder/wideskies/mapreduce/MRStats.Stats.html" 
title="enum in org.apache.pirk.responder.wideskies.mapreduce" 
target="classFrame">MRStats.Stats</a></li>
+<li><a href="org/apache/pirk/encryption/Paillier.html" title="class in 
org.apache.pirk.encryption" target="classFrame">Paillier</a></li>
+<li><a href="org/apache/pirk/benchmark/PaillierBenchmark.html" title="class in 
org.apache.pirk.benchmark" target="classFrame">PaillierBenchmark</a></li>
+<li><a 
href="org/apache/pirk/benchmark/PaillierBenchmark.PaillierBenchmarkState.html" 
title="class in org.apache.pirk.benchmark" 
target="classFrame">PaillierBenchmark.PaillierBenchmarkState</a></li>
+<li><a href="test/general/PartitionUtilsTest.html" title="class in 
test.general" target="classFrame">PartitionUtilsTest</a></li>
+<li><a href="org/apache/pirk/utils/PIRException.html" title="class in 
org.apache.pirk.utils" target="classFrame">PIRException</a></li>
+<li><a href="org/apache/pirk/encryption/PrimeGenerator.html" title="class in 
org.apache.pirk.encryption" target="classFrame">PrimeGenerator</a></li>
+<li><a 
href="org/apache/pirk/schema/data/partitioner/PrimitiveTypePartitioner.html" 
title="class in org.apache.pirk.schema.data.partitioner" 
target="classFrame">PrimitiveTypePartitioner</a></li>
+<li><a href="org/apache/pirk/querier/wideskies/Querier.html" title="class in 
org.apache.pirk.querier.wideskies" target="classFrame">Querier</a></li>
+<li><a href="org/apache/pirk/querier/wideskies/QuerierConst.html" title="class 
in org.apache.pirk.querier.wideskies" target="classFrame">QuerierConst</a></li>
+<li><a href="org/apache/pirk/querier/wideskies/QuerierDriver.html" 
title="class in org.apache.pirk.querier.wideskies" 
target="classFrame">QuerierDriver</a></li>
+<li><a href="org/apache/pirk/querier/wideskies/QuerierDriverCLI.html" 
title="class in org.apache.pirk.querier.wideskies" 
target="classFrame">QuerierDriverCLI</a></li>
+<li><a href="org/apache/pirk/query/wideskies/Query.html" title="class in 
org.apache.pirk.query.wideskies" target="classFrame">Query</a></li>
+<li><a href="org/apache/pirk/query/wideskies/QueryInfo.html" title="class in 
org.apache.pirk.query.wideskies" target="classFrame">QueryInfo</a></li>
+<li><a href="org/apache/pirk/utils/QueryParserUtils.html" title="class in 
org.apache.pirk.utils" target="classFrame">QueryParserUtils</a></li>
+<li><a href="test/general/QueryParserUtilsTest.html" title="class in 
test.general" target="classFrame">QueryParserUtilsTest</a></li>
+<li><a href="org/apache/pirk/schema/response/QueryResponseJSON.html" 
title="class in org.apache.pirk.schema.response" 
target="classFrame">QueryResponseJSON</a></li>
+<li><a href="org/apache/pirk/schema/query/QuerySchema.html" title="class in 
org.apache.pirk.schema.query" target="classFrame">QuerySchema</a></li>
+<li><a href="org/apache/pirk/query/wideskies/QueryUtils.html" title="class in 
org.apache.pirk.query.wideskies" target="classFrame">QueryUtils</a></li>
+<li><a href="org/apache/pirk/responder/wideskies/standalone/Responder.html" 
title="class in org.apache.pirk.responder.wideskies.standalone" 
target="classFrame">Responder</a></li>
+<li><a href="org/apache/pirk/responder/wideskies/ResponderCLI.html" 
title="class in org.apache.pirk.responder.wideskies" 
target="classFrame">ResponderCLI</a></li>
+<li><a href="org/apache/pirk/responder/wideskies/ResponderDriver.html" 
title="class in org.apache.pirk.responder.wideskies" 
target="classFrame">ResponderDriver</a></li>
+<li><a href="org/apache/pirk/response/wideskies/Response.html" title="class in 
org.apache.pirk.response.wideskies" target="classFrame">Response</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/mapreduce/RowCalcReducer.html" 
title="class in org.apache.pirk.responder.wideskies.mapreduce" 
target="classFrame">RowCalcReducer</a></li>
+<li><a href="org/apache/pirk/test/utils/StandaloneQuery.html" title="class in 
org.apache.pirk.test.utils" target="classFrame">StandaloneQuery</a></li>
+<li><a href="test/wideskies/standalone/StandaloneTest.html" title="class in 
test.wideskies.standalone" target="classFrame">StandaloneTest</a></li>
+<li><a href="org/apache/pirk/schema/query/filter/StopListFilter.html" 
title="class in org.apache.pirk.schema.query.filter" 
target="classFrame">StopListFilter</a></li>
+<li><a href="org/apache/pirk/utils/StopListUtils.html" title="class in 
org.apache.pirk.utils" target="classFrame">StopListUtils</a></li>
+<li><a href="org/apache/pirk/utils/StringUtils.html" title="class in 
org.apache.pirk.utils" target="classFrame">StringUtils</a></li>
+<li><a href="org/apache/pirk/utils/SystemConfiguration.html" title="class in 
org.apache.pirk.utils" target="classFrame">SystemConfiguration</a></li>
+<li><a href="org/apache/pirk/test/utils/TestUtils.html" title="class in 
org.apache.pirk.test.utils" target="classFrame">TestUtils</a></li>
+<li><a href="org/apache/pirk/inputformat/hadoop/TextArrayWritable.html" 
title="class in org.apache.pirk.inputformat.hadoop" 
target="classFrame">TextArrayWritable</a></li>
+</ul>
+</div>
+</body>
+</html>

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/e493ba2b/javadocs/allclasses-noframe.html
----------------------------------------------------------------------
diff --git a/javadocs/allclasses-noframe.html b/javadocs/allclasses-noframe.html
new file mode 100644
index 0000000..02c47ef
--- /dev/null
+++ b/javadocs/allclasses-noframe.html
@@ -0,0 +1,111 @@
+<!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 (version 1.7.0_80) on Fri Jun 24 12:27:54 EDT 2016 
-->
+<title>All Classes</title>
+<meta name="date" content="2016-06-24">
+<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
+</head>
+<body>
+<h1 class="bar">All Classes</h1>
+<div class="indexContainer">
+<ul>
+<li><a href="org/apache/pirk/responder/wideskies/spark/Accumulators.html" 
title="class in org.apache.pirk.responder.wideskies.spark">Accumulators</a></li>
+<li><a href="org/apache/pirk/inputformat/hadoop/BaseInputFormat.html" 
title="class in org.apache.pirk.inputformat.hadoop">BaseInputFormat</a></li>
+<li><a href="org/apache/pirk/test/utils/BaseTests.html" title="class in 
org.apache.pirk.test.utils">BaseTests</a></li>
+<li><a href="org/apache/pirk/benchmark/BenchmarkDriver.html" title="class in 
org.apache.pirk.benchmark">BenchmarkDriver</a></li>
+<li><a href="org/apache/pirk/responder/wideskies/spark/BroadcastVars.html" 
title="class in 
org.apache.pirk.responder.wideskies.spark">BroadcastVars</a></li>
+<li><a href="org/apache/pirk/inputformat/hadoop/BytesArrayWritable.html" 
title="class in org.apache.pirk.inputformat.hadoop">BytesArrayWritable</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/mapreduce/ColumnMultMapper.html" 
title="class in 
org.apache.pirk.responder.wideskies.mapreduce">ColumnMultMapper</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/mapreduce/ColumnMultReducer.html" 
title="class in 
org.apache.pirk.responder.wideskies.mapreduce">ColumnMultReducer</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/common/ComputeEncryptedRow.html" 
title="class in 
org.apache.pirk.responder.wideskies.common">ComputeEncryptedRow</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/spark/ComputeExpLookupTable.html" 
title="class in 
org.apache.pirk.responder.wideskies.spark">ComputeExpLookupTable</a></li>
+<li><a href="org/apache/pirk/responder/wideskies/spark/ComputeResponse.html" 
title="class in 
org.apache.pirk.responder.wideskies.spark">ComputeResponse</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/mapreduce/ComputeResponseTool.html" 
title="class in 
org.apache.pirk.responder.wideskies.mapreduce">ComputeResponseTool</a></li>
+<li><a href="org/apache/pirk/utils/CSVOutputUtils.html" title="class in 
org.apache.pirk.utils">CSVOutputUtils</a></li>
+<li><a href="org/apache/pirk/schema/query/filter/DataFilter.html" 
title="interface in 
org.apache.pirk.schema.query.filter"><i>DataFilter</i></a></li>
+<li><a href="org/apache/pirk/schema/data/partitioner/DataPartitioner.html" 
title="interface in 
org.apache.pirk.schema.data.partitioner"><i>DataPartitioner</i></a></li>
+<li><a href="org/apache/pirk/schema/data/DataSchema.html" title="class in 
org.apache.pirk.schema.data">DataSchema</a></li>
+<li><a href="org/apache/pirk/querier/wideskies/decrypt/DecryptResponse.html" 
title="class in 
org.apache.pirk.querier.wideskies.decrypt">DecryptResponse</a></li>
+<li><a 
href="org/apache/pirk/querier/wideskies/decrypt/DecryptResponseRunnable.html" 
title="class in 
org.apache.pirk.querier.wideskies.decrypt">DecryptResponseRunnable</a></li>
+<li><a href="org/apache/pirk/test/distributed/DistributedTestCLI.html" 
title="class in org.apache.pirk.test.distributed">DistributedTestCLI</a></li>
+<li><a href="org/apache/pirk/test/distributed/DistributedTestDriver.html" 
title="class in org.apache.pirk.test.distributed">DistributedTestDriver</a></li>
+<li><a href="org/apache/pirk/test/distributed/testsuite/DistTestSuite.html" 
title="class in 
org.apache.pirk.test.distributed.testsuite">DistTestSuite</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/spark/EncColMultGroupedMapper.html" 
title="class in 
org.apache.pirk.responder.wideskies.spark">EncColMultGroupedMapper</a></li>
+<li><a href="org/apache/pirk/responder/wideskies/spark/EncColMultReducer.html" 
title="class in 
org.apache.pirk.responder.wideskies.spark">EncColMultReducer</a></li>
+<li><a href="org/apache/pirk/responder/wideskies/spark/EncRowCalc.html" 
title="class in org.apache.pirk.responder.wideskies.spark">EncRowCalc</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/spark/EncRowCalcPrecomputedCache.html"
 title="class in 
org.apache.pirk.responder.wideskies.spark">EncRowCalcPrecomputedCache</a></li>
+<li><a href="org/apache/pirk/querier/wideskies/encrypt/EncryptQuery.html" 
title="class in org.apache.pirk.querier.wideskies.encrypt">EncryptQuery</a></li>
+<li><a 
href="org/apache/pirk/querier/wideskies/encrypt/EncryptQueryRunnable.html" 
title="class in 
org.apache.pirk.querier.wideskies.encrypt">EncryptQueryRunnable</a></li>
+<li><a href="org/apache/pirk/utils/EpochDateParser.html" title="class in 
org.apache.pirk.utils">EpochDateParser</a></li>
+<li><a href="org/apache/pirk/responder/wideskies/spark/ExpKeyFilenameMap.html" 
title="class in 
org.apache.pirk.responder.wideskies.spark">ExpKeyFilenameMap</a></li>
+<li><a href="org/apache/pirk/responder/wideskies/spark/ExpTableGenerator.html" 
title="class in 
org.apache.pirk.responder.wideskies.spark">ExpTableGenerator</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/mapreduce/ExpTableMapper.html" 
title="class in 
org.apache.pirk.responder.wideskies.mapreduce">ExpTableMapper</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/mapreduce/ExpTableReducer.html" 
title="class in 
org.apache.pirk.responder.wideskies.mapreduce">ExpTableReducer</a></li>
+<li><a href="org/apache/pirk/querier/wideskies/encrypt/ExpTableRunnable.html" 
title="class in 
org.apache.pirk.querier.wideskies.encrypt">ExpTableRunnable</a></li>
+<li><a href="org/apache/pirk/utils/FileConst.html" title="class in 
org.apache.pirk.utils">FileConst</a></li>
+<li><a href="org/apache/pirk/utils/FileIOUtils.html" title="class in 
org.apache.pirk.utils">FileIOUtils</a></li>
+<li><a href="org/apache/pirk/utils/FileIOUtils.Callable.html" title="interface 
in org.apache.pirk.utils"><i>FileIOUtils.Callable</i></a></li>
+<li><a href="org/apache/pirk/responder/wideskies/spark/FilterData.html" 
title="class in org.apache.pirk.responder.wideskies.spark">FilterData</a></li>
+<li><a href="org/apache/pirk/schema/query/filter/FilterFactory.html" 
title="class in org.apache.pirk.schema.query.filter">FilterFactory</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/mapreduce/FinalResponseReducer.html" 
title="class in 
org.apache.pirk.responder.wideskies.mapreduce">FinalResponseReducer</a></li>
+<li><a href="org/apache/pirk/utils/GenerateCronItems.html" title="class in 
org.apache.pirk.utils">GenerateCronItems</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/common/HashSelectorAndPartitionData.html"
 title="class in 
org.apache.pirk.responder.wideskies.common">HashSelectorAndPartitionData</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/spark/HashSelectorsAndPartitionData.html"
 title="class in 
org.apache.pirk.responder.wideskies.spark">HashSelectorsAndPartitionData</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/mapreduce/HashSelectorsAndPartitionDataMapper.html"
 title="class in 
org.apache.pirk.responder.wideskies.mapreduce">HashSelectorsAndPartitionDataMapper</a></li>
+<li><a href="org/apache/pirk/utils/HDFS.html" title="class in 
org.apache.pirk.utils">HDFS</a></li>
+<li><a href="org/apache/pirk/inputformat/hadoop/InputFormatConst.html" 
title="class in org.apache.pirk.inputformat.hadoop">InputFormatConst</a></li>
+<li><a href="org/apache/pirk/test/utils/Inputs.html" title="class in 
org.apache.pirk.test.utils">Inputs</a></li>
+<li><a href="org/apache/pirk/schema/data/partitioner/IPDataPartitioner.html" 
title="class in 
org.apache.pirk.schema.data.partitioner">IPDataPartitioner</a></li>
+<li><a href="org/apache/pirk/utils/ISO8601DateParser.html" title="class in 
org.apache.pirk.utils">ISO8601DateParser</a></li>
+<li><a href="test/general/ISO8601DateParserTest.html" title="class in 
test.general">ISO8601DateParserTest</a></li>
+<li><a 
href="org/apache/pirk/schema/data/partitioner/ISO8601DatePartitioner.html" 
title="class in 
org.apache.pirk.schema.data.partitioner">ISO8601DatePartitioner</a></li>
+<li><a href="org/apache/pirk/inputformat/hadoop/json/JSONInputFormat.html" 
title="class in 
org.apache.pirk.inputformat.hadoop.json">JSONInputFormat</a></li>
+<li><a href="org/apache/pirk/inputformat/hadoop/json/JSONInputFormatBase.html" 
title="class in 
org.apache.pirk.inputformat.hadoop.json">JSONInputFormatBase</a></li>
+<li><a href="org/apache/pirk/inputformat/hadoop/json/JSONRecordReader.html" 
title="class in 
org.apache.pirk.inputformat.hadoop.json">JSONRecordReader</a></li>
+<li><a href="org/apache/pirk/utils/KeyedHash.html" title="class in 
org.apache.pirk.utils">KeyedHash</a></li>
+<li><a href="test/general/KeyedHashTest.html" title="class in 
test.general">KeyedHashTest</a></li>
+<li><a href="org/apache/pirk/schema/data/LoadDataSchemas.html" title="class in 
org.apache.pirk.schema.data">LoadDataSchemas</a></li>
+<li><a href="test/schema/data/LoadDataSchemaTest.html" title="class in 
test.schema.data">LoadDataSchemaTest</a></li>
+<li><a href="org/apache/pirk/schema/query/LoadQuerySchemas.html" title="class 
in org.apache.pirk.schema.query">LoadQuerySchemas</a></li>
+<li><a href="test/schema/query/LoadQuerySchemaTest.html" title="class in 
test.schema.query">LoadQuerySchemaTest</a></li>
+<li><a href="org/apache/pirk/utils/LogUtils.html" title="class in 
org.apache.pirk.utils">LogUtils</a></li>
+<li><a href="org/apache/pirk/encryption/ModPowAbstraction.html" title="class 
in org.apache.pirk.encryption">ModPowAbstraction</a></li>
+<li><a href="org/apache/pirk/responder/wideskies/mapreduce/MRStats.html" 
title="class in org.apache.pirk.responder.wideskies.mapreduce">MRStats</a></li>
+<li><a href="org/apache/pirk/responder/wideskies/mapreduce/MRStats.Stats.html" 
title="enum in 
org.apache.pirk.responder.wideskies.mapreduce">MRStats.Stats</a></li>
+<li><a href="org/apache/pirk/encryption/Paillier.html" title="class in 
org.apache.pirk.encryption">Paillier</a></li>
+<li><a href="org/apache/pirk/benchmark/PaillierBenchmark.html" title="class in 
org.apache.pirk.benchmark">PaillierBenchmark</a></li>
+<li><a 
href="org/apache/pirk/benchmark/PaillierBenchmark.PaillierBenchmarkState.html" 
title="class in 
org.apache.pirk.benchmark">PaillierBenchmark.PaillierBenchmarkState</a></li>
+<li><a href="test/general/PartitionUtilsTest.html" title="class in 
test.general">PartitionUtilsTest</a></li>
+<li><a href="org/apache/pirk/utils/PIRException.html" title="class in 
org.apache.pirk.utils">PIRException</a></li>
+<li><a href="org/apache/pirk/encryption/PrimeGenerator.html" title="class in 
org.apache.pirk.encryption">PrimeGenerator</a></li>
+<li><a 
href="org/apache/pirk/schema/data/partitioner/PrimitiveTypePartitioner.html" 
title="class in 
org.apache.pirk.schema.data.partitioner">PrimitiveTypePartitioner</a></li>
+<li><a href="org/apache/pirk/querier/wideskies/Querier.html" title="class in 
org.apache.pirk.querier.wideskies">Querier</a></li>
+<li><a href="org/apache/pirk/querier/wideskies/QuerierConst.html" title="class 
in org.apache.pirk.querier.wideskies">QuerierConst</a></li>
+<li><a href="org/apache/pirk/querier/wideskies/QuerierDriver.html" 
title="class in org.apache.pirk.querier.wideskies">QuerierDriver</a></li>
+<li><a href="org/apache/pirk/querier/wideskies/QuerierDriverCLI.html" 
title="class in org.apache.pirk.querier.wideskies">QuerierDriverCLI</a></li>
+<li><a href="org/apache/pirk/query/wideskies/Query.html" title="class in 
org.apache.pirk.query.wideskies">Query</a></li>
+<li><a href="org/apache/pirk/query/wideskies/QueryInfo.html" title="class in 
org.apache.pirk.query.wideskies">QueryInfo</a></li>
+<li><a href="org/apache/pirk/utils/QueryParserUtils.html" title="class in 
org.apache.pirk.utils">QueryParserUtils</a></li>
+<li><a href="test/general/QueryParserUtilsTest.html" title="class in 
test.general">QueryParserUtilsTest</a></li>
+<li><a href="org/apache/pirk/schema/response/QueryResponseJSON.html" 
title="class in org.apache.pirk.schema.response">QueryResponseJSON</a></li>
+<li><a href="org/apache/pirk/schema/query/QuerySchema.html" title="class in 
org.apache.pirk.schema.query">QuerySchema</a></li>
+<li><a href="org/apache/pirk/query/wideskies/QueryUtils.html" title="class in 
org.apache.pirk.query.wideskies">QueryUtils</a></li>
+<li><a href="org/apache/pirk/responder/wideskies/standalone/Responder.html" 
title="class in 
org.apache.pirk.responder.wideskies.standalone">Responder</a></li>
+<li><a href="org/apache/pirk/responder/wideskies/ResponderCLI.html" 
title="class in org.apache.pirk.responder.wideskies">ResponderCLI</a></li>
+<li><a href="org/apache/pirk/responder/wideskies/ResponderDriver.html" 
title="class in org.apache.pirk.responder.wideskies">ResponderDriver</a></li>
+<li><a href="org/apache/pirk/response/wideskies/Response.html" title="class in 
org.apache.pirk.response.wideskies">Response</a></li>
+<li><a 
href="org/apache/pirk/responder/wideskies/mapreduce/RowCalcReducer.html" 
title="class in 
org.apache.pirk.responder.wideskies.mapreduce">RowCalcReducer</a></li>
+<li><a href="org/apache/pirk/test/utils/StandaloneQuery.html" title="class in 
org.apache.pirk.test.utils">StandaloneQuery</a></li>
+<li><a href="test/wideskies/standalone/StandaloneTest.html" title="class in 
test.wideskies.standalone">StandaloneTest</a></li>
+<li><a href="org/apache/pirk/schema/query/filter/StopListFilter.html" 
title="class in org.apache.pirk.schema.query.filter">StopListFilter</a></li>
+<li><a href="org/apache/pirk/utils/StopListUtils.html" title="class in 
org.apache.pirk.utils">StopListUtils</a></li>
+<li><a href="org/apache/pirk/utils/StringUtils.html" title="class in 
org.apache.pirk.utils">StringUtils</a></li>
+<li><a href="org/apache/pirk/utils/SystemConfiguration.html" title="class in 
org.apache.pirk.utils">SystemConfiguration</a></li>
+<li><a href="org/apache/pirk/test/utils/TestUtils.html" title="class in 
org.apache.pirk.test.utils">TestUtils</a></li>
+<li><a href="org/apache/pirk/inputformat/hadoop/TextArrayWritable.html" 
title="class in org.apache.pirk.inputformat.hadoop">TextArrayWritable</a></li>
+</ul>
+</div>
+</body>
+</html>

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/e493ba2b/javadocs/constant-values.html
----------------------------------------------------------------------
diff --git a/javadocs/constant-values.html b/javadocs/constant-values.html
new file mode 100644
index 0000000..981902c
--- /dev/null
+++ b/javadocs/constant-values.html
@@ -0,0 +1,606 @@
+<!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 (version 1.7.0_80) on Fri Jun 24 12:27:54 EDT 2016 
-->
+<title>Constant Field Values</title>
+<meta name="date" content="2016-06-24">
+<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
+</head>
+<body>
+<script type="text/javascript"><!--
+    if (location.href.indexOf('is-external=true') == -1) {
+        parent.document.title="Constant Field Values";
+    }
+//-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a name="navbar_top">
+<!--   -->
+</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a 
name="navbar_top_firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="overview-summary.html">Overview</a></li>
+<li>Package</li>
+<li>Class</li>
+<li>Use</li>
+<li><a href="overview-tree.html">Tree</a></li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li><a href="index-files/index-1.html">Index</a></li>
+<li><a href="help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList">
+<li>Prev</li>
+<li>Next</li>
+</ul>
+<ul class="navList">
+<li><a href="index.html?constant-values.html" target="_top">Frames</a></li>
+<li><a href="constant-values.html" target="_top">No Frames</a></li>
+</ul>
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="allclasses-noframe.html">All 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>
+<a name="skip-navbar_top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+<div class="header">
+<h1 title="Constant Field Values" class="title">Constant Field Values</h1>
+<h2 title="Contents">Contents</h2>
+<ul>
+<li><a href="#org.apache">org.apache.*</a></li>
+</ul>
+</div>
+<div class="constantValuesContainer"><a name="org.apache">
+<!--   -->
+</a>
+<h2 title="org.apache">org.apache.*</h2>
+<ul class="blockList">
+<li class="blockList">
+<table border="0" cellpadding="3" cellspacing="0" summary="Constant Field 
Values table, listing constant fields, and values">
+<caption><span>org.apache.pirk.querier.wideskies.<a 
href="org/apache/pirk/querier/wideskies/QuerierConst.html" title="class in 
org.apache.pirk.querier.wideskies">QuerierConst</a></span><span 
class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th scope="col">Constant Field</th>
+<th class="colLast" scope="col">Value</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<td class="colFirst"><a 
name="org.apache.pirk.querier.wideskies.QuerierConst.QUERIER_FILETAG">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/querier/wideskies/QuerierConst.html#QUERIER_FILETAG">QUERIER_FILETAG</a></code></td>
+<td class="colLast"><code>"querier"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.querier.wideskies.QuerierConst.QUERY_FILETAG">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/querier/wideskies/QuerierConst.html#QUERY_FILETAG">QUERY_FILETAG</a></code></td>
+<td class="colLast"><code>"query"</code></td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+<ul class="blockList">
+<li class="blockList">
+<table border="0" cellpadding="3" cellspacing="0" summary="Constant Field 
Values table, listing constant fields, and values">
+<caption><span>org.apache.pirk.schema.data.partitioner.<a 
href="org/apache/pirk/schema/data/partitioner/PrimitiveTypePartitioner.html" 
title="class in 
org.apache.pirk.schema.data.partitioner">PrimitiveTypePartitioner</a></span><span
 class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th scope="col">Constant Field</th>
+<th class="colLast" scope="col">Value</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<td class="colFirst"><a 
name="org.apache.pirk.schema.data.partitioner.PrimitiveTypePartitioner.BYTE">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/schema/data/partitioner/PrimitiveTypePartitioner.html#BYTE">BYTE</a></code></td>
+<td class="colLast"><code>"byte"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.schema.data.partitioner.PrimitiveTypePartitioner.CHAR">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/schema/data/partitioner/PrimitiveTypePartitioner.html#CHAR">CHAR</a></code></td>
+<td class="colLast"><code>"char"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a 
name="org.apache.pirk.schema.data.partitioner.PrimitiveTypePartitioner.DOUBLE">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/schema/data/partitioner/PrimitiveTypePartitioner.html#DOUBLE">DOUBLE</a></code></td>
+<td class="colLast"><code>"double"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.schema.data.partitioner.PrimitiveTypePartitioner.FLOAT">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/schema/data/partitioner/PrimitiveTypePartitioner.html#FLOAT">FLOAT</a></code></td>
+<td class="colLast"><code>"float"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a 
name="org.apache.pirk.schema.data.partitioner.PrimitiveTypePartitioner.INT">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/schema/data/partitioner/PrimitiveTypePartitioner.html#INT">INT</a></code></td>
+<td class="colLast"><code>"int"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.schema.data.partitioner.PrimitiveTypePartitioner.LONG">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/schema/data/partitioner/PrimitiveTypePartitioner.html#LONG">LONG</a></code></td>
+<td class="colLast"><code>"long"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a 
name="org.apache.pirk.schema.data.partitioner.PrimitiveTypePartitioner.SHORT">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/schema/data/partitioner/PrimitiveTypePartitioner.html#SHORT">SHORT</a></code></td>
+<td class="colLast"><code>"short"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.schema.data.partitioner.PrimitiveTypePartitioner.STRING">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/schema/data/partitioner/PrimitiveTypePartitioner.html#STRING">STRING</a></code></td>
+<td class="colLast"><code>"string"</code></td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+<ul class="blockList">
+<li class="blockList">
+<table border="0" cellpadding="3" cellspacing="0" summary="Constant Field 
Values table, listing constant fields, and values">
+<caption><span>org.apache.pirk.schema.query.<a 
href="org/apache/pirk/schema/query/QuerySchema.html" title="class in 
org.apache.pirk.schema.query">QuerySchema</a></span><span 
class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th scope="col">Constant Field</th>
+<th class="colLast" scope="col">Value</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<td class="colFirst"><a 
name="org.apache.pirk.schema.query.QuerySchema.NO_FILTER">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/schema/query/QuerySchema.html#NO_FILTER">NO_FILTER</a></code></td>
+<td class="colLast"><code>"noFilter"</code></td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+<ul class="blockList">
+<li class="blockList">
+<table border="0" cellpadding="3" cellspacing="0" summary="Constant Field 
Values table, listing constant fields, and values">
+<caption><span>org.apache.pirk.schema.response.<a 
href="org/apache/pirk/schema/response/QueryResponseJSON.html" title="class in 
org.apache.pirk.schema.response">QueryResponseJSON</a></span><span 
class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th scope="col">Constant Field</th>
+<th class="colLast" scope="col">Value</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<td class="colFirst"><a 
name="org.apache.pirk.schema.response.QueryResponseJSON.EVENT_TYPE">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/schema/response/QueryResponseJSON.html#EVENT_TYPE">EVENT_TYPE</a></code></td>
+<td class="colLast"><code>"event_type"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.schema.response.QueryResponseJSON.QUERY_ID">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/schema/response/QueryResponseJSON.html#QUERY_ID">QUERY_ID</a></code></td>
+<td class="colLast"><code>"query_id"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a 
name="org.apache.pirk.schema.response.QueryResponseJSON.QUERY_NAME">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/schema/response/QueryResponseJSON.html#QUERY_NAME">QUERY_NAME</a></code></td>
+<td class="colLast"><code>"query_name"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.schema.response.QueryResponseJSON.SELECTOR">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/schema/response/QueryResponseJSON.html#SELECTOR">SELECTOR</a></code></td>
+<td class="colLast"><code>"match"</code></td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+<ul class="blockList">
+<li class="blockList">
+<table border="0" cellpadding="3" cellspacing="0" summary="Constant Field 
Values table, listing constant fields, and values">
+<caption><span>org.apache.pirk.test.distributed.<a 
href="org/apache/pirk/test/distributed/DistributedTestDriver.html" title="class 
in org.apache.pirk.test.distributed">DistributedTestDriver</a></span><span 
class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th scope="col">Constant Field</th>
+<th class="colLast" scope="col">Value</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.distributed.DistributedTestDriver.ES_INPUT_INDEX_PROPERTY">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/distributed/DistributedTestDriver.html#ES_INPUT_INDEX_PROPERTY">ES_INPUT_INDEX_PROPERTY</a></code></td>
+<td class="colLast"><code>"test.es.index"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.distributed.DistributedTestDriver.ES_INPUT_NODES_PROPERTY">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/distributed/DistributedTestDriver.html#ES_INPUT_NODES_PROPERTY">ES_INPUT_NODES_PROPERTY</a></code></td>
+<td class="colLast"><code>"es.nodes"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.distributed.DistributedTestDriver.ES_INPUT_PORT_PROPERTY">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/distributed/DistributedTestDriver.html#ES_INPUT_PORT_PROPERTY">ES_INPUT_PORT_PROPERTY</a></code></td>
+<td class="colLast"><code>"es.port"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.distributed.DistributedTestDriver.ES_INPUT_RESOURCE_PROPERTY">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/distributed/DistributedTestDriver.html#ES_INPUT_RESOURCE_PROPERTY">ES_INPUT_RESOURCE_PROPERTY</a></code></td>
+<td class="colLast"><code>"test.es.resource"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.distributed.DistributedTestDriver.ES_INPUT_TYPE_PROPERTY">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/distributed/DistributedTestDriver.html#ES_INPUT_TYPE_PROPERTY">ES_INPUT_TYPE_PROPERTY</a></code></td>
+<td class="colLast"><code>"test.es.type"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.distributed.DistributedTestDriver.ES_PIR_INPUT_INDEX_PROPERTY">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/distributed/DistributedTestDriver.html#ES_PIR_INPUT_INDEX_PROPERTY">ES_PIR_INPUT_INDEX_PROPERTY</a></code></td>
+<td class="colLast"><code>"test.pir.es.index"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.distributed.DistributedTestDriver.ES_PIR_INPUT_RESOURCE_PROPERTY">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/distributed/DistributedTestDriver.html#ES_PIR_INPUT_RESOURCE_PROPERTY">ES_PIR_INPUT_RESOURCE_PROPERTY</a></code></td>
+<td class="colLast"><code>"test.pir.es.resource"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.distributed.DistributedTestDriver.JSON_PIR_INPUT_FILE_PROPERTY">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/distributed/DistributedTestDriver.html#JSON_PIR_INPUT_FILE_PROPERTY">JSON_PIR_INPUT_FILE_PROPERTY</a></code></td>
+<td class="colLast"><code>"test.pir.inputJSONFile"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.distributed.DistributedTestDriver.OUTPUT_DIRECTORY_PROPERTY">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/distributed/DistributedTestDriver.html#OUTPUT_DIRECTORY_PROPERTY">OUTPUT_DIRECTORY_PROPERTY</a></code></td>
+<td class="colLast"><code>"test.outputHDFSFile"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.distributed.DistributedTestDriver.PIR_QUERY_INPUT_DIR">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/distributed/DistributedTestDriver.html#PIR_QUERY_INPUT_DIR">PIR_QUERY_INPUT_DIR</a></code></td>
+<td class="colLast"><code>"test.pir.queryInputDir"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.distributed.DistributedTestDriver.PIR_STOPLIST_FILE">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/distributed/DistributedTestDriver.html#PIR_STOPLIST_FILE">PIR_STOPLIST_FILE</a></code></td>
+<td class="colLast"><code>"test.pir.stopListFile"</code></td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+<ul class="blockList">
+<li class="blockList">
+<table border="0" cellpadding="3" cellspacing="0" summary="Constant Field 
Values table, listing constant fields, and values">
+<caption><span>org.apache.pirk.test.utils.<a 
href="org/apache/pirk/test/utils/Inputs.html" title="class in 
org.apache.pirk.test.utils">Inputs</a></span><span 
class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th scope="col">Constant Field</th>
+<th class="colLast" scope="col">Value</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.utils.Inputs.DATA_SCHEMA_FILE_HDFS">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#DATA_SCHEMA_FILE_HDFS">DATA_SCHEMA_FILE_HDFS</a></code></td>
+<td class="colLast"><code>"/tmp/testDataSchemaFile.xml"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.utils.Inputs.DATA_SCHEMA_FILE_LOCALFS">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#DATA_SCHEMA_FILE_LOCALFS">DATA_SCHEMA_FILE_LOCALFS</a></code></td>
+<td class="colLast"><code>"testDataSchemaFile"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a name="org.apache.pirk.test.utils.Inputs.DATE">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#DATE">DATE</a></code></td>
+<td class="colLast"><code>"date"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.utils.Inputs.DNS_HOSTNAME_QUERY">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#DNS_HOSTNAME_QUERY">DNS_HOSTNAME_QUERY</a></code></td>
+<td class="colLast"><code>"dns-hostname-query"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.utils.Inputs.DNS_HOSTNAME_QUERY_FILE">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#DNS_HOSTNAME_QUERY_FILE">DNS_HOSTNAME_QUERY_FILE</a></code></td>
+<td class="colLast"><code>"dns-hostname-query_file"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.utils.Inputs.DNS_HOSTNAME_QUERY_FILE_HDFS">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#DNS_HOSTNAME_QUERY_FILE_HDFS">DNS_HOSTNAME_QUERY_FILE_HDFS</a></code></td>
+<td class="colLast"><code>"/tmp/dns-hostname-query_file"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a name="org.apache.pirk.test.utils.Inputs.DNS_IP_QUERY">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#DNS_IP_QUERY">DNS_IP_QUERY</a></code></td>
+<td class="colLast"><code>"dns-ip-query"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.utils.Inputs.DNS_IP_QUERY_FILE">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#DNS_IP_QUERY_FILE">DNS_IP_QUERY_FILE</a></code></td>
+<td class="colLast"><code>"dns-ip-query_file"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.utils.Inputs.DNS_IP_QUERY_FILE_HDFS">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#DNS_IP_QUERY_FILE_HDFS">DNS_IP_QUERY_FILE_HDFS</a></code></td>
+<td class="colLast"><code>"/tmp/dns-ip-query_file"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.utils.Inputs.DNS_NXDOMAIN_QUERY">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#DNS_NXDOMAIN_QUERY">DNS_NXDOMAIN_QUERY</a></code></td>
+<td class="colLast"><code>"dns-nxdomain-query"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.utils.Inputs.DNS_NXDOMAIN_QUERY_FILE">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#DNS_NXDOMAIN_QUERY_FILE">DNS_NXDOMAIN_QUERY_FILE</a></code></td>
+<td class="colLast"><code>"dns-nxdomain-query_file"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.utils.Inputs.DNS_NXDOMAIN_QUERY_FILE_HDFS">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#DNS_NXDOMAIN_QUERY_FILE_HDFS">DNS_NXDOMAIN_QUERY_FILE_HDFS</a></code></td>
+<td class="colLast"><code>"/tmp/dns-nxdomain-query_file"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.utils.Inputs.DNS_SRCIP_QUERY">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#DNS_SRCIP_QUERY">DNS_SRCIP_QUERY</a></code></td>
+<td class="colLast"><code>"dns-srcip-query"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.utils.Inputs.DNS_SRCIP_QUERY_FILE">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#DNS_SRCIP_QUERY_FILE">DNS_SRCIP_QUERY_FILE</a></code></td>
+<td class="colLast"><code>"dns-srcip-query_file"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.utils.Inputs.DNS_SRCIP_QUERY_FILE_HDFS">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#DNS_SRCIP_QUERY_FILE_HDFS">DNS_SRCIP_QUERY_FILE_HDFS</a></code></td>
+<td class="colLast"><code>"/tmp/dns-srcip-query_file"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.utils.Inputs.DNS_SRCIP_QUERY_NO_FILTER">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#DNS_SRCIP_QUERY_NO_FILTER">DNS_SRCIP_QUERY_NO_FILTER</a></code></td>
+<td class="colLast"><code>"dns-srcip-query-no-filter"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.utils.Inputs.DNS_SRCIP_QUERY_NO_FILTER_FILE">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#DNS_SRCIP_QUERY_NO_FILTER_FILE">DNS_SRCIP_QUERY_NO_FILTER_FILE</a></code></td>
+<td class="colLast"><code>"dns-srcip-query-no-filter_file"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.utils.Inputs.DNS_SRCIP_QUERY_NO_FILTER_FILE_HDFS">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#DNS_SRCIP_QUERY_NO_FILTER_FILE_HDFS">DNS_SRCIP_QUERY_NO_FILTER_FILE_HDFS</a></code></td>
+<td class="colLast"><code>"/tmp/dns-srcip-query-no-filter_file"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a name="org.apache.pirk.test.utils.Inputs.DSTIP">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#DSTIP">DSTIP</a></code></td>
+<td class="colLast"><code>"dest_ip"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.utils.Inputs.HDFS_QUERY_FILES">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#HDFS_QUERY_FILES">HDFS_QUERY_FILES</a></code></td>
+<td 
class="colLast"><code>"/tmp/dns-hostname-query_file,/tmp/dns-ip-query_file,/tmp/dns-nxdomain-query_file,/tmp/dns-srcip-query_file,/tmp/dns-srcip-query-no-filter_file"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a name="org.apache.pirk.test.utils.Inputs.IPS">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#IPS">IPS</a></code></td>
+<td class="colLast"><code>"ip"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.utils.Inputs.LOCALFS_QUERY_FILES">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#LOCALFS_QUERY_FILES">LOCALFS_QUERY_FILES</a></code></td>
+<td 
class="colLast"><code>"dns-hostname-query_file,dns-ip-query_file,dns-nxdomain-query_file,dns-srcip-query_file,dns-srcip-query-no-filter_file"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a name="org.apache.pirk.test.utils.Inputs.QNAME">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#QNAME">QNAME</a></code></td>
+<td class="colLast"><code>"qname"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a name="org.apache.pirk.test.utils.Inputs.QTYPE">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#QTYPE">QTYPE</a></code></td>
+<td class="colLast"><code>"qtype"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a name="org.apache.pirk.test.utils.Inputs.RCODE">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#RCODE">RCODE</a></code></td>
+<td class="colLast"><code>"rcode"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a name="org.apache.pirk.test.utils.Inputs.SRCIP">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#SRCIP">SRCIP</a></code></td>
+<td class="colLast"><code>"src_ip"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a 
name="org.apache.pirk.test.utils.Inputs.TEST_DATA_SCHEMA_NAME">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/test/utils/Inputs.html#TEST_DATA_SCHEMA_NAME">TEST_DATA_SCHEMA_NAME</a></code></td>
+<td class="colLast"><code>"testDataSchema"</code></td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+<ul class="blockList">
+<li class="blockList">
+<table border="0" cellpadding="3" cellspacing="0" summary="Constant Field 
Values table, listing constant fields, and values">
+<caption><span>org.apache.pirk.utils.<a 
href="org/apache/pirk/utils/SystemConfiguration.html" title="class in 
org.apache.pirk.utils">SystemConfiguration</a></span><span 
class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th scope="col">Constant Field</th>
+<th class="colLast" scope="col">Value</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<td class="colFirst"><a 
name="org.apache.pirk.utils.SystemConfiguration.DEFAULT_PROPERTY_FILE">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/utils/SystemConfiguration.html#DEFAULT_PROPERTY_FILE">DEFAULT_PROPERTY_FILE</a></code></td>
+<td class="colLast"><code>"pirk.properties"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.pirk.utils.SystemConfiguration.LOCAL_PROPERTY_FILE">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<td><code><a 
href="org/apache/pirk/utils/SystemConfiguration.html#LOCAL_PROPERTY_FILE">LOCAL_PROPERTY_FILE</a></code></td>
+<td class="colLast"><code>"local.pirk.properties"</code></td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+</div>
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a name="navbar_bottom">
+<!--   -->
+</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a 
name="navbar_bottom_firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="overview-summary.html">Overview</a></li>
+<li>Package</li>
+<li>Class</li>
+<li>Use</li>
+<li><a href="overview-tree.html">Tree</a></li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li><a href="index-files/index-1.html">Index</a></li>
+<li><a href="help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList">
+<li>Prev</li>
+<li>Next</li>
+</ul>
+<ul class="navList">
+<li><a href="index.html?constant-values.html" target="_top">Frames</a></li>
+<li><a href="constant-values.html" target="_top">No Frames</a></li>
+</ul>
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="allclasses-noframe.html">All 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>
+<a name="skip-navbar_bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</body>
+</html>

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/e493ba2b/javadocs/deprecated-list.html
----------------------------------------------------------------------
diff --git a/javadocs/deprecated-list.html b/javadocs/deprecated-list.html
new file mode 100644
index 0000000..522c4a2
--- /dev/null
+++ b/javadocs/deprecated-list.html
@@ -0,0 +1,115 @@
+<!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 (version 1.7.0_80) on Fri Jun 24 12:27:54 EDT 2016 
-->
+<title>Deprecated List</title>
+<meta name="date" content="2016-06-24">
+<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
+</head>
+<body>
+<script type="text/javascript"><!--
+    if (location.href.indexOf('is-external=true') == -1) {
+        parent.document.title="Deprecated List";
+    }
+//-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a name="navbar_top">
+<!--   -->
+</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a 
name="navbar_top_firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="overview-summary.html">Overview</a></li>
+<li>Package</li>
+<li>Class</li>
+<li>Use</li>
+<li><a href="overview-tree.html">Tree</a></li>
+<li class="navBarCell1Rev">Deprecated</li>
+<li><a href="index-files/index-1.html">Index</a></li>
+<li><a href="help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList">
+<li>Prev</li>
+<li>Next</li>
+</ul>
+<ul class="navList">
+<li><a href="index.html?deprecated-list.html" target="_top">Frames</a></li>
+<li><a href="deprecated-list.html" target="_top">No Frames</a></li>
+</ul>
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="allclasses-noframe.html">All 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>
+<a name="skip-navbar_top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+<div class="header">
+<h1 title="Deprecated API" class="title">Deprecated API</h1>
+<h2 title="Contents">Contents</h2>
+</div>
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a name="navbar_bottom">
+<!--   -->
+</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a 
name="navbar_bottom_firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="overview-summary.html">Overview</a></li>
+<li>Package</li>
+<li>Class</li>
+<li>Use</li>
+<li><a href="overview-tree.html">Tree</a></li>
+<li class="navBarCell1Rev">Deprecated</li>
+<li><a href="index-files/index-1.html">Index</a></li>
+<li><a href="help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList">
+<li>Prev</li>
+<li>Next</li>
+</ul>
+<ul class="navList">
+<li><a href="index.html?deprecated-list.html" target="_top">Frames</a></li>
+<li><a href="deprecated-list.html" target="_top">No Frames</a></li>
+</ul>
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="allclasses-noframe.html">All 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>
+<a name="skip-navbar_bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</body>
+</html>

Reply via email to