Modified: chemistry/site/trunk/content/docs/cmis-samples/samples/extensions/index.html URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/docs/cmis-samples/samples/extensions/index.html?rev=1751941&r1=1751940&r2=1751941&view=diff ============================================================================== --- chemistry/site/trunk/content/docs/cmis-samples/samples/extensions/index.html (original) +++ chemistry/site/trunk/content/docs/cmis-samples/samples/extensions/index.html Fri Jul 8 16:17:07 2016 @@ -225,6 +225,12 @@ </li> + +<li > + <a href="../retention/index.html">Retention and Holds</a> +</li> + + </ul> </li> @@ -366,4 +372,4 @@ if (extensions != null) { </body> </html> -<!-- last update: 2016-06-24 10:25:44.436606 --> \ No newline at end of file +<!-- last update: 2016-07-08 16:12:05.095607 --> \ No newline at end of file
Modified: chemistry/site/trunk/content/docs/cmis-samples/samples/lists/index.html URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/docs/cmis-samples/samples/lists/index.html?rev=1751941&r1=1751940&r2=1751941&view=diff ============================================================================== --- chemistry/site/trunk/content/docs/cmis-samples/samples/lists/index.html (original) +++ chemistry/site/trunk/content/docs/cmis-samples/samples/lists/index.html Fri Jul 8 16:17:07 2016 @@ -225,6 +225,12 @@ </li> + +<li > + <a href="../retention/index.html">Retention and Holds</a> +</li> + + </ul> </li> @@ -313,7 +319,7 @@ ItemIterable<Something> firstFive ItemIterable<Something> skipTen = somethingList.skipTo(10); // get a page of 20 items starting at the 100th item of the orignal list -ItemIterable<Something> skipTen = somethingList.skipTo(100).getPage(20); +ItemIterable<Something> skipAndPage = somethingList.skipTo(100).getPage(20); </code></pre> <p class="portcmis">PortCMIS (C#)</p> @@ -326,7 +332,7 @@ IItemEnumerable<Something> firstFi IItemEnumerable<Something> skipTen = somethingList.SkipTo(10); // get a page of 20 items starting at the 100th item of the orignal list -IItemEnumerable<Something> skipTen = somethingList.SkipTo(100).GetPage(20); +IItemEnumerable<Something> skipAndPage = somethingList.SkipTo(100).GetPage(20); </code></pre></div> </div> @@ -377,4 +383,4 @@ IItemEnumerable<Something> skipTen </body> </html> -<!-- last update: 2016-06-24 10:25:44.420932 --> \ No newline at end of file +<!-- last update: 2016-07-08 16:12:05.079866 --> \ No newline at end of file Modified: chemistry/site/trunk/content/docs/cmis-samples/samples/move-objects/index.html URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/docs/cmis-samples/samples/move-objects/index.html?rev=1751941&r1=1751940&r2=1751941&view=diff ============================================================================== --- chemistry/site/trunk/content/docs/cmis-samples/samples/move-objects/index.html (original) +++ chemistry/site/trunk/content/docs/cmis-samples/samples/move-objects/index.html Fri Jul 8 16:17:07 2016 @@ -225,6 +225,12 @@ </li> + +<li > + <a href="../retention/index.html">Retention and Holds</a> +</li> + + </ul> </li> @@ -387,4 +393,4 @@ doc.RemoveFromFolder(folder); </body> </html> -<!-- last update: 2016-06-24 10:25:44.242416 --> \ No newline at end of file +<!-- last update: 2016-07-08 16:12:04.893686 --> \ No newline at end of file Modified: chemistry/site/trunk/content/docs/cmis-samples/samples/operation-context/index.html URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/docs/cmis-samples/samples/operation-context/index.html?rev=1751941&r1=1751940&r2=1751941&view=diff ============================================================================== --- chemistry/site/trunk/content/docs/cmis-samples/samples/operation-context/index.html (original) +++ chemistry/site/trunk/content/docs/cmis-samples/samples/operation-context/index.html Fri Jul 8 16:17:07 2016 @@ -225,6 +225,12 @@ </li> + +<li > + <a href="../retention/index.html">Retention and Holds</a> +</li> + + </ul> </li> @@ -300,6 +306,9 @@ <li class="second-level"><a href="#creating-operation-context-objects">Creating Operation Context Objects</a></li> + <li class="second-level"><a href="#using-an-operation-context">Using an Operation Context</a></li> + + </ul> </div></div> @@ -450,6 +459,27 @@ IOperationContext oc2 = OperationContext // create an operation context that selects everything IOperationContext oc3 = OperationContextUtils.CreateMaximumOperationContext(); +</code></pre> + +<h2 id="using-an-operation-context">Using an Operation Context</h2> +<p>Many methods that retrieve objects or data accept an Operation Context object as an additional parameter. +If no Operation Context object is provided, a default Operation Context object defines what should be requested.</p> +<p class="opencmis">OpenCMIS (Java)</p> +<pre><code class="java">OperationContext oc = ... + +CmisObject cmisObject1 = session.getObject(id, oc); +CmisObject cmisObject2 = session.getObjectByPath(path, oc); +ItemIterable<CmisObject> children = folder.getChildren(oc); +List<Document> versions = doc.getAllVersions(oc); +</code></pre> + +<p class="portcmis">PortCMIS (C#)</p> +<pre><code class="csharp">IOperationContext oc = ... + +ICmisObject cmisObject1 = session.GetObject(id, oc); +ICmisObject cmisObject2 = session.GetObjectByPath(path, oc); +IItemEnumerable<ICmisObject> children = folder.GetChildren(oc); +IList<IDocument> versions = doc.GetAllVersions(oc); </code></pre></div> </div> @@ -500,4 +530,4 @@ IOperationContext oc3 = OperationContext </body> </html> -<!-- last update: 2016-06-24 10:25:44.400997 --> \ No newline at end of file +<!-- last update: 2016-07-08 16:12:05.057701 --> \ No newline at end of file Modified: chemistry/site/trunk/content/docs/cmis-samples/samples/properties/index.html URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/docs/cmis-samples/samples/properties/index.html?rev=1751941&r1=1751940&r2=1751941&view=diff ============================================================================== --- chemistry/site/trunk/content/docs/cmis-samples/samples/properties/index.html (original) +++ chemistry/site/trunk/content/docs/cmis-samples/samples/properties/index.html Fri Jul 8 16:17:07 2016 @@ -225,6 +225,12 @@ </li> + +<li > + <a href="../retention/index.html">Retention and Holds</a> +</li> + + </ul> </li> @@ -392,4 +398,4 @@ </body> </html> -<!-- last update: 2016-06-24 10:25:44.360206 --> \ No newline at end of file +<!-- last update: 2016-07-08 16:12:05.017344 --> \ No newline at end of file Modified: chemistry/site/trunk/content/docs/cmis-samples/samples/queries/index.html URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/docs/cmis-samples/samples/queries/index.html?rev=1751941&r1=1751940&r2=1751941&view=diff ============================================================================== --- chemistry/site/trunk/content/docs/cmis-samples/samples/queries/index.html (original) +++ chemistry/site/trunk/content/docs/cmis-samples/samples/queries/index.html Fri Jul 8 16:17:07 2016 @@ -225,6 +225,12 @@ </li> + +<li > + <a href="../retention/index.html">Retention and Holds</a> +</li> + + </ul> </li> @@ -337,9 +343,11 @@ qs.setId(6, folder); qs.setProperty(7, "cmis:document", "cmis:createdBy"); qs.setString(8, "bob", "tom", "lisa"); +// get the compiled query statement String statement = qs.toQueryString(); -ItemIterable<QueryResult> results = statement.query(false); +// ... or execute the query directly +ItemIterable<QueryResult> results = qs.query(false); </code></pre></div> </div> @@ -390,4 +398,4 @@ ItemIterable<QueryResult> results </body> </html> -<!-- last update: 2016-06-24 10:25:44.453939 --> \ No newline at end of file +<!-- last update: 2016-07-08 16:12:05.112078 --> \ No newline at end of file Added: chemistry/site/trunk/content/docs/cmis-samples/samples/retention/index.html URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/docs/cmis-samples/samples/retention/index.html?rev=1751941&view=auto ============================================================================== --- chemistry/site/trunk/content/docs/cmis-samples/samples/retention/index.html (added) +++ chemistry/site/trunk/content/docs/cmis-samples/samples/retention/index.html Fri Jul 8 16:17:07 2016 @@ -0,0 +1,350 @@ +<!DOCTYPE html> +<!-- + + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +--> +<html lang="en"> + +<head> + <meta charset="utf-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta name="author" content="Apache Chemistry"> + <link rel="shortcut icon" href="../../img/favicon.ico"> + + <title>Retention and Holds - Apache Chemistry Samples</title> + + <link href="../../css/bootstrap-custom.min.css" rel="stylesheet"> + <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet"> + <link href="../../css/base.css" rel="stylesheet"> + <link href="../../css/cinder.css" rel="stylesheet"> + <link rel="stylesheet" href="../../css/highlight.css"> + + + <link href="../../css/chemistry.css" rel="stylesheet"> + + <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> + <!--[if lt IE 9]> + <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> + <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> + <![endif]--> + + +</head> + +<body> + + <div class="navbar navbar-default navbar-fixed-top" role="navigation"> + <div class="container"> + + <!-- Collapsed navigation --> + <div class="navbar-header"> + + <!-- Expander button --> + <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> + <span class="sr-only">Toggle navigation</span> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + </button> + + + <!-- Main title --> + <a class="navbar-brand" href="../../index.html">Apache Chemistry Samples</a> + </div> + + <!-- Expanded navigation --> + <div class="navbar-collapse collapse"> + + <!-- Main navigation --> + <ul class="nav navbar-nav"> + + + <li > + <a href="../../index.html">Home</a> + </li> + + + + <li class="dropdown"> + <a href="#" class="dropdown-toggle" data-toggle="dropdown">Repository <b class="caret"></b></a> + <ul class="dropdown-menu"> + + +<li > + <a href="../create-session/index.html">Creating a Session</a> +</li> + + + +<li > + <a href="../capabilities/index.html">Getting Repository Capabilities</a> +</li> + + + +<li > + <a href="../types/index.html">Working with Types</a> +</li> + + + +<li > + <a href="../exceptions/index.html">CMIS Exceptions</a> +</li> + + + </ul> + </li> + + + + <li class="dropdown"> + <a href="#" class="dropdown-toggle" data-toggle="dropdown">CRUD <b class="caret"></b></a> + <ul class="dropdown-menu"> + + +<li > + <a href="../retrieve-objects/index.html">Retrieving Objects</a> +</li> + + + +<li > + <a href="../create-objects/index.html">Creating Objects</a> +</li> + + + +<li > + <a href="../update-objects/index.html">Updating Objects</a> +</li> + + + +<li > + <a href="../move-objects/index.html">Moving Object</a> +</li> + + + +<li > + <a href="../delete-objects/index.html">Deleting Objects</a> +</li> + + + +<li > + <a href="../content/index.html">Working with Content</a> +</li> + + + +<li > + <a href="../versions/index.html">Working with Versions</a> +</li> + + + +<li > + <a href="../properties/index.html">Working with Properties and Secondary Types</a> +</li> + + + +<li > + <a href="../operation-context/index.html">Understanding the Operation Context</a> +</li> + + + +<li > + <a href="../lists/index.html">Working with Lists, Paging and Skipping</a> +</li> + + + +<li > + <a href="../extensions/index.html">Getting Extensions</a> +</li> + + + </ul> + </li> + + + + <li class="dropdown"> + <a href="#" class="dropdown-toggle" data-toggle="dropdown">Query <b class="caret"></b></a> + <ul class="dropdown-menu"> + + +<li > + <a href="../queries/index.html">Executing Queries</a> +</li> + + + +<li > + <a href="../changelog/index.html">Retrieving the Change Log</a> +</li> + + + </ul> + </li> + + + + <li class="dropdown active"> + <a href="#" class="dropdown-toggle" data-toggle="dropdown">Access Control <b class="caret"></b></a> + <ul class="dropdown-menu"> + + +<li > + <a href="../allowable-actions/index.html">Checking Allowable Actions</a> +</li> + + + +<li > + <a href="../access-control/index.html">Managing Access Control</a> +</li> + + + +<li class="active"> + <a href="index.html">Retention and Holds</a> +</li> + + + </ul> + </li> + + + + <li > + <a href="../../about/index.html">About</a> + </li> + + + </ul> + + + <ul class="nav navbar-nav navbar-right"> + <li> + <a href="#" data-toggle="modal" data-target="#mkdocs_search_modal"> + <i class="fa fa-search" aria-hidden="true"></i> Search + </a> + </li> + + <li > + <a rel="next" href="../access-control/index.html"> + <i class="fa fa-arrow-left" aria-hidden="true"></i> Previous + </a> + </li> + <li > + <a rel="prev" href="../../about/index.html"> + Next <i class="fa fa-arrow-right" aria-hidden="true"></i> + </a> + </li> + + <li> + <a href="https://www.apache.org" style="padding: 2px;"> + <img src="../../img/feather.png"> + </a> + </li> + </ul> + </div> + </div> +</div> + + <div class="container"> + + <div class="col-md-3"><div class="bs-sidebar hidden-print affix well" role="complementary"> + <ul class="nav bs-sidenav"> + + <li class="first-level active"><a href="#retention-and-holds">Retention and Holds</a></li> + + <li class="second-level"><a href="#retention">Retention</a></li> + + + <li class="second-level"><a href="#holds">Holds</a></li> + + + + </ul> +</div></div> + <div class="col-md-9" role="main"> + +<h1 id="retention-and-holds">Retention and Holds</h1> +<p><span class="cmis">CMIS 1.1</span> +<span class="spec">Spec 2.1.16</span></p> +<h2 id="retention">Retention</h2> +<p><span class="spec">Spec 2.1.16.1</span> +<span class="spec">Spec 2.1.16.2</span></p> +<h2 id="holds">Holds</h2> +<p><span class="spec">Spec 2.1.16.3</span></p></div> + + </div> + + <footer class="col-md-12 text-center"> + <hr> + <p> + </footer> + + <script src="../../js/jquery-1.10.2.min.js"></script> + <script src="../../js/bootstrap-3.0.3.min.js"></script> + <script src="../../js/highlight.pack.js"></script> + <script>hljs.initHighlightingOnLoad();</script> + <script> + var base_url = '../..'; + </script> + <script data-main="../../mkdocs/js/search.js" src="../../mkdocs/js/require.js"></script> + <script src="../../js/base.js"></script> + + <div class="modal" id="mkdocs_search_modal" tabindex="-1" role="dialog" aria-labelledby="Search Modal" aria-hidden="true"> + <div class="modal-dialog"> + <div class="modal-content"> + <div class="modal-header"> + <button type="button" class="close" data-dismiss="modal"> + <span aria-hidden="true">×</span> + <span class="sr-only">Close</span> + </button> + <h4 class="modal-title" id="exampleModalLabel">Search</h4> + </div> + <div class="modal-body"> + <p> + From here you can search these documents. Enter your search terms below. + </p> + <form role="form"> + <div class="form-group"> + <input type="text" class="form-control" placeholder="Search..." id="mkdocs-search-query"> + </div> + </form> + <div id="mkdocs-search-results"></div> + </div> + <div class="modal-footer"> + </div> + </div> + </div> + </div> + + <script type="text/javascript" src="../../js/retina.min.js"></script> + </body> + +</html> +<!-- last update: 2016-07-08 16:12:05.174412 --> \ No newline at end of file Modified: chemistry/site/trunk/content/docs/cmis-samples/samples/retrieve-objects/index.html URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/docs/cmis-samples/samples/retrieve-objects/index.html?rev=1751941&r1=1751940&r2=1751941&view=diff ============================================================================== --- chemistry/site/trunk/content/docs/cmis-samples/samples/retrieve-objects/index.html (original) +++ chemistry/site/trunk/content/docs/cmis-samples/samples/retrieve-objects/index.html Fri Jul 8 16:17:07 2016 @@ -225,6 +225,12 @@ </li> + +<li > + <a href="../retention/index.html">Retention and Holds</a> +</li> + + </ul> </li> @@ -433,7 +439,7 @@ CmisObject cmisObject = session.getObjec </code></pre> <p class="portcmis">PortCMIS (C#)</p> -<pre><code class="csharp">IOperationContext oc = session.CreateOperationContext(); +<pre><code class="csharp">IOperationContext oc = Session.CreateOperationContext(); oc.CacheEnabled = false; ICmisObject cmisObject = Session.GetObject(id, oc); @@ -497,4 +503,4 @@ ICmisObject cmisObject = Session.GetObje </body> </html> -<!-- last update: 2016-06-24 10:25:44.162930 --> \ No newline at end of file +<!-- last update: 2016-07-08 16:12:04.805419 --> \ No newline at end of file Modified: chemistry/site/trunk/content/docs/cmis-samples/samples/types/index.html URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/docs/cmis-samples/samples/types/index.html?rev=1751941&r1=1751940&r2=1751941&view=diff ============================================================================== --- chemistry/site/trunk/content/docs/cmis-samples/samples/types/index.html (original) +++ chemistry/site/trunk/content/docs/cmis-samples/samples/types/index.html Fri Jul 8 16:17:07 2016 @@ -225,6 +225,12 @@ </li> + +<li > + <a href="../retention/index.html">Retention and Holds</a> +</li> + + </ul> </li> @@ -445,4 +451,4 @@ IObjectType updatedType = session.Update </body> </html> -<!-- last update: 2016-06-24 10:25:44.100694 --> \ No newline at end of file +<!-- last update: 2016-07-08 16:12:04.743168 --> \ No newline at end of file Modified: chemistry/site/trunk/content/docs/cmis-samples/samples/update-objects/index.html URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/docs/cmis-samples/samples/update-objects/index.html?rev=1751941&r1=1751940&r2=1751941&view=diff ============================================================================== --- chemistry/site/trunk/content/docs/cmis-samples/samples/update-objects/index.html (original) +++ chemistry/site/trunk/content/docs/cmis-samples/samples/update-objects/index.html Fri Jul 8 16:17:07 2016 @@ -225,6 +225,12 @@ </li> + +<li > + <a href="../retention/index.html">Retention and Holds</a> +</li> + + </ul> </li> @@ -412,4 +418,4 @@ List<BulkUpdateObjectIdAndChangeToken </body> </html> -<!-- last update: 2016-06-24 10:25:44.224677 --> \ No newline at end of file +<!-- last update: 2016-07-08 16:12:04.873054 --> \ No newline at end of file Modified: chemistry/site/trunk/content/docs/cmis-samples/samples/versions/index.html URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/docs/cmis-samples/samples/versions/index.html?rev=1751941&r1=1751940&r2=1751941&view=diff ============================================================================== --- chemistry/site/trunk/content/docs/cmis-samples/samples/versions/index.html (original) +++ chemistry/site/trunk/content/docs/cmis-samples/samples/versions/index.html Fri Jul 8 16:17:07 2016 @@ -225,6 +225,12 @@ </li> + +<li > + <a href="../retention/index.html">Retention and Holds</a> +</li> + + </ul> </li> @@ -478,4 +484,4 @@ IObjectId newVersionId = pwc.CheckIn(tru </body> </html> -<!-- last update: 2016-06-24 10:25:44.335991 --> \ No newline at end of file +<!-- last update: 2016-07-08 16:12:04.993067 --> \ No newline at end of file Modified: chemistry/site/trunk/content/docs/cmis-samples/sitemap.xml URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/docs/cmis-samples/sitemap.xml?rev=1751941&r1=1751940&r2=1751941&view=diff ============================================================================== --- chemistry/site/trunk/content/docs/cmis-samples/sitemap.xml (original) +++ chemistry/site/trunk/content/docs/cmis-samples/sitemap.xml Fri Jul 8 16:17:07 2016 @@ -4,7 +4,7 @@ <url> <loc>None/index.html</loc> - <lastmod>2016-06-24</lastmod> + <lastmod>2016-07-08</lastmod> <changefreq>daily</changefreq> </url> @@ -13,25 +13,25 @@ <url> <loc>None/samples/create-session/index.html</loc> - <lastmod>2016-06-24</lastmod> + <lastmod>2016-07-08</lastmod> <changefreq>daily</changefreq> </url> <url> <loc>None/samples/capabilities/index.html</loc> - <lastmod>2016-06-24</lastmod> + <lastmod>2016-07-08</lastmod> <changefreq>daily</changefreq> </url> <url> <loc>None/samples/types/index.html</loc> - <lastmod>2016-06-24</lastmod> + <lastmod>2016-07-08</lastmod> <changefreq>daily</changefreq> </url> <url> <loc>None/samples/exceptions/index.html</loc> - <lastmod>2016-06-24</lastmod> + <lastmod>2016-07-08</lastmod> <changefreq>daily</changefreq> </url> @@ -41,67 +41,67 @@ <url> <loc>None/samples/retrieve-objects/index.html</loc> - <lastmod>2016-06-24</lastmod> + <lastmod>2016-07-08</lastmod> <changefreq>daily</changefreq> </url> <url> <loc>None/samples/create-objects/index.html</loc> - <lastmod>2016-06-24</lastmod> + <lastmod>2016-07-08</lastmod> <changefreq>daily</changefreq> </url> <url> <loc>None/samples/update-objects/index.html</loc> - <lastmod>2016-06-24</lastmod> + <lastmod>2016-07-08</lastmod> <changefreq>daily</changefreq> </url> <url> <loc>None/samples/move-objects/index.html</loc> - <lastmod>2016-06-24</lastmod> + <lastmod>2016-07-08</lastmod> <changefreq>daily</changefreq> </url> <url> <loc>None/samples/delete-objects/index.html</loc> - <lastmod>2016-06-24</lastmod> + <lastmod>2016-07-08</lastmod> <changefreq>daily</changefreq> </url> <url> <loc>None/samples/content/index.html</loc> - <lastmod>2016-06-24</lastmod> + <lastmod>2016-07-08</lastmod> <changefreq>daily</changefreq> </url> <url> <loc>None/samples/versions/index.html</loc> - <lastmod>2016-06-24</lastmod> + <lastmod>2016-07-08</lastmod> <changefreq>daily</changefreq> </url> <url> <loc>None/samples/properties/index.html</loc> - <lastmod>2016-06-24</lastmod> + <lastmod>2016-07-08</lastmod> <changefreq>daily</changefreq> </url> <url> <loc>None/samples/operation-context/index.html</loc> - <lastmod>2016-06-24</lastmod> + <lastmod>2016-07-08</lastmod> <changefreq>daily</changefreq> </url> <url> <loc>None/samples/lists/index.html</loc> - <lastmod>2016-06-24</lastmod> + <lastmod>2016-07-08</lastmod> <changefreq>daily</changefreq> </url> <url> <loc>None/samples/extensions/index.html</loc> - <lastmod>2016-06-24</lastmod> + <lastmod>2016-07-08</lastmod> <changefreq>daily</changefreq> </url> @@ -111,13 +111,13 @@ <url> <loc>None/samples/queries/index.html</loc> - <lastmod>2016-06-24</lastmod> + <lastmod>2016-07-08</lastmod> <changefreq>daily</changefreq> </url> <url> <loc>None/samples/changelog/index.html</loc> - <lastmod>2016-06-24</lastmod> + <lastmod>2016-07-08</lastmod> <changefreq>daily</changefreq> </url> @@ -127,13 +127,19 @@ <url> <loc>None/samples/allowable-actions/index.html</loc> - <lastmod>2016-06-24</lastmod> + <lastmod>2016-07-08</lastmod> <changefreq>daily</changefreq> </url> <url> <loc>None/samples/access-control/index.html</loc> - <lastmod>2016-06-24</lastmod> + <lastmod>2016-07-08</lastmod> + <changefreq>daily</changefreq> + </url> + + <url> + <loc>None/samples/retention/index.html</loc> + <lastmod>2016-07-08</lastmod> <changefreq>daily</changefreq> </url> @@ -142,7 +148,7 @@ <url> <loc>None/about/index.html</loc> - <lastmod>2016-06-24</lastmod> + <lastmod>2016-07-08</lastmod> <changefreq>daily</changefreq> </url>
