You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by ga...@apache.org on 2015/04/06 19:20:01 UTC

svn commit: r1671614 [29/31] - in /chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench: ./ chemistry-opencmis-workbench/ chemistry-opencmis-workbench/css/ chemistry-opencmis-workbench/images/ chemistry-opencmis-workbench/images/...

Added: chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/model/ClientSession.html
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/model/ClientSession.html?rev=1671614&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/model/ClientSession.html (added)
+++ chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/model/ClientSession.html Mon Apr  6 17:19:59 2015
@@ -0,0 +1,390 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
+<title>ClientSession xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<div id="overview"><a href="../../../../../../../apidocs/org/apache/chemistry/opencmis/workbench/model/ClientSession.html">View Javadoc</a></div><pre>
+
+<a class="jxr_linenumber" name="1" href="#1">1</a>   <em class="jxr_comment">/*</em>
+<a class="jxr_linenumber" name="2" href="#2">2</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a class="jxr_linenumber" name="3" href="#3">3</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a class="jxr_linenumber" name="4" href="#4">4</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a class="jxr_linenumber" name="5" href="#5">5</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a class="jxr_linenumber" name="6" href="#6">6</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a class="jxr_linenumber" name="7" href="#7">7</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a class="jxr_linenumber" name="8" href="#8">8</a>   <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a class="jxr_linenumber" name="9" href="#9">9</a>   <em class="jxr_comment"> *</em>
+<a class="jxr_linenumber" name="10" href="#10">10</a>  <em class="jxr_comment"> * <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
+<a class="jxr_linenumber" name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a class="jxr_linenumber" name="12" href="#12">12</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a class="jxr_linenumber" name="13" href="#13">13</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a class="jxr_linenumber" name="14" href="#14">14</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a class="jxr_linenumber" name="15" href="#15">15</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a class="jxr_linenumber" name="16" href="#16">16</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a class="jxr_linenumber" name="17" href="#17">17</a>  <em class="jxr_comment"> * under the License.</em>
+<a class="jxr_linenumber" name="18" href="#18">18</a>  <em class="jxr_comment"> */</em>
+<a class="jxr_linenumber" name="19" href="#19">19</a>  <strong class="jxr_keyword">package</strong> org.apache.chemistry.opencmis.workbench.model;
+<a class="jxr_linenumber" name="20" href="#20">20</a>  
+<a class="jxr_linenumber" name="21" href="#21">21</a>  <strong class="jxr_keyword">import</strong> java.net.Authenticator;
+<a class="jxr_linenumber" name="22" href="#22">22</a>  <strong class="jxr_keyword">import</strong> java.security.cert.X509Certificate;
+<a class="jxr_linenumber" name="23" href="#23">23</a>  <strong class="jxr_keyword">import</strong> java.util.Collections;
+<a class="jxr_linenumber" name="24" href="#24">24</a>  <strong class="jxr_keyword">import</strong> java.util.HashSet;
+<a class="jxr_linenumber" name="25" href="#25">25</a>  <strong class="jxr_keyword">import</strong> java.util.List;
+<a class="jxr_linenumber" name="26" href="#26">26</a>  <strong class="jxr_keyword">import</strong> java.util.Locale;
+<a class="jxr_linenumber" name="27" href="#27">27</a>  <strong class="jxr_keyword">import</strong> java.util.Map;
+<a class="jxr_linenumber" name="28" href="#28">28</a>  <strong class="jxr_keyword">import</strong> java.util.Properties;
+<a class="jxr_linenumber" name="29" href="#29">29</a>  <strong class="jxr_keyword">import</strong> java.util.Set;
+<a class="jxr_linenumber" name="30" href="#30">30</a>  
+<a class="jxr_linenumber" name="31" href="#31">31</a>  <strong class="jxr_keyword">import</strong> javax.net.ssl.HostnameVerifier;
+<a class="jxr_linenumber" name="32" href="#32">32</a>  <strong class="jxr_keyword">import</strong> javax.net.ssl.HttpsURLConnection;
+<a class="jxr_linenumber" name="33" href="#33">33</a>  <strong class="jxr_keyword">import</strong> javax.net.ssl.SSLContext;
+<a class="jxr_linenumber" name="34" href="#34">34</a>  <strong class="jxr_keyword">import</strong> javax.net.ssl.SSLSession;
+<a class="jxr_linenumber" name="35" href="#35">35</a>  <strong class="jxr_keyword">import</strong> javax.net.ssl.TrustManager;
+<a class="jxr_linenumber" name="36" href="#36">36</a>  <strong class="jxr_keyword">import</strong> javax.net.ssl.X509TrustManager;
+<a class="jxr_linenumber" name="37" href="#37">37</a>  
+<a class="jxr_linenumber" name="38" href="#38">38</a>  <strong class="jxr_keyword">import</strong> org.apache.chemistry.opencmis.client.SessionParameterMap;
+<a class="jxr_linenumber" name="39" href="#39">39</a>  <strong class="jxr_keyword">import</strong> org.apache.chemistry.opencmis.client.api.ObjectFactory;
+<a class="jxr_linenumber" name="40" href="#40">40</a>  <strong class="jxr_keyword">import</strong> org.apache.chemistry.opencmis.client.api.ObjectType;
+<a class="jxr_linenumber" name="41" href="#41">41</a>  <strong class="jxr_keyword">import</strong> org.apache.chemistry.opencmis.client.api.OperationContext;
+<a class="jxr_linenumber" name="42" href="#42">42</a>  <strong class="jxr_keyword">import</strong> org.apache.chemistry.opencmis.client.api.Repository;
+<a class="jxr_linenumber" name="43" href="#43">43</a>  <strong class="jxr_keyword">import</strong> org.apache.chemistry.opencmis.client.api.Session;
+<a class="jxr_linenumber" name="44" href="#44">44</a>  <strong class="jxr_keyword">import</strong> org.apache.chemistry.opencmis.client.bindings.cache.TypeDefinitionCache;
+<a class="jxr_linenumber" name="45" href="#45">45</a>  <strong class="jxr_keyword">import</strong> org.apache.chemistry.opencmis.client.runtime.SessionFactoryImpl;
+<a class="jxr_linenumber" name="46" href="#46">46</a>  <strong class="jxr_keyword">import</strong> org.apache.chemistry.opencmis.client.runtime.cache.Cache;
+<a class="jxr_linenumber" name="47" href="#47">47</a>  <strong class="jxr_keyword">import</strong> org.apache.chemistry.opencmis.commons.PropertyIds;
+<a class="jxr_linenumber" name="48" href="#48">48</a>  <strong class="jxr_keyword">import</strong> org.apache.chemistry.opencmis.commons.SessionParameter;
+<a class="jxr_linenumber" name="49" href="#49">49</a>  <strong class="jxr_keyword">import</strong> org.apache.chemistry.opencmis.commons.data.RepositoryInfo;
+<a class="jxr_linenumber" name="50" href="#50">50</a>  <strong class="jxr_keyword">import</strong> org.apache.chemistry.opencmis.commons.definitions.PropertyDefinition;
+<a class="jxr_linenumber" name="51" href="#51">51</a>  <strong class="jxr_keyword">import</strong> org.apache.chemistry.opencmis.commons.enums.BaseTypeId;
+<a class="jxr_linenumber" name="52" href="#52">52</a>  <strong class="jxr_keyword">import</strong> org.apache.chemistry.opencmis.commons.enums.BindingType;
+<a class="jxr_linenumber" name="53" href="#53">53</a>  <strong class="jxr_keyword">import</strong> org.apache.chemistry.opencmis.commons.enums.CapabilityAcl;
+<a class="jxr_linenumber" name="54" href="#54">54</a>  <strong class="jxr_keyword">import</strong> org.apache.chemistry.opencmis.commons.enums.IncludeRelationships;
+<a class="jxr_linenumber" name="55" href="#55">55</a>  <strong class="jxr_keyword">import</strong> org.apache.chemistry.opencmis.commons.spi.AuthenticationProvider;
+<a class="jxr_linenumber" name="56" href="#56">56</a>  <strong class="jxr_keyword">import</strong> org.slf4j.Logger;
+<a class="jxr_linenumber" name="57" href="#57">57</a>  <strong class="jxr_keyword">import</strong> org.slf4j.LoggerFactory;
+<a class="jxr_linenumber" name="58" href="#58">58</a>  
+<a class="jxr_linenumber" name="59" href="#59">59</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/chemistry/opencmis/workbench/model/ClientSession.html">ClientSession</a> {
+<a class="jxr_linenumber" name="60" href="#60">60</a>  
+<a class="jxr_linenumber" name="61" href="#61">61</a>      <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> Logger LOG = LoggerFactory.getLogger(ClientSession.<strong class="jxr_keyword">class</strong>);
+<a class="jxr_linenumber" name="62" href="#62">62</a>  
+<a class="jxr_linenumber" name="63" href="#63">63</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> String WORKBENCH_PREFIX = <span class="jxr_string">"cmis.workbench."</span>;
+<a class="jxr_linenumber" name="64" href="#64">64</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> String OBJECT_PREFIX = WORKBENCH_PREFIX + <span class="jxr_string">"object."</span>;
+<a class="jxr_linenumber" name="65" href="#65">65</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> String FOLDER_PREFIX = WORKBENCH_PREFIX + <span class="jxr_string">"folder."</span>;
+<a class="jxr_linenumber" name="66" href="#66">66</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> String VERSION_PREFIX = WORKBENCH_PREFIX + <span class="jxr_string">"version."</span>;
+<a class="jxr_linenumber" name="67" href="#67">67</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> String ACCEPT_SELF_SIGNED_CERTIFICATES = WORKBENCH_PREFIX + <span class="jxr_string">"acceptSelfSignedCertificates"</span>;
+<a class="jxr_linenumber" name="68" href="#68">68</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> String MAX_FOLDER_CHILDREN = FOLDER_PREFIX + <span class="jxr_string">"maxChildren"</span>;
+<a class="jxr_linenumber" name="69" href="#69">69</a>  
+<a class="jxr_linenumber" name="70" href="#70">70</a>      <strong class="jxr_keyword">public</strong> enum <a href="../../../../../../org/apache/chemistry/opencmis/workbench/model/ClientSession.html">Authentication</a> {
+<a class="jxr_linenumber" name="71" href="#71">71</a>          NONE, STANDARD, NTLM, OAUTH_BEARER
+<a class="jxr_linenumber" name="72" href="#72">72</a>      }
+<a class="jxr_linenumber" name="73" href="#73">73</a>  
+<a class="jxr_linenumber" name="74" href="#74">74</a>      <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> Set&lt;String&gt; FOLDER_PROPERTY_SET = <strong class="jxr_keyword">new</strong> HashSet&lt;String&gt;();
+<a class="jxr_linenumber" name="75" href="#75">75</a>      <strong class="jxr_keyword">static</strong> {
+<a class="jxr_linenumber" name="76" href="#76">76</a>          FOLDER_PROPERTY_SET.add(PropertyIds.OBJECT_ID);
+<a class="jxr_linenumber" name="77" href="#77">77</a>          FOLDER_PROPERTY_SET.add(PropertyIds.OBJECT_TYPE_ID);
+<a class="jxr_linenumber" name="78" href="#78">78</a>          FOLDER_PROPERTY_SET.add(PropertyIds.NAME);
+<a class="jxr_linenumber" name="79" href="#79">79</a>          FOLDER_PROPERTY_SET.add(PropertyIds.CONTENT_STREAM_MIME_TYPE);
+<a class="jxr_linenumber" name="80" href="#80">80</a>          FOLDER_PROPERTY_SET.add(PropertyIds.CONTENT_STREAM_LENGTH);
+<a class="jxr_linenumber" name="81" href="#81">81</a>          FOLDER_PROPERTY_SET.add(PropertyIds.CONTENT_STREAM_FILE_NAME);
+<a class="jxr_linenumber" name="82" href="#82">82</a>          FOLDER_PROPERTY_SET.add(PropertyIds.CREATED_BY);
+<a class="jxr_linenumber" name="83" href="#83">83</a>          FOLDER_PROPERTY_SET.add(PropertyIds.CREATION_DATE);
+<a class="jxr_linenumber" name="84" href="#84">84</a>          FOLDER_PROPERTY_SET.add(PropertyIds.LAST_MODIFIED_BY);
+<a class="jxr_linenumber" name="85" href="#85">85</a>          FOLDER_PROPERTY_SET.add(PropertyIds.LAST_MODIFICATION_DATE);
+<a class="jxr_linenumber" name="86" href="#86">86</a>          FOLDER_PROPERTY_SET.add(PropertyIds.IS_VERSION_SERIES_CHECKED_OUT);
+<a class="jxr_linenumber" name="87" href="#87">87</a>          FOLDER_PROPERTY_SET.add(PropertyIds.VERSION_SERIES_CHECKED_OUT_ID);
+<a class="jxr_linenumber" name="88" href="#88">88</a>      }
+<a class="jxr_linenumber" name="89" href="#89">89</a>  
+<a class="jxr_linenumber" name="90" href="#90">90</a>      <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> Set&lt;String&gt; VERSION_PROPERTY_SET = <strong class="jxr_keyword">new</strong> HashSet&lt;String&gt;();
+<a class="jxr_linenumber" name="91" href="#91">91</a>      <strong class="jxr_keyword">static</strong> {
+<a class="jxr_linenumber" name="92" href="#92">92</a>          VERSION_PROPERTY_SET.add(PropertyIds.OBJECT_ID);
+<a class="jxr_linenumber" name="93" href="#93">93</a>          VERSION_PROPERTY_SET.add(PropertyIds.OBJECT_TYPE_ID);
+<a class="jxr_linenumber" name="94" href="#94">94</a>          VERSION_PROPERTY_SET.add(PropertyIds.NAME);
+<a class="jxr_linenumber" name="95" href="#95">95</a>          VERSION_PROPERTY_SET.add(PropertyIds.VERSION_LABEL);
+<a class="jxr_linenumber" name="96" href="#96">96</a>          VERSION_PROPERTY_SET.add(PropertyIds.IS_LATEST_VERSION);
+<a class="jxr_linenumber" name="97" href="#97">97</a>          VERSION_PROPERTY_SET.add(PropertyIds.IS_MAJOR_VERSION);
+<a class="jxr_linenumber" name="98" href="#98">98</a>          VERSION_PROPERTY_SET.add(PropertyIds.IS_LATEST_MAJOR_VERSION);
+<a class="jxr_linenumber" name="99" href="#99">99</a>          VERSION_PROPERTY_SET.add(PropertyIds.CONTENT_STREAM_MIME_TYPE);
+<a class="jxr_linenumber" name="100" href="#100">100</a>         VERSION_PROPERTY_SET.add(PropertyIds.CONTENT_STREAM_LENGTH);
+<a class="jxr_linenumber" name="101" href="#101">101</a>         VERSION_PROPERTY_SET.add(PropertyIds.CONTENT_STREAM_FILE_NAME);
+<a class="jxr_linenumber" name="102" href="#102">102</a>     }
+<a class="jxr_linenumber" name="103" href="#103">103</a> 
+<a class="jxr_linenumber" name="104" href="#104">104</a>     <strong class="jxr_keyword">private</strong> Map&lt;String, String&gt; sessionParameters;
+<a class="jxr_linenumber" name="105" href="#105">105</a>     <strong class="jxr_keyword">private</strong> List&lt;Repository&gt; repositories;
+<a class="jxr_linenumber" name="106" href="#106">106</a>     <strong class="jxr_keyword">private</strong> Session session;
+<a class="jxr_linenumber" name="107" href="#107">107</a>     <strong class="jxr_keyword">private</strong> OperationContext objectOperationContext;
+<a class="jxr_linenumber" name="108" href="#108">108</a>     <strong class="jxr_keyword">private</strong> OperationContext folderOperationContext;
+<a class="jxr_linenumber" name="109" href="#109">109</a>     <strong class="jxr_keyword">private</strong> OperationContext versionOperationContext;
+<a class="jxr_linenumber" name="110" href="#110">110</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">int</strong> maxChildren;
+<a class="jxr_linenumber" name="111" href="#111">111</a> 
+<a class="jxr_linenumber" name="112" href="#112">112</a>     <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/chemistry/opencmis/workbench/model/ClientSession.html">ClientSession</a>(Map&lt;String, String&gt; sessionParameters, ObjectFactory objectFactory,
+<a class="jxr_linenumber" name="113" href="#113">113</a>             AuthenticationProvider authenticationProvider, Cache cache, TypeDefinitionCache typeDefCache) {
+<a class="jxr_linenumber" name="114" href="#114">114</a>         <strong class="jxr_keyword">if</strong> (sessionParameters == <strong class="jxr_keyword">null</strong>) {
+<a class="jxr_linenumber" name="115" href="#115">115</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> IllegalArgumentException(<span class="jxr_string">"Parameters must not be null!"</span>);
+<a class="jxr_linenumber" name="116" href="#116">116</a>         }
+<a class="jxr_linenumber" name="117" href="#117">117</a> 
+<a class="jxr_linenumber" name="118" href="#118">118</a>         connect(sessionParameters, objectFactory, authenticationProvider, cache, typeDefCache);
+<a class="jxr_linenumber" name="119" href="#119">119</a>     }
+<a class="jxr_linenumber" name="120" href="#120">120</a> 
+<a class="jxr_linenumber" name="121" href="#121">121</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> SessionParameterMap createSessionParameters(String url, BindingType binding, String username,
+<a class="jxr_linenumber" name="122" href="#122">122</a>             String password, <a href="../../../../../../org/apache/chemistry/opencmis/workbench/model/ClientSession.html">Authentication</a> authentication, <strong class="jxr_keyword">boolean</strong> compression, <strong class="jxr_keyword">boolean</strong> clientCompression,
+<a class="jxr_linenumber" name="123" href="#123">123</a>             <strong class="jxr_keyword">boolean</strong> cookies) {
+<a class="jxr_linenumber" name="124" href="#124">124</a>         SessionParameterMap parameters = <strong class="jxr_keyword">new</strong> SessionParameterMap();
+<a class="jxr_linenumber" name="125" href="#125">125</a> 
+<a class="jxr_linenumber" name="126" href="#126">126</a>         <strong class="jxr_keyword">switch</strong> (binding) {
+<a class="jxr_linenumber" name="127" href="#127">127</a>         <strong class="jxr_keyword">case</strong> WEBSERVICES:
+<a class="jxr_linenumber" name="128" href="#128">128</a>             parameters.setWebServicesBindingUrl(url);
+<a class="jxr_linenumber" name="129" href="#129">129</a>             <strong class="jxr_keyword">break</strong>;
+<a class="jxr_linenumber" name="130" href="#130">130</a>         <strong class="jxr_keyword">case</strong> ATOMPUB:
+<a class="jxr_linenumber" name="131" href="#131">131</a>             parameters.setAtomPubBindingUrl(url);
+<a class="jxr_linenumber" name="132" href="#132">132</a>             <strong class="jxr_keyword">break</strong>;
+<a class="jxr_linenumber" name="133" href="#133">133</a>         <strong class="jxr_keyword">case</strong> BROWSER:
+<a class="jxr_linenumber" name="134" href="#134">134</a>             parameters.setBrowserBindingUrl(url);
+<a class="jxr_linenumber" name="135" href="#135">135</a>             <strong class="jxr_keyword">break</strong>;
+<a class="jxr_linenumber" name="136" href="#136">136</a>         <strong class="jxr_keyword">default</strong>:
+<a class="jxr_linenumber" name="137" href="#137">137</a>             parameters.put(SessionParameter.BINDING_TYPE, BindingType.CUSTOM.value());
+<a class="jxr_linenumber" name="138" href="#138">138</a>         }
+<a class="jxr_linenumber" name="139" href="#139">139</a> 
+<a class="jxr_linenumber" name="140" href="#140">140</a>         <strong class="jxr_keyword">switch</strong> (authentication) {
+<a class="jxr_linenumber" name="141" href="#141">141</a>         <strong class="jxr_keyword">case</strong> STANDARD:
+<a class="jxr_linenumber" name="142" href="#142">142</a>             parameters.setUsernameTokenAuthentication(username, password, <strong class="jxr_keyword">true</strong>);
+<a class="jxr_linenumber" name="143" href="#143">143</a>             <strong class="jxr_keyword">break</strong>;
+<a class="jxr_linenumber" name="144" href="#144">144</a>         <strong class="jxr_keyword">case</strong> NTLM:
+<a class="jxr_linenumber" name="145" href="#145">145</a>             parameters.setNtlmAuthentication(username, password);
+<a class="jxr_linenumber" name="146" href="#146">146</a>             <strong class="jxr_keyword">break</strong>;
+<a class="jxr_linenumber" name="147" href="#147">147</a>         <strong class="jxr_keyword">case</strong> OAUTH_BEARER:
+<a class="jxr_linenumber" name="148" href="#148">148</a>             parameters.setOAuthBearerTokenAuthentication(username);
+<a class="jxr_linenumber" name="149" href="#149">149</a>             <strong class="jxr_keyword">break</strong>;
+<a class="jxr_linenumber" name="150" href="#150">150</a>         <strong class="jxr_keyword">default</strong>:
+<a class="jxr_linenumber" name="151" href="#151">151</a>             parameters.setNoAuthentication();
+<a class="jxr_linenumber" name="152" href="#152">152</a>         }
+<a class="jxr_linenumber" name="153" href="#153">153</a> 
+<a class="jxr_linenumber" name="154" href="#154">154</a>         parameters.setCompression(compression);
+<a class="jxr_linenumber" name="155" href="#155">155</a>         parameters.setClientCompression(clientCompression);
+<a class="jxr_linenumber" name="156" href="#156">156</a> 
+<a class="jxr_linenumber" name="157" href="#157">157</a>         parameters.setCookies(cookies);
+<a class="jxr_linenumber" name="158" href="#158">158</a> 
+<a class="jxr_linenumber" name="159" href="#159">159</a>         <em class="jxr_comment">// get additional workbench properties from system properties</em>
+<a class="jxr_linenumber" name="160" href="#160">160</a>         Properties sysProps = System.getProperties();
+<a class="jxr_linenumber" name="161" href="#161">161</a>         <strong class="jxr_keyword">for</strong> (String key : sysProps.stringPropertyNames()) {
+<a class="jxr_linenumber" name="162" href="#162">162</a>             <strong class="jxr_keyword">if</strong> (key.startsWith(WORKBENCH_PREFIX)) {
+<a class="jxr_linenumber" name="163" href="#163">163</a>                 parameters.put(key, sysProps.getProperty(key));
+<a class="jxr_linenumber" name="164" href="#164">164</a>             }
+<a class="jxr_linenumber" name="165" href="#165">165</a>         }
+<a class="jxr_linenumber" name="166" href="#166">166</a> 
+<a class="jxr_linenumber" name="167" href="#167">167</a>         <em class="jxr_comment">// set proxy authentication</em>
+<a class="jxr_linenumber" name="168" href="#168">168</a>         <strong class="jxr_keyword">if</strong> (url != <strong class="jxr_keyword">null</strong>) {
+<a class="jxr_linenumber" name="169" href="#169">169</a>             String urlLower = url.trim().toLowerCase(Locale.ENGLISH);
+<a class="jxr_linenumber" name="170" href="#170">170</a> 
+<a class="jxr_linenumber" name="171" href="#171">171</a>             <strong class="jxr_keyword">if</strong> (urlLower.startsWith(<span class="jxr_string">"http://"</span>)) {
+<a class="jxr_linenumber" name="172" href="#172">172</a>                 String proxyUser = System.getProperty(<span class="jxr_string">"http.proxyUser"</span>);
+<a class="jxr_linenumber" name="173" href="#173">173</a>                 <strong class="jxr_keyword">if</strong> (proxyUser != <strong class="jxr_keyword">null</strong>) {
+<a class="jxr_linenumber" name="174" href="#174">174</a>                     String proxyPassword = System.getProperty(<span class="jxr_string">"http.proxyPassword"</span>);
+<a class="jxr_linenumber" name="175" href="#175">175</a>                     parameters.setProxyUserAndPassword(proxyUser, proxyPassword);
+<a class="jxr_linenumber" name="176" href="#176">176</a>                 }
+<a class="jxr_linenumber" name="177" href="#177">177</a>             } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (urlLower.startsWith(<span class="jxr_string">"https://"</span>)) {
+<a class="jxr_linenumber" name="178" href="#178">178</a>                 String proxyUser = System.getProperty(<span class="jxr_string">"https.proxyUser"</span>);
+<a class="jxr_linenumber" name="179" href="#179">179</a>                 <strong class="jxr_keyword">if</strong> (proxyUser != <strong class="jxr_keyword">null</strong>) {
+<a class="jxr_linenumber" name="180" href="#180">180</a>                     String proxyPassword = System.getProperty(<span class="jxr_string">"https.proxyPassword"</span>);
+<a class="jxr_linenumber" name="181" href="#181">181</a>                     parameters.setProxyUserAndPassword(proxyUser, proxyPassword);
+<a class="jxr_linenumber" name="182" href="#182">182</a>                 }
+<a class="jxr_linenumber" name="183" href="#183">183</a>             }
+<a class="jxr_linenumber" name="184" href="#184">184</a>         }
+<a class="jxr_linenumber" name="185" href="#185">185</a> 
+<a class="jxr_linenumber" name="186" href="#186">186</a>         <strong class="jxr_keyword">return</strong> parameters;
+<a class="jxr_linenumber" name="187" href="#187">187</a>     }
+<a class="jxr_linenumber" name="188" href="#188">188</a> 
+<a class="jxr_linenumber" name="189" href="#189">189</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> connect(Map&lt;String, String&gt; sessionParameters, ObjectFactory objectFactory,
+<a class="jxr_linenumber" name="190" href="#190">190</a>             AuthenticationProvider authenticationProvider, Cache cache, TypeDefinitionCache typeDefCache) {
+<a class="jxr_linenumber" name="191" href="#191">191</a>         <strong class="jxr_keyword">this</strong>.sessionParameters = sessionParameters;
+<a class="jxr_linenumber" name="192" href="#192">192</a> 
+<a class="jxr_linenumber" name="193" href="#193">193</a>         <em class="jxr_comment">// set a new dummy authenticator</em>
+<a class="jxr_linenumber" name="194" href="#194">194</a>         <em class="jxr_comment">// don't send previous credentials to another server</em>
+<a class="jxr_linenumber" name="195" href="#195">195</a>         Authenticator.setDefault(<strong class="jxr_keyword">new</strong> Authenticator() {
+<a class="jxr_linenumber" name="196" href="#196">196</a>         });
+<a class="jxr_linenumber" name="197" href="#197">197</a> 
+<a class="jxr_linenumber" name="198" href="#198">198</a>         <strong class="jxr_keyword">if</strong> (Boolean.parseBoolean(sessionParameters.get(ACCEPT_SELF_SIGNED_CERTIFICATES))) {
+<a class="jxr_linenumber" name="199" href="#199">199</a>             acceptSelfSignedCertificates();
+<a class="jxr_linenumber" name="200" href="#200">200</a>         }
+<a class="jxr_linenumber" name="201" href="#201">201</a> 
+<a class="jxr_linenumber" name="202" href="#202">202</a>         maxChildren = -1;
+<a class="jxr_linenumber" name="203" href="#203">203</a>         String maxChildrenStr = sessionParameters.get(MAX_FOLDER_CHILDREN);
+<a class="jxr_linenumber" name="204" href="#204">204</a>         <strong class="jxr_keyword">if</strong> (maxChildrenStr != <strong class="jxr_keyword">null</strong>) {
+<a class="jxr_linenumber" name="205" href="#205">205</a>             <strong class="jxr_keyword">try</strong> {
+<a class="jxr_linenumber" name="206" href="#206">206</a>                 maxChildren = Integer.valueOf(maxChildrenStr.trim());
+<a class="jxr_linenumber" name="207" href="#207">207</a>             } <strong class="jxr_keyword">catch</strong> (NumberFormatException e) {
+<a class="jxr_linenumber" name="208" href="#208">208</a>                 LOG.warn(<span class="jxr_string">"Invalid "</span> + MAX_FOLDER_CHILDREN + <span class="jxr_string">" parameter!"</span>, e);
+<a class="jxr_linenumber" name="209" href="#209">209</a>             }
+<a class="jxr_linenumber" name="210" href="#210">210</a>         }
+<a class="jxr_linenumber" name="211" href="#211">211</a> 
+<a class="jxr_linenumber" name="212" href="#212">212</a>         repositories = SessionFactoryImpl.newInstance().getRepositories(sessionParameters, objectFactory,
+<a class="jxr_linenumber" name="213" href="#213">213</a>                 authenticationProvider, cache, typeDefCache);
+<a class="jxr_linenumber" name="214" href="#214">214</a>     }
+<a class="jxr_linenumber" name="215" href="#215">215</a> 
+<a class="jxr_linenumber" name="216" href="#216">216</a>     <strong class="jxr_keyword">public</strong> List&lt;Repository&gt; getRepositories() {
+<a class="jxr_linenumber" name="217" href="#217">217</a>         <strong class="jxr_keyword">return</strong> repositories;
+<a class="jxr_linenumber" name="218" href="#218">218</a>     }
+<a class="jxr_linenumber" name="219" href="#219">219</a> 
+<a class="jxr_linenumber" name="220" href="#220">220</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">synchronized</strong> Session createSession(<strong class="jxr_keyword">int</strong> index) {
+<a class="jxr_linenumber" name="221" href="#221">221</a>         session = repositories.get(index).createSession();
+<a class="jxr_linenumber" name="222" href="#222">222</a>         objectOperationContext = <strong class="jxr_keyword">null</strong>;
+<a class="jxr_linenumber" name="223" href="#223">223</a>         folderOperationContext = <strong class="jxr_keyword">null</strong>;
+<a class="jxr_linenumber" name="224" href="#224">224</a>         versionOperationContext = <strong class="jxr_keyword">null</strong>;
+<a class="jxr_linenumber" name="225" href="#225">225</a>         <strong class="jxr_keyword">return</strong> getSession();
+<a class="jxr_linenumber" name="226" href="#226">226</a>     }
+<a class="jxr_linenumber" name="227" href="#227">227</a> 
+<a class="jxr_linenumber" name="228" href="#228">228</a>     <strong class="jxr_keyword">public</strong> Session getSession() {
+<a class="jxr_linenumber" name="229" href="#229">229</a>         <strong class="jxr_keyword">return</strong> session;
+<a class="jxr_linenumber" name="230" href="#230">230</a>     }
+<a class="jxr_linenumber" name="231" href="#231">231</a> 
+<a class="jxr_linenumber" name="232" href="#232">232</a>     <strong class="jxr_keyword">public</strong> Map&lt;String, String&gt; getSessionParameters() {
+<a class="jxr_linenumber" name="233" href="#233">233</a>         <strong class="jxr_keyword">return</strong> Collections.unmodifiableMap(sessionParameters);
+<a class="jxr_linenumber" name="234" href="#234">234</a>     }
+<a class="jxr_linenumber" name="235" href="#235">235</a> 
+<a class="jxr_linenumber" name="236" href="#236">236</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> getMaxChildren() {
+<a class="jxr_linenumber" name="237" href="#237">237</a>         <strong class="jxr_keyword">return</strong> maxChildren;
+<a class="jxr_linenumber" name="238" href="#238">238</a>     }
+<a class="jxr_linenumber" name="239" href="#239">239</a> 
+<a class="jxr_linenumber" name="240" href="#240">240</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">synchronized</strong> OperationContext getObjectOperationContext() {
+<a class="jxr_linenumber" name="241" href="#241">241</a>         <strong class="jxr_keyword">if</strong> (objectOperationContext == <strong class="jxr_keyword">null</strong>) {
+<a class="jxr_linenumber" name="242" href="#242">242</a>             createOperationContexts();
+<a class="jxr_linenumber" name="243" href="#243">243</a>         }
+<a class="jxr_linenumber" name="244" href="#244">244</a>         <strong class="jxr_keyword">return</strong> objectOperationContext;
+<a class="jxr_linenumber" name="245" href="#245">245</a>     }
+<a class="jxr_linenumber" name="246" href="#246">246</a> 
+<a class="jxr_linenumber" name="247" href="#247">247</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">synchronized</strong> OperationContext getFolderOperationContext() {
+<a class="jxr_linenumber" name="248" href="#248">248</a>         <strong class="jxr_keyword">if</strong> (folderOperationContext == <strong class="jxr_keyword">null</strong>) {
+<a class="jxr_linenumber" name="249" href="#249">249</a>             createOperationContexts();
+<a class="jxr_linenumber" name="250" href="#250">250</a>         }
+<a class="jxr_linenumber" name="251" href="#251">251</a>         <strong class="jxr_keyword">return</strong> folderOperationContext;
+<a class="jxr_linenumber" name="252" href="#252">252</a>     }
+<a class="jxr_linenumber" name="253" href="#253">253</a> 
+<a class="jxr_linenumber" name="254" href="#254">254</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">synchronized</strong> OperationContext getVersionOperationContext() {
+<a class="jxr_linenumber" name="255" href="#255">255</a>         <strong class="jxr_keyword">if</strong> (versionOperationContext == <strong class="jxr_keyword">null</strong>) {
+<a class="jxr_linenumber" name="256" href="#256">256</a>             createOperationContexts();
+<a class="jxr_linenumber" name="257" href="#257">257</a>         }
+<a class="jxr_linenumber" name="258" href="#258">258</a>         <strong class="jxr_keyword">return</strong> versionOperationContext;
+<a class="jxr_linenumber" name="259" href="#259">259</a>     }
+<a class="jxr_linenumber" name="260" href="#260">260</a> 
+<a class="jxr_linenumber" name="261" href="#261">261</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> createOperationContexts() {
+<a class="jxr_linenumber" name="262" href="#262">262</a> 
+<a class="jxr_linenumber" name="263" href="#263">263</a>         RepositoryInfo repositoryInfo = getSession().getRepositoryInfo();
+<a class="jxr_linenumber" name="264" href="#264">264</a> 
+<a class="jxr_linenumber" name="265" href="#265">265</a>         String supportsAcl = <span class="jxr_string">"true"</span>;
+<a class="jxr_linenumber" name="266" href="#266">266</a>         <strong class="jxr_keyword">if</strong> (repositoryInfo != <strong class="jxr_keyword">null</strong> &amp;&amp; repositoryInfo.getCapabilities() != <strong class="jxr_keyword">null</strong>
+<a class="jxr_linenumber" name="267" href="#267">267</a>                 &amp;&amp; repositoryInfo.getCapabilities().getAclCapability() == CapabilityAcl.NONE) {
+<a class="jxr_linenumber" name="268" href="#268">268</a>             supportsAcl = <span class="jxr_string">"false"</span>;
+<a class="jxr_linenumber" name="269" href="#269">269</a>         }
+<a class="jxr_linenumber" name="270" href="#270">270</a> 
+<a class="jxr_linenumber" name="271" href="#271">271</a>         <em class="jxr_comment">// object operation context</em>
+<a class="jxr_linenumber" name="272" href="#272">272</a>         setDefault(OBJECT_PREFIX, sessionParameters, ClientOperationContext.FILTER, <span class="jxr_string">"*"</span>);
+<a class="jxr_linenumber" name="273" href="#273">273</a>         setDefault(OBJECT_PREFIX, sessionParameters, ClientOperationContext.INCLUDE_ACLS, supportsAcl);
+<a class="jxr_linenumber" name="274" href="#274">274</a>         setDefault(OBJECT_PREFIX, sessionParameters, ClientOperationContext.INCLUDE_ALLOWABLE_ACTIONS, <span class="jxr_string">"true"</span>);
+<a class="jxr_linenumber" name="275" href="#275">275</a>         setDefault(OBJECT_PREFIX, sessionParameters, ClientOperationContext.INCLUDE_POLICIES, <span class="jxr_string">"true"</span>);
+<a class="jxr_linenumber" name="276" href="#276">276</a>         setDefault(OBJECT_PREFIX, sessionParameters, ClientOperationContext.INCLUDE_RELATIONSHIPS,
+<a class="jxr_linenumber" name="277" href="#277">277</a>                 IncludeRelationships.BOTH.value());
+<a class="jxr_linenumber" name="278" href="#278">278</a>         setDefault(OBJECT_PREFIX, sessionParameters, ClientOperationContext.RENDITION_FILTER, <span class="jxr_string">"*"</span>);
+<a class="jxr_linenumber" name="279" href="#279">279</a>         setDefault(OBJECT_PREFIX, sessionParameters, ClientOperationContext.ORDER_BY, <strong class="jxr_keyword">null</strong>);
+<a class="jxr_linenumber" name="280" href="#280">280</a>         setDefault(OBJECT_PREFIX, sessionParameters, ClientOperationContext.MAX_ITEMS_PER_PAGE, <span class="jxr_string">"1000"</span>);
+<a class="jxr_linenumber" name="281" href="#281">281</a> 
+<a class="jxr_linenumber" name="282" href="#282">282</a>         objectOperationContext = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/chemistry/opencmis/workbench/model/ClientOperationContext.html">ClientOperationContext</a>(OBJECT_PREFIX, sessionParameters);
+<a class="jxr_linenumber" name="283" href="#283">283</a> 
+<a class="jxr_linenumber" name="284" href="#284">284</a>         <em class="jxr_comment">// folder operation context</em>
+<a class="jxr_linenumber" name="285" href="#285">285</a>         <strong class="jxr_keyword">if</strong> (!sessionParameters.containsKey(FOLDER_PREFIX + ClientOperationContext.FILTER)) {
+<a class="jxr_linenumber" name="286" href="#286">286</a>             ObjectType type = session.getTypeDefinition(BaseTypeId.CMIS_DOCUMENT.value());
+<a class="jxr_linenumber" name="287" href="#287">287</a> 
+<a class="jxr_linenumber" name="288" href="#288">288</a>             StringBuilder filter = <strong class="jxr_keyword">new</strong> StringBuilder();
+<a class="jxr_linenumber" name="289" href="#289">289</a>             <strong class="jxr_keyword">for</strong> (String propId : FOLDER_PROPERTY_SET) {
+<a class="jxr_linenumber" name="290" href="#290">290</a>                 PropertyDefinition&lt;?&gt; propDef = type.getPropertyDefinitions().get(propId);
+<a class="jxr_linenumber" name="291" href="#291">291</a>                 <strong class="jxr_keyword">if</strong> (propDef != <strong class="jxr_keyword">null</strong>) {
+<a class="jxr_linenumber" name="292" href="#292">292</a>                     <strong class="jxr_keyword">if</strong> (filter.length() &gt; 0) {
+<a class="jxr_linenumber" name="293" href="#293">293</a>                         filter.append(',');
+<a class="jxr_linenumber" name="294" href="#294">294</a>                     }
+<a class="jxr_linenumber" name="295" href="#295">295</a>                     filter.append(propDef.getQueryName());
+<a class="jxr_linenumber" name="296" href="#296">296</a>                 }
+<a class="jxr_linenumber" name="297" href="#297">297</a>             }
+<a class="jxr_linenumber" name="298" href="#298">298</a> 
+<a class="jxr_linenumber" name="299" href="#299">299</a>             sessionParameters.put(FOLDER_PREFIX + ClientOperationContext.FILTER, filter.toString());
+<a class="jxr_linenumber" name="300" href="#300">300</a>         }
+<a class="jxr_linenumber" name="301" href="#301">301</a> 
+<a class="jxr_linenumber" name="302" href="#302">302</a>         setDefault(FOLDER_PREFIX, sessionParameters, ClientOperationContext.INCLUDE_ACLS, <span class="jxr_string">"false"</span>);
+<a class="jxr_linenumber" name="303" href="#303">303</a>         setDefault(FOLDER_PREFIX, sessionParameters, ClientOperationContext.INCLUDE_ALLOWABLE_ACTIONS, <span class="jxr_string">"false"</span>);
+<a class="jxr_linenumber" name="304" href="#304">304</a>         setDefault(FOLDER_PREFIX, sessionParameters, ClientOperationContext.INCLUDE_POLICIES, <span class="jxr_string">"false"</span>);
+<a class="jxr_linenumber" name="305" href="#305">305</a>         setDefault(FOLDER_PREFIX, sessionParameters, ClientOperationContext.INCLUDE_RELATIONSHIPS,
+<a class="jxr_linenumber" name="306" href="#306">306</a>                 IncludeRelationships.NONE.value());
+<a class="jxr_linenumber" name="307" href="#307">307</a>         setDefault(FOLDER_PREFIX, sessionParameters, ClientOperationContext.RENDITION_FILTER, <span class="jxr_string">"cmis:none"</span>);
+<a class="jxr_linenumber" name="308" href="#308">308</a>         setDefault(FOLDER_PREFIX, sessionParameters, ClientOperationContext.ORDER_BY, <strong class="jxr_keyword">null</strong>);
+<a class="jxr_linenumber" name="309" href="#309">309</a>         setDefault(FOLDER_PREFIX, sessionParameters, ClientOperationContext.MAX_ITEMS_PER_PAGE, <span class="jxr_string">"10000"</span>);
+<a class="jxr_linenumber" name="310" href="#310">310</a> 
+<a class="jxr_linenumber" name="311" href="#311">311</a>         folderOperationContext = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/chemistry/opencmis/workbench/model/ClientOperationContext.html">ClientOperationContext</a>(FOLDER_PREFIX, sessionParameters);
+<a class="jxr_linenumber" name="312" href="#312">312</a> 
+<a class="jxr_linenumber" name="313" href="#313">313</a>         <strong class="jxr_keyword">if</strong> (!sessionParameters.containsKey(VERSION_PREFIX + ClientOperationContext.FILTER)) {
+<a class="jxr_linenumber" name="314" href="#314">314</a>             ObjectType type = session.getTypeDefinition(BaseTypeId.CMIS_DOCUMENT.value());
+<a class="jxr_linenumber" name="315" href="#315">315</a> 
+<a class="jxr_linenumber" name="316" href="#316">316</a>             StringBuilder filter = <strong class="jxr_keyword">new</strong> StringBuilder();
+<a class="jxr_linenumber" name="317" href="#317">317</a>             <strong class="jxr_keyword">for</strong> (String propId : VERSION_PROPERTY_SET) {
+<a class="jxr_linenumber" name="318" href="#318">318</a>                 PropertyDefinition&lt;?&gt; propDef = type.getPropertyDefinitions().get(propId);
+<a class="jxr_linenumber" name="319" href="#319">319</a>                 <strong class="jxr_keyword">if</strong> (propDef != <strong class="jxr_keyword">null</strong>) {
+<a class="jxr_linenumber" name="320" href="#320">320</a>                     <strong class="jxr_keyword">if</strong> (filter.length() &gt; 0) {
+<a class="jxr_linenumber" name="321" href="#321">321</a>                         filter.append(',');
+<a class="jxr_linenumber" name="322" href="#322">322</a>                     }
+<a class="jxr_linenumber" name="323" href="#323">323</a>                     filter.append(propDef.getQueryName());
+<a class="jxr_linenumber" name="324" href="#324">324</a>                 }
+<a class="jxr_linenumber" name="325" href="#325">325</a>             }
+<a class="jxr_linenumber" name="326" href="#326">326</a> 
+<a class="jxr_linenumber" name="327" href="#327">327</a>             sessionParameters.put(VERSION_PREFIX + ClientOperationContext.FILTER, filter.toString());
+<a class="jxr_linenumber" name="328" href="#328">328</a>         }
+<a class="jxr_linenumber" name="329" href="#329">329</a> 
+<a class="jxr_linenumber" name="330" href="#330">330</a>         setDefault(VERSION_PREFIX, sessionParameters, ClientOperationContext.INCLUDE_ACLS, <span class="jxr_string">"false"</span>);
+<a class="jxr_linenumber" name="331" href="#331">331</a>         setDefault(VERSION_PREFIX, sessionParameters, ClientOperationContext.INCLUDE_ALLOWABLE_ACTIONS, <span class="jxr_string">"false"</span>);
+<a class="jxr_linenumber" name="332" href="#332">332</a>         setDefault(VERSION_PREFIX, sessionParameters, ClientOperationContext.INCLUDE_POLICIES, <span class="jxr_string">"false"</span>);
+<a class="jxr_linenumber" name="333" href="#333">333</a>         setDefault(VERSION_PREFIX, sessionParameters, ClientOperationContext.INCLUDE_RELATIONSHIPS,
+<a class="jxr_linenumber" name="334" href="#334">334</a>                 IncludeRelationships.NONE.value());
+<a class="jxr_linenumber" name="335" href="#335">335</a>         setDefault(VERSION_PREFIX, sessionParameters, ClientOperationContext.RENDITION_FILTER, <span class="jxr_string">"cmis:none"</span>);
+<a class="jxr_linenumber" name="336" href="#336">336</a>         setDefault(VERSION_PREFIX, sessionParameters, ClientOperationContext.MAX_ITEMS_PER_PAGE, <span class="jxr_string">"10000"</span>);
+<a class="jxr_linenumber" name="337" href="#337">337</a> 
+<a class="jxr_linenumber" name="338" href="#338">338</a>         versionOperationContext = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/chemistry/opencmis/workbench/model/ClientOperationContext.html">ClientOperationContext</a>(VERSION_PREFIX, sessionParameters);
+<a class="jxr_linenumber" name="339" href="#339">339</a>     }
+<a class="jxr_linenumber" name="340" href="#340">340</a> 
+<a class="jxr_linenumber" name="341" href="#341">341</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> setDefault(String prefix, Map&lt;String, String&gt; map, String key, String value) {
+<a class="jxr_linenumber" name="342" href="#342">342</a>         <strong class="jxr_keyword">if</strong> (!map.containsKey(prefix + key)) {
+<a class="jxr_linenumber" name="343" href="#343">343</a>             map.put(prefix + key, value);
+<a class="jxr_linenumber" name="344" href="#344">344</a>         }
+<a class="jxr_linenumber" name="345" href="#345">345</a>     }
+<a class="jxr_linenumber" name="346" href="#346">346</a> 
+<a class="jxr_linenumber" name="347" href="#347">347</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> acceptSelfSignedCertificates() {
+<a class="jxr_linenumber" name="348" href="#348">348</a>         TrustManager[] trustAllCerts = <strong class="jxr_keyword">new</strong> TrustManager[] { <strong class="jxr_keyword">new</strong> X509TrustManager() {
+<a class="jxr_linenumber" name="349" href="#349">349</a>             <strong class="jxr_keyword">public</strong> X509Certificate[] getAcceptedIssuers() {
+<a class="jxr_linenumber" name="350" href="#350">350</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> X509Certificate[0];
+<a class="jxr_linenumber" name="351" href="#351">351</a>             }
+<a class="jxr_linenumber" name="352" href="#352">352</a> 
+<a class="jxr_linenumber" name="353" href="#353">353</a>             <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> checkClientTrusted(X509Certificate[] certs, String authType) {
+<a class="jxr_linenumber" name="354" href="#354">354</a>             }
+<a class="jxr_linenumber" name="355" href="#355">355</a> 
+<a class="jxr_linenumber" name="356" href="#356">356</a>             <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> checkServerTrusted(X509Certificate[] certs, String authType) {
+<a class="jxr_linenumber" name="357" href="#357">357</a>             }
+<a class="jxr_linenumber" name="358" href="#358">358</a>         } };
+<a class="jxr_linenumber" name="359" href="#359">359</a> 
+<a class="jxr_linenumber" name="360" href="#360">360</a>         HostnameVerifier accepctAllHostnames = <strong class="jxr_keyword">new</strong> HostnameVerifier() {
+<a class="jxr_linenumber" name="361" href="#361">361</a>             @Override
+<a class="jxr_linenumber" name="362" href="#362">362</a>             <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> verify(String hostname, SSLSession session) {
+<a class="jxr_linenumber" name="363" href="#363">363</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
+<a class="jxr_linenumber" name="364" href="#364">364</a>             }
+<a class="jxr_linenumber" name="365" href="#365">365</a>         };
+<a class="jxr_linenumber" name="366" href="#366">366</a> 
+<a class="jxr_linenumber" name="367" href="#367">367</a>         <strong class="jxr_keyword">try</strong> {
+<a class="jxr_linenumber" name="368" href="#368">368</a>             SSLContext sc = SSLContext.getInstance(<span class="jxr_string">"SSL"</span>);
+<a class="jxr_linenumber" name="369" href="#369">369</a>             sc.init(<strong class="jxr_keyword">null</strong>, trustAllCerts, <strong class="jxr_keyword">new</strong> java.security.SecureRandom());
+<a class="jxr_linenumber" name="370" href="#370">370</a>             HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory());
+<a class="jxr_linenumber" name="371" href="#371">371</a>             HttpsURLConnection.setDefaultHostnameVerifier(accepctAllHostnames);
+<a class="jxr_linenumber" name="372" href="#372">372</a>         } <strong class="jxr_keyword">catch</strong> (Exception e) {
+<a class="jxr_linenumber" name="373" href="#373">373</a>             LOG.error(e.getMessage(), e);
+<a class="jxr_linenumber" name="374" href="#374">374</a>         }
+<a class="jxr_linenumber" name="375" href="#375">375</a>     }
+<a class="jxr_linenumber" name="376" href="#376">376</a> }
+</pre>
+<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
+</html>
+

Added: chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/model/FolderListener.html
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/model/FolderListener.html?rev=1671614&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/model/FolderListener.html (added)
+++ chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/model/FolderListener.html Mon Apr  6 17:19:59 2015
@@ -0,0 +1,40 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
+<title>FolderListener xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<div id="overview"><a href="../../../../../../../apidocs/org/apache/chemistry/opencmis/workbench/model/FolderListener.html">View Javadoc</a></div><pre>
+
+<a class="jxr_linenumber" name="1" href="#1">1</a>   <em class="jxr_comment">/*</em>
+<a class="jxr_linenumber" name="2" href="#2">2</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a class="jxr_linenumber" name="3" href="#3">3</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a class="jxr_linenumber" name="4" href="#4">4</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a class="jxr_linenumber" name="5" href="#5">5</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a class="jxr_linenumber" name="6" href="#6">6</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a class="jxr_linenumber" name="7" href="#7">7</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a class="jxr_linenumber" name="8" href="#8">8</a>   <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a class="jxr_linenumber" name="9" href="#9">9</a>   <em class="jxr_comment"> *</em>
+<a class="jxr_linenumber" name="10" href="#10">10</a>  <em class="jxr_comment"> * <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
+<a class="jxr_linenumber" name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a class="jxr_linenumber" name="12" href="#12">12</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a class="jxr_linenumber" name="13" href="#13">13</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a class="jxr_linenumber" name="14" href="#14">14</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a class="jxr_linenumber" name="15" href="#15">15</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a class="jxr_linenumber" name="16" href="#16">16</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a class="jxr_linenumber" name="17" href="#17">17</a>  <em class="jxr_comment"> * under the License.</em>
+<a class="jxr_linenumber" name="18" href="#18">18</a>  <em class="jxr_comment"> */</em>
+<a class="jxr_linenumber" name="19" href="#19">19</a>  <strong class="jxr_keyword">package</strong> org.apache.chemistry.opencmis.workbench.model;
+<a class="jxr_linenumber" name="20" href="#20">20</a>  
+<a class="jxr_linenumber" name="21" href="#21">21</a>  <strong class="jxr_keyword">import</strong> java.util.EventListener;
+<a class="jxr_linenumber" name="22" href="#22">22</a>  
+<a class="jxr_linenumber" name="23" href="#23">23</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../org/apache/chemistry/opencmis/workbench/model/FolderListener.html">FolderListener</a> <strong class="jxr_keyword">extends</strong> EventListener {
+<a class="jxr_linenumber" name="24" href="#24">24</a>  
+<a class="jxr_linenumber" name="25" href="#25">25</a>      <strong class="jxr_keyword">void</strong> folderLoaded(<a href="../../../../../../org/apache/chemistry/opencmis/workbench/model/ClientModelEvent.html">ClientModelEvent</a> event);
+<a class="jxr_linenumber" name="26" href="#26">26</a>  }
+</pre>
+<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
+</html>
+

Added: chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/model/ObjectListener.html
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/model/ObjectListener.html?rev=1671614&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/model/ObjectListener.html (added)
+++ chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/model/ObjectListener.html Mon Apr  6 17:19:59 2015
@@ -0,0 +1,40 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
+<title>ObjectListener xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<div id="overview"><a href="../../../../../../../apidocs/org/apache/chemistry/opencmis/workbench/model/ObjectListener.html">View Javadoc</a></div><pre>
+
+<a class="jxr_linenumber" name="1" href="#1">1</a>   <em class="jxr_comment">/*</em>
+<a class="jxr_linenumber" name="2" href="#2">2</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a class="jxr_linenumber" name="3" href="#3">3</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a class="jxr_linenumber" name="4" href="#4">4</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a class="jxr_linenumber" name="5" href="#5">5</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a class="jxr_linenumber" name="6" href="#6">6</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a class="jxr_linenumber" name="7" href="#7">7</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a class="jxr_linenumber" name="8" href="#8">8</a>   <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a class="jxr_linenumber" name="9" href="#9">9</a>   <em class="jxr_comment"> *</em>
+<a class="jxr_linenumber" name="10" href="#10">10</a>  <em class="jxr_comment"> * <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
+<a class="jxr_linenumber" name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a class="jxr_linenumber" name="12" href="#12">12</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a class="jxr_linenumber" name="13" href="#13">13</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a class="jxr_linenumber" name="14" href="#14">14</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a class="jxr_linenumber" name="15" href="#15">15</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a class="jxr_linenumber" name="16" href="#16">16</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a class="jxr_linenumber" name="17" href="#17">17</a>  <em class="jxr_comment"> * under the License.</em>
+<a class="jxr_linenumber" name="18" href="#18">18</a>  <em class="jxr_comment"> */</em>
+<a class="jxr_linenumber" name="19" href="#19">19</a>  <strong class="jxr_keyword">package</strong> org.apache.chemistry.opencmis.workbench.model;
+<a class="jxr_linenumber" name="20" href="#20">20</a>  
+<a class="jxr_linenumber" name="21" href="#21">21</a>  <strong class="jxr_keyword">import</strong> java.util.EventListener;
+<a class="jxr_linenumber" name="22" href="#22">22</a>  
+<a class="jxr_linenumber" name="23" href="#23">23</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../org/apache/chemistry/opencmis/workbench/model/ObjectListener.html">ObjectListener</a> <strong class="jxr_keyword">extends</strong> EventListener {
+<a class="jxr_linenumber" name="24" href="#24">24</a>  
+<a class="jxr_linenumber" name="25" href="#25">25</a>      <strong class="jxr_keyword">void</strong> objectLoaded(<a href="../../../../../../org/apache/chemistry/opencmis/workbench/model/ClientModelEvent.html">ClientModelEvent</a> event);
+<a class="jxr_linenumber" name="26" href="#26">26</a>  }
+</pre>
+<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
+</html>
+

Added: chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/model/package-frame.html
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/model/package-frame.html?rev=1671614&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/model/package-frame.html (added)
+++ chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/model/package-frame.html Mon Apr  6 17:19:59 2015
@@ -0,0 +1,42 @@
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
+<html xml:lang="en" lang="en">
+	<head>
+		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
+		<title>OpenCMIS Workbench 0.13.0 Reference Package org.apache.chemistry.opencmis.workbench.model</title>
+		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
+	</head>
+	<body>
+
+		<h3>
+        	<a href="package-summary.html" target="classFrame">org.apache.chemistry.opencmis.workbench.model</a>
+      	</h3>
+
+      	<h3>Classes</h3>
+
+      	<ul>
+      		          	<li>
+            	<a href="ClientSession.html" target="classFrame">Authentication</a>
+          	</li>
+          	          	<li>
+            	<a href="ClientModel.html" target="classFrame">ClientModel</a>
+          	</li>
+          	          	<li>
+            	<a href="ClientModelEvent.html" target="classFrame">ClientModelEvent</a>
+          	</li>
+          	          	<li>
+            	<a href="ClientOperationContext.html" target="classFrame">ClientOperationContext</a>
+          	</li>
+          	          	<li>
+            	<a href="ClientSession.html" target="classFrame">ClientSession</a>
+          	</li>
+          	          	<li>
+            	<a href="FolderListener.html" target="classFrame">FolderListener</a>
+          	</li>
+          	          	<li>
+            	<a href="ObjectListener.html" target="classFrame">ObjectListener</a>
+          	</li>
+          	      	</ul>
+
+	</body>
+</html>
\ No newline at end of file

Added: chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/model/package-summary.html
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/model/package-summary.html?rev=1671614&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/model/package-summary.html (added)
+++ chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/model/package-summary.html Mon Apr  6 17:19:59 2015
@@ -0,0 +1,97 @@
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
+<html xml:lang="en" lang="en">
+	<head>
+		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
+		<title>OpenCMIS Workbench 0.13.0 Reference Package org.apache.chemistry.opencmis.workbench.model</title>
+		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
+	</head>
+	<body>
+		      	<div class="overview">
+        	<ul>
+          		<li>
+            		<a href="../../../../../../overview-summary.html">Overview</a>
+          		</li>
+          		<li class="selected">Package</li>
+        	</ul>
+      	</div>
+      	<div class="framenoframe">
+        	<ul>
+          		<li>
+            		<a href="../../../../../../index.html" target="_top">FRAMES</a>
+          		</li>
+          		<li>
+            		<a href="package-summary.html" target="_top">NO FRAMES</a>
+          		</li>
+        	</ul>
+      	</div>
+		
+		      	<h2>Package org.apache.chemistry.opencmis.workbench.model</h2>
+
+		<table class="summary">
+        	<thead>
+          		<tr>
+            		<th>Class Summary</th>
+          		</tr>
+        	</thead>
+        	<tbody>
+        		            	<tr>
+              		<td>
+                		<a href="ClientSession.html" target="classFrame">Authentication</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="ClientModel.html" target="classFrame">ClientModel</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="ClientModelEvent.html" target="classFrame">ClientModelEvent</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="ClientOperationContext.html" target="classFrame">ClientOperationContext</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="ClientSession.html" target="classFrame">ClientSession</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="FolderListener.html" target="classFrame">FolderListener</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="ObjectListener.html" target="classFrame">ObjectListener</a>
+              		</td>
+            	</tr>
+				        	</tbody>
+      	</table>
+		
+		      	<div class="overview">
+        	<ul>
+          		<li>
+            		<a href="../../../../../../overview-summary.html">Overview</a>
+          		</li>
+          		<li class="selected">Package</li>
+        	</ul>
+      	</div>
+      	<div class="framenoframe">
+        	<ul>
+          		<li>
+            		<a href="../../../../../../index.html" target="_top">FRAMES</a>
+          		</li>
+          		<li>
+            		<a href="package-summary.html" target="_top">NO FRAMES</a>
+          		</li>
+        	</ul>
+      	</div>
+				<hr />
+		Copyright &#169; 2009-2015 The Apache Software Foundation. All Rights Reserved.
+	</body>
+</html>
\ No newline at end of file

Added: chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/package-frame.html
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/package-frame.html?rev=1671614&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/package-frame.html (added)
+++ chemistry/site/trunk/content/java/0.13.0/maven/chemistry-opencmis-workbench/chemistry-opencmis-workbench/xref/org/apache/chemistry/opencmis/workbench/package-frame.html Mon Apr  6 17:19:59 2015
@@ -0,0 +1,219 @@
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
+<html xml:lang="en" lang="en">
+	<head>
+		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
+		<title>OpenCMIS Workbench 0.13.0 Reference Package org.apache.chemistry.opencmis.workbench</title>
+		<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
+	</head>
+	<body>
+
+		<h3>
+        	<a href="package-summary.html" target="classFrame">org.apache.chemistry.opencmis.workbench</a>
+      	</h3>
+
+      	<h3>Classes</h3>
+
+      	<ul>
+      		          	<li>
+            	<a href="PropertyEditorFrame.html" target="classFrame">AbstractFormattedPropertyInputField</a>
+          	</li>
+          	          	<li>
+            	<a href="AbstractLoginTab.html" target="classFrame">AbstractLoginTab</a>
+          	</li>
+          	          	<li>
+            	<a href="AbstractSpringLoginTab.html" target="classFrame">AbstractSpringLoginTab</a>
+          	</li>
+          	          	<li>
+            	<a href="AclEditorFrame.html" target="classFrame">AceInputPanel</a>
+          	</li>
+          	          	<li>
+            	<a href="AclEditorFrame.html" target="classFrame">AceList</a>
+          	</li>
+          	          	<li>
+            	<a href="AclEditorFrame.html" target="classFrame">AclEditorFrame</a>
+          	</li>
+          	          	<li>
+            	<a href="BasicLoginTab.html" target="classFrame">BasicLoginTab</a>
+          	</li>
+          	          	<li>
+            	<a href="PropertyEditorFrame.html" target="classFrame">BooleanPropertyInputField</a>
+          	</li>
+          	          	<li>
+            	<a href="ChangeLogFrame.html" target="classFrame">ChangeLogFrame</a>
+          	</li>
+          	          	<li>
+            	<a href="ChangeLogFrame.html" target="classFrame">ChangeLogTable</a>
+          	</li>
+          	          	<li>
+            	<a href="ChangeLogFrame.html" target="classFrame">ChangeLogTableModel</a>
+          	</li>
+          	          	<li>
+            	<a href="ClientFrame.html" target="classFrame">ClientFrame</a>
+          	</li>
+          	          	<li>
+            	<a href="ClientHelper.html" target="classFrame">ClientHelper</a>
+          	</li>
+          	          	<li>
+            	<a href="ClientWriterAppender.html" target="classFrame">ClientWriterAppender</a>
+          	</li>
+          	          	<li>
+            	<a href="ConnectionErrorDialog.html" target="classFrame">ConnectionErrorDialog</a>
+          	</li>
+          	          	<li>
+            	<a href="CreateDocumentDialog.html" target="classFrame">CreateDocumentDialog</a>
+          	</li>
+          	          	<li>
+            	<a href="CreateFolderDialog.html" target="classFrame">CreateFolderDialog</a>
+          	</li>
+          	          	<li>
+            	<a href="CreateItemDialog.html" target="classFrame">CreateItemDialog</a>
+          	</li>
+          	          	<li>
+            	<a href="CreateRelationshipDialog.html" target="classFrame">CreateRelationshipDialog</a>
+          	</li>
+          	          	<li>
+            	<a href="PropertyEditorFrame.html" target="classFrame">DateTimePropertyInputField</a>
+          	</li>
+          	          	<li>
+            	<a href="PropertyEditorFrame.html" target="classFrame">DecimalPropertyInputField</a>
+          	</li>
+          	          	<li>
+            	<a href="TckDialog.html" target="classFrame">DialogProgressMonitor</a>
+          	</li>
+          	          	<li>
+            	<a href="ExpertLoginTab.html" target="classFrame">ExpertLoginTab</a>
+          	</li>
+          	          	<li>
+            	<a href="RepositoryInfoFrame.html" target="classFrame">ExtensionNode</a>
+          	</li>
+          	          	<li>
+            	<a href="ClientHelper.html" target="classFrame">FileEntry</a>
+          	</li>
+          	          	<li>
+            	<a href="FolderPanel.html" target="classFrame">FolderPanel</a>
+          	</li>
+          	          	<li>
+            	<a href="FolderTable.html" target="classFrame">FolderTable</a>
+          	</li>
+          	          	<li>
+            	<a href="FolderTable.html" target="classFrame">FolderTableModel</a>
+          	</li>
+          	          	<li>
+            	<a href="FolderTable.html" target="classFrame">FolderTransferHandler</a>
+          	</li>
+          	          	<li>
+            	<a href="InfoDialog.html" target="classFrame">InfoDialog</a>
+          	</li>
+          	          	<li>
+            	<a href="PropertyEditorFrame.html" target="classFrame">IntegerPropertyInputField</a>
+          	</li>
+          	          	<li>
+            	<a href="LogFrame.html" target="classFrame">LogFrame</a>
+          	</li>
+          	          	<li>
+            	<a href="LoggingInputStream.html" target="classFrame">LoggingInputStream</a>
+          	</li>
+          	          	<li>
+            	<a href="LoginDialog.html" target="classFrame">LoginDialog</a>
+          	</li>
+          	          	<li>
+            	<a href="PropertyEditorFrame.html" target="classFrame">MultiValuePropertyInputField</a>
+          	</li>
+          	          	<li>
+            	<a href="PropertyEditorFrame.html" target="classFrame">MultivalueManager</a>
+          	</li>
+          	          	<li>
+            	<a href="TypeSplitPane.html" target="classFrame">PropertyDefinitionTable</a>
+          	</li>
+          	          	<li>
+            	<a href="TypeSplitPane.html" target="classFrame">PropertyDefinitionTableModel</a>
+          	</li>
+          	          	<li>
+            	<a href="PropertyEditorFrame.html" target="classFrame">PropertyEditorFrame</a>
+          	</li>
+          	          	<li>
+            	<a href="PropertyEditorFrame.html" target="classFrame">PropertyInputPanel</a>
+          	</li>
+          	          	<li>
+            	<a href="PropertyEditorFrame.html" target="classFrame">PropertyValue</a>
+          	</li>
+          	          	<li>
+            	<a href="ProxyDetector.html" target="classFrame">ProxyDetector</a>
+          	</li>
+          	          	<li>
+            	<a href="ProxyDetector.html" target="classFrame">ProxySettings</a>
+          	</li>
+          	          	<li>
+            	<a href="QueryFrame.html" target="classFrame">QueryFrame</a>
+          	</li>
+          	          	<li>
+            	<a href="RandomInputStream.html" target="classFrame">RandomInputStream</a>
+          	</li>
+          	          	<li>
+            	<a href="RepositoryInfoFrame.html" target="classFrame">RepositoryInfoFrame</a>
+          	</li>
+          	          	<li>
+            	<a href="RepositoryInfoFrame.html" target="classFrame">RepositoryInfoPanel</a>
+          	</li>
+          	          	<li>
+            	<a href="LoginDialog.html" target="classFrame">RepositoryRenderer</a>
+          	</li>
+          	          	<li>
+            	<a href="QueryFrame.html" target="classFrame">ResultTable</a>
+          	</li>
+          	          	<li>
+            	<a href="QueryFrame.html" target="classFrame">ResultTableModel</a>
+          	</li>
+          	          	<li>
+            	<a href="PropertyEditorFrame.html" target="classFrame">StatusFlag</a>
+          	</li>
+          	          	<li>
+            	<a href="PropertyEditorFrame.html" target="classFrame">StringPropertyInputField</a>
+          	</li>
+          	          	<li>
+            	<a href="TckDialog.html" target="classFrame">TckDialog</a>
+          	</li>
+          	          	<li>
+            	<a href="TckDialog.html" target="classFrame">TckDialogRunner</a>
+          	</li>
+          	          	<li>
+            	<a href="TckDialog.html" target="classFrame">TckRunDialog</a>
+          	</li>
+          	          	<li>
+            	<a href="TckDialog.html" target="classFrame">TckSelectDialog</a>
+          	</li>
+          	          	<li>
+            	<a href="TckDialog.html" target="classFrame">TckTask</a>
+          	</li>
+          	          	<li>
+            	<a href="TckDialog.html" target="classFrame">TestTreeNode</a>
+          	</li>
+          	          	<li>
+            	<a href="TckDialog.html" target="classFrame">TestTreeNodeEditor</a>
+          	</li>
+          	          	<li>
+            	<a href="TckDialog.html" target="classFrame">TestTreeNodeRender</a>
+          	</li>
+          	          	<li>
+            	<a href="TypeSplitPane.html" target="classFrame">TypeInfoPanel</a>
+          	</li>
+          	          	<li>
+            	<a href="TypesFrame.html" target="classFrame">TypeNode</a>
+          	</li>
+          	          	<li>
+            	<a href="TypeSplitPane.html" target="classFrame">TypeSplitPane</a>
+          	</li>
+          	          	<li>
+            	<a href="TypesFrame.html" target="classFrame">TypesFrame</a>
+          	</li>
+          	          	<li>
+            	<a href="PropertyEditorFrame.html" target="classFrame">UpdateStatus</a>
+          	</li>
+          	          	<li>
+            	<a href="Workbench.html" target="classFrame">Workbench</a>
+          	</li>
+          	      	</ul>
+
+	</body>
+</html>
\ No newline at end of file