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 2012/04/03 06:25:07 UTC

svn commit: r1308678 [5/15] - in /chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons: ./ chemistry-opencmis-commons-api/ chemistry-opencmis-commons-api/css/ chemistry-opencmis-commons-api/images/ chemistry-opencmis-commons-api/ima...

Added: chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/CmisExtensionElement.html
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/CmisExtensionElement.html?rev=1308678&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/CmisExtensionElement.html (added)
+++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/CmisExtensionElement.html Tue Apr  3 04:25:02 2012
@@ -0,0 +1,75 @@
+<!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=ISO-8859-1" />
+<title>CmisExtensionElement xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<pre>
+
+<a name="1" href="#1">1</a>   <em class="jxr_comment">/*</em>
+<a name="2" href="#2">2</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a name="3" href="#3">3</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a name="4" href="#4">4</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a name="5" href="#5">5</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a name="6" href="#6">6</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a name="7" href="#7">7</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a name="8" href="#8">8</a>   <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a name="9" href="#9">9</a>   <em class="jxr_comment"> *</em>
+<a 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 name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a name="12" href="#12">12</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a name="13" href="#13">13</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a name="14" href="#14">14</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a name="15" href="#15">15</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a name="16" href="#16">16</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a name="17" href="#17">17</a>  <em class="jxr_comment"> * under the License.</em>
+<a name="18" href="#18">18</a>  <em class="jxr_comment"> */</em>
+<a name="19" href="#19">19</a>  <strong class="jxr_keyword">package</strong> org.apache.chemistry.opencmis.commons.data;
+<a name="20" href="#20">20</a>  
+<a name="21" href="#21">21</a>  <strong class="jxr_keyword">import</strong> java.io.Serializable;
+<a name="22" href="#22">22</a>  <strong class="jxr_keyword">import</strong> java.util.List;
+<a name="23" href="#23">23</a>  <strong class="jxr_keyword">import</strong> java.util.Map;
+<a name="24" href="#24">24</a>  
+<a name="25" href="#25">25</a>  <em class="jxr_javadoccomment">/**</em>
+<a name="26" href="#26">26</a>  <em class="jxr_javadoccomment"> * This class represents one node in the extension tree.</em>
+<a name="27" href="#27">27</a>  <em class="jxr_javadoccomment"> */</em>
+<a name="28" href="#28">28</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/CmisExtensionElement.html">CmisExtensionElement</a> <strong class="jxr_keyword">extends</strong> Serializable {
+<a name="29" href="#29">29</a>  
+<a name="30" href="#30">30</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="31" href="#31">31</a>  <em class="jxr_javadoccomment">     * Returns the name of the extension. The name is never &lt;code&gt;null&lt;/code&gt;.</em>
+<a name="32" href="#32">32</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="33" href="#33">33</a>      String getName();
+<a name="34" href="#34">34</a>  
+<a name="35" href="#35">35</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="36" href="#36">36</a>  <em class="jxr_javadoccomment">     * Returns the namespace of the extension. If the binding doesn't support</em>
+<a name="37" href="#37">37</a>  <em class="jxr_javadoccomment">     * namespaces this method will return &lt;code&gt;null&lt;/code&gt;.</em>
+<a name="38" href="#38">38</a>  <em class="jxr_javadoccomment">     * </em>
+<a name="39" href="#39">39</a>  <em class="jxr_javadoccomment">     * Don't rely on namespaces because they are binding specific!</em>
+<a name="40" href="#40">40</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="41" href="#41">41</a>      String getNamespace();
+<a name="42" href="#42">42</a>  
+<a name="43" href="#43">43</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="44" href="#44">44</a>  <em class="jxr_javadoccomment">     * Returns the value of the extension as a String. If this extension has</em>
+<a name="45" href="#45">45</a>  <em class="jxr_javadoccomment">     * children than this method returns &lt;code&gt;null&lt;/code&gt;.</em>
+<a name="46" href="#46">46</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="47" href="#47">47</a>      String getValue();
+<a name="48" href="#48">48</a>  
+<a name="49" href="#49">49</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="50" href="#50">50</a>  <em class="jxr_javadoccomment">     * Returns the attributes of the extension. If the binding doesn't support</em>
+<a name="51" href="#51">51</a>  <em class="jxr_javadoccomment">     * attributes this method will return &lt;code&gt;null&lt;/code&gt;.</em>
+<a name="52" href="#52">52</a>  <em class="jxr_javadoccomment">     * </em>
+<a name="53" href="#53">53</a>  <em class="jxr_javadoccomment">     * Try to avoid attributes because they are binding specific!</em>
+<a name="54" href="#54">54</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="55" href="#55">55</a>      Map&lt;String, String&gt; getAttributes();
+<a name="56" href="#56">56</a>  
+<a name="57" href="#57">57</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="58" href="#58">58</a>  <em class="jxr_javadoccomment">     * Returns the children of this extension.</em>
+<a name="59" href="#59">59</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="60" href="#60">60</a>      List&lt;CmisExtensionElement&gt; getChildren();
+<a name="61" href="#61">61</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.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ContentStream.html
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ContentStream.html?rev=1308678&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ContentStream.html (added)
+++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ContentStream.html Tue Apr  3 04:25:02 2012
@@ -0,0 +1,81 @@
+<!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=ISO-8859-1" />
+<title>ContentStream xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<pre>
+
+<a name="1" href="#1">1</a>   <em class="jxr_comment">/*</em>
+<a name="2" href="#2">2</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a name="3" href="#3">3</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a name="4" href="#4">4</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a name="5" href="#5">5</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a name="6" href="#6">6</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a name="7" href="#7">7</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a name="8" href="#8">8</a>   <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a name="9" href="#9">9</a>   <em class="jxr_comment"> *</em>
+<a 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 name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a name="12" href="#12">12</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a name="13" href="#13">13</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a name="14" href="#14">14</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a name="15" href="#15">15</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a name="16" href="#16">16</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a name="17" href="#17">17</a>  <em class="jxr_comment"> * under the License.</em>
+<a name="18" href="#18">18</a>  <em class="jxr_comment"> */</em>
+<a name="19" href="#19">19</a>  <strong class="jxr_keyword">package</strong> org.apache.chemistry.opencmis.commons.data;
+<a name="20" href="#20">20</a>  
+<a name="21" href="#21">21</a>  <strong class="jxr_keyword">import</strong> java.io.InputStream;
+<a name="22" href="#22">22</a>  <strong class="jxr_keyword">import</strong> java.math.BigInteger;
+<a name="23" href="#23">23</a>  
+<a name="24" href="#24">24</a>  <em class="jxr_javadoccomment">/**</em>
+<a name="25" href="#25">25</a>  <em class="jxr_javadoccomment"> * Content stream.</em>
+<a name="26" href="#26">26</a>  <em class="jxr_javadoccomment"> */</em>
+<a name="27" href="#27">27</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ContentStream.html">ContentStream</a> <strong class="jxr_keyword">extends</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ExtensionsData.html">ExtensionsData</a> {
+<a name="28" href="#28">28</a>  
+<a name="29" href="#29">29</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="30" href="#30">30</a>  <em class="jxr_javadoccomment">     * Returns the length of stream.</em>
+<a name="31" href="#31">31</a>  <em class="jxr_javadoccomment">     * </em>
+<a name="32" href="#32">32</a>  <em class="jxr_javadoccomment">     * @return the length of the stream in bytes or &lt;code&gt;-1&lt;/code&gt; if the</em>
+<a name="33" href="#33">33</a>  <em class="jxr_javadoccomment">     *         length is unknown</em>
+<a name="34" href="#34">34</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="35" href="#35">35</a>      <strong class="jxr_keyword">long</strong> getLength();
+<a name="36" href="#36">36</a>  
+<a name="37" href="#37">37</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="38" href="#38">38</a>  <em class="jxr_javadoccomment">     * Returns the length of stream.</em>
+<a name="39" href="#39">39</a>  <em class="jxr_javadoccomment">     * </em>
+<a name="40" href="#40">40</a>  <em class="jxr_javadoccomment">     * @return the length of the stream in bytes or &lt;code&gt;null&lt;/code&gt; if the</em>
+<a name="41" href="#41">41</a>  <em class="jxr_javadoccomment">     *         length is unknown</em>
+<a name="42" href="#42">42</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="43" href="#43">43</a>      BigInteger getBigLength();
+<a name="44" href="#44">44</a>  
+<a name="45" href="#45">45</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="46" href="#46">46</a>  <em class="jxr_javadoccomment">     * Returns the MIME type of the stream.</em>
+<a name="47" href="#47">47</a>  <em class="jxr_javadoccomment">     * </em>
+<a name="48" href="#48">48</a>  <em class="jxr_javadoccomment">     * @return the MIME type of the stream or &lt;code&gt;null&lt;/code&gt; if the MIME type</em>
+<a name="49" href="#49">49</a>  <em class="jxr_javadoccomment">     *         is unknown</em>
+<a name="50" href="#50">50</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="51" href="#51">51</a>      String getMimeType();
+<a name="52" href="#52">52</a>  
+<a name="53" href="#53">53</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="54" href="#54">54</a>  <em class="jxr_javadoccomment">     * Returns the file name of the stream.</em>
+<a name="55" href="#55">55</a>  <em class="jxr_javadoccomment">     * </em>
+<a name="56" href="#56">56</a>  <em class="jxr_javadoccomment">     * @return the file name of the stream or &lt;code&gt;null&lt;/code&gt; if the file name</em>
+<a name="57" href="#57">57</a>  <em class="jxr_javadoccomment">     *         is unknown</em>
+<a name="58" href="#58">58</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="59" href="#59">59</a>      String getFileName();
+<a name="60" href="#60">60</a>  
+<a name="61" href="#61">61</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="62" href="#62">62</a>  <em class="jxr_javadoccomment">     * Returns the stream.</em>
+<a name="63" href="#63">63</a>  <em class="jxr_javadoccomment">     * </em>
+<a name="64" href="#64">64</a>  <em class="jxr_javadoccomment">     * It is important to close this stream properly!</em>
+<a name="65" href="#65">65</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="66" href="#66">66</a>      InputStream getStream();
+<a name="67" href="#67">67</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.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ExtensionsData.html
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ExtensionsData.html?rev=1308678&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ExtensionsData.html (added)
+++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ExtensionsData.html Tue Apr  3 04:25:02 2012
@@ -0,0 +1,45 @@
+<!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=ISO-8859-1" />
+<title>ExtensionsData xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<pre>
+
+<a name="1" href="#1">1</a>   <em class="jxr_comment">/*</em>
+<a name="2" href="#2">2</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a name="3" href="#3">3</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a name="4" href="#4">4</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a name="5" href="#5">5</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a name="6" href="#6">6</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a name="7" href="#7">7</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a name="8" href="#8">8</a>   <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a name="9" href="#9">9</a>   <em class="jxr_comment"> *</em>
+<a 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 name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a name="12" href="#12">12</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a name="13" href="#13">13</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a name="14" href="#14">14</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a name="15" href="#15">15</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a name="16" href="#16">16</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a name="17" href="#17">17</a>  <em class="jxr_comment"> * under the License.</em>
+<a name="18" href="#18">18</a>  <em class="jxr_comment"> */</em>
+<a name="19" href="#19">19</a>  <strong class="jxr_keyword">package</strong> org.apache.chemistry.opencmis.commons.data;
+<a name="20" href="#20">20</a>  
+<a name="21" href="#21">21</a>  <strong class="jxr_keyword">import</strong> java.util.List;
+<a name="22" href="#22">22</a>  
+<a name="23" href="#23">23</a>  <em class="jxr_javadoccomment">/**</em>
+<a name="24" href="#24">24</a>  <em class="jxr_javadoccomment"> * Holds extension data either set by the CMIS repository or the client.</em>
+<a name="25" href="#25">25</a>  <em class="jxr_javadoccomment"> */</em>
+<a name="26" href="#26">26</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ExtensionsData.html">ExtensionsData</a> {
+<a name="27" href="#27">27</a>  
+<a name="28" href="#28">28</a>      List&lt;CmisExtensionElement&gt; getExtensions();
+<a name="29" href="#29">29</a>  
+<a name="30" href="#30">30</a>      <strong class="jxr_keyword">void</strong> setExtensions(List&lt;CmisExtensionElement&gt; extensions);
+<a name="31" href="#31">31</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.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/FailedToDeleteData.html
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/FailedToDeleteData.html?rev=1308678&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/FailedToDeleteData.html (added)
+++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/FailedToDeleteData.html Tue Apr  3 04:25:02 2012
@@ -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=ISO-8859-1" />
+<title>FailedToDeleteData xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<pre>
+
+<a name="1" href="#1">1</a>   <em class="jxr_comment">/*</em>
+<a name="2" href="#2">2</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a name="3" href="#3">3</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a name="4" href="#4">4</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a name="5" href="#5">5</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a name="6" href="#6">6</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a name="7" href="#7">7</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a name="8" href="#8">8</a>   <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a name="9" href="#9">9</a>   <em class="jxr_comment"> *</em>
+<a 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 name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a name="12" href="#12">12</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a name="13" href="#13">13</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a name="14" href="#14">14</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a name="15" href="#15">15</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a name="16" href="#16">16</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a name="17" href="#17">17</a>  <em class="jxr_comment"> * under the License.</em>
+<a name="18" href="#18">18</a>  <em class="jxr_comment"> */</em>
+<a name="19" href="#19">19</a>  <strong class="jxr_keyword">package</strong> org.apache.chemistry.opencmis.commons.data;
+<a name="20" href="#20">20</a>  
+<a name="21" href="#21">21</a>  <strong class="jxr_keyword">import</strong> java.util.List;
+<a name="22" href="#22">22</a>  
+<a name="23" href="#23">23</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/FailedToDeleteData.html">FailedToDeleteData</a> <strong class="jxr_keyword">extends</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ExtensionsData.html">ExtensionsData</a> {
+<a name="24" href="#24">24</a>  
+<a name="25" href="#25">25</a>      List&lt;String&gt; getIds();
+<a 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.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectData.html
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectData.html?rev=1308678&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectData.html (added)
+++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectData.html Tue Apr  3 04:25:02 2012
@@ -0,0 +1,126 @@
+<!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=ISO-8859-1" />
+<title>ObjectData xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<pre>
+
+<a name="1" href="#1">1</a>   <em class="jxr_comment">/*</em>
+<a name="2" href="#2">2</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a name="3" href="#3">3</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a name="4" href="#4">4</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a name="5" href="#5">5</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a name="6" href="#6">6</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a name="7" href="#7">7</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a name="8" href="#8">8</a>   <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a name="9" href="#9">9</a>   <em class="jxr_comment"> *</em>
+<a 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 name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a name="12" href="#12">12</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a name="13" href="#13">13</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a name="14" href="#14">14</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a name="15" href="#15">15</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a name="16" href="#16">16</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a name="17" href="#17">17</a>  <em class="jxr_comment"> * under the License.</em>
+<a name="18" href="#18">18</a>  <em class="jxr_comment"> */</em>
+<a name="19" href="#19">19</a>  <strong class="jxr_keyword">package</strong> org.apache.chemistry.opencmis.commons.data;
+<a name="20" href="#20">20</a>  
+<a name="21" href="#21">21</a>  <strong class="jxr_keyword">import</strong> java.util.List;
+<a name="22" href="#22">22</a>  
+<a name="23" href="#23">23</a>  <strong class="jxr_keyword">import</strong> org.apache.chemistry.opencmis.commons.enums.BaseTypeId;
+<a name="24" href="#24">24</a>  
+<a name="25" href="#25">25</a>  <em class="jxr_javadoccomment">/**</em>
+<a name="26" href="#26">26</a>  <em class="jxr_javadoccomment"> * Base object for CMIS documents, folders, relationships and policies.</em>
+<a name="27" href="#27">27</a>  <em class="jxr_javadoccomment"> * </em>
+<a name="28" href="#28">28</a>  <em class="jxr_javadoccomment"> * @author &lt;a href="<a href="mailto:fmueller@opentext.com" target="alexandria_uri">mailto:fmueller@opentext.com</a>"&gt;Florian M&amp;uuml;ller&lt;/a&gt;</em>
+<a name="29" href="#29">29</a>  <em class="jxr_javadoccomment"> * </em>
+<a name="30" href="#30">30</a>  <em class="jxr_javadoccomment"> */</em>
+<a name="31" href="#31">31</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ObjectData.html">ObjectData</a> <strong class="jxr_keyword">extends</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ExtensionsData.html">ExtensionsData</a> {
+<a name="32" href="#32">32</a>  
+<a name="33" href="#33">33</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="34" href="#34">34</a>  <em class="jxr_javadoccomment">     * Returns the object id.</em>
+<a name="35" href="#35">35</a>  <em class="jxr_javadoccomment">     * </em>
+<a name="36" href="#36">36</a>  <em class="jxr_javadoccomment">     * @return the object id or &lt;code&gt;null&lt;/code&gt; if the object id is unknown</em>
+<a name="37" href="#37">37</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="38" href="#38">38</a>      String getId();
+<a name="39" href="#39">39</a>  
+<a name="40" href="#40">40</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="41" href="#41">41</a>  <em class="jxr_javadoccomment">     * Returns the base object type.</em>
+<a name="42" href="#42">42</a>  <em class="jxr_javadoccomment">     * </em>
+<a name="43" href="#43">43</a>  <em class="jxr_javadoccomment">     * @return the base object type or &lt;code&gt;null&lt;/code&gt; if the base object type</em>
+<a name="44" href="#44">44</a>  <em class="jxr_javadoccomment">     *         is unknown</em>
+<a name="45" href="#45">45</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="46" href="#46">46</a>      <a href="../../../../../../org/apache/chemistry/opencmis/commons/enums/BaseTypeId.html">BaseTypeId</a> getBaseTypeId();
+<a name="47" href="#47">47</a>  
+<a name="48" href="#48">48</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="49" href="#49">49</a>  <em class="jxr_javadoccomment">     * Returns the object properties. The properties can be incomplete if a</em>
+<a name="50" href="#50">50</a>  <em class="jxr_javadoccomment">     * property filter was used.</em>
+<a name="51" href="#51">51</a>  <em class="jxr_javadoccomment">     * </em>
+<a name="52" href="#52">52</a>  <em class="jxr_javadoccomment">     * @return the properties or &lt;code&gt;null&lt;/code&gt; if no properties are known</em>
+<a name="53" href="#53">53</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="54" href="#54">54</a>      <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/Properties.html">Properties</a> getProperties();
+<a name="55" href="#55">55</a>  
+<a name="56" href="#56">56</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="57" href="#57">57</a>  <em class="jxr_javadoccomment">     * Returns the allowable actions.</em>
+<a name="58" href="#58">58</a>  <em class="jxr_javadoccomment">     * </em>
+<a name="59" href="#59">59</a>  <em class="jxr_javadoccomment">     * @return the allowable actions or &lt;code&gt;null&lt;/code&gt; if the allowable</em>
+<a name="60" href="#60">60</a>  <em class="jxr_javadoccomment">     *         actions are unknown</em>
+<a name="61" href="#61">61</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="62" href="#62">62</a>      <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/AllowableActions.html">AllowableActions</a> getAllowableActions();
+<a name="63" href="#63">63</a>  
+<a name="64" href="#64">64</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="65" href="#65">65</a>  <em class="jxr_javadoccomment">     * Returns the relationships from and to this object.</em>
+<a name="66" href="#66">66</a>  <em class="jxr_javadoccomment">     * </em>
+<a name="67" href="#67">67</a>  <em class="jxr_javadoccomment">     * @return the list of relationship objects or &lt;code&gt;null&lt;/code&gt; if no</em>
+<a name="68" href="#68">68</a>  <em class="jxr_javadoccomment">     *         relationships exist or the relationships are unknown</em>
+<a name="69" href="#69">69</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="70" href="#70">70</a>      List&lt;ObjectData&gt; getRelationships();
+<a name="71" href="#71">71</a>  
+<a name="72" href="#72">72</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="73" href="#73">73</a>  <em class="jxr_javadoccomment">     * Returns the change event infos.</em>
+<a name="74" href="#74">74</a>  <em class="jxr_javadoccomment">     * </em>
+<a name="75" href="#75">75</a>  <em class="jxr_javadoccomment">     * @return the change event infos or &lt;code&gt;null&lt;/code&gt; if the infos are</em>
+<a name="76" href="#76">76</a>  <em class="jxr_javadoccomment">     *         unknown</em>
+<a name="77" href="#77">77</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="78" href="#78">78</a>      <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ChangeEventInfo.html">ChangeEventInfo</a> getChangeEventInfo();
+<a name="79" href="#79">79</a>  
+<a name="80" href="#80">80</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="81" href="#81">81</a>  <em class="jxr_javadoccomment">     * Returns the access control list.</em>
+<a name="82" href="#82">82</a>  <em class="jxr_javadoccomment">     * </em>
+<a name="83" href="#83">83</a>  <em class="jxr_javadoccomment">     * @return the access control list or &lt;code&gt;null&lt;/code&gt; if the access</em>
+<a name="84" href="#84">84</a>  <em class="jxr_javadoccomment">     *         control list is unknown</em>
+<a name="85" href="#85">85</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="86" href="#86">86</a>      <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/Acl.html">Acl</a> getAcl();
+<a name="87" href="#87">87</a>  
+<a name="88" href="#88">88</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="89" href="#89">89</a>  <em class="jxr_javadoccomment">     * Returns if the access control list reflects the exact permission set in</em>
+<a name="90" href="#90">90</a>  <em class="jxr_javadoccomment">     * the repository.</em>
+<a name="91" href="#91">91</a>  <em class="jxr_javadoccomment">     * </em>
+<a name="92" href="#92">92</a>  <em class="jxr_javadoccomment">     * @return &lt;code&gt;true&lt;code&gt; - exact; &lt;code&gt;false&lt;/code&gt; - not exact, other</em>
+<a name="93" href="#93">93</a>  <em class="jxr_javadoccomment">     *         permission constraints exist; &lt;code&gt;null&lt;/code&gt; - unknown</em>
+<a name="94" href="#94">94</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="95" href="#95">95</a>      Boolean isExactAcl();
+<a name="96" href="#96">96</a>  
+<a name="97" href="#97">97</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="98" href="#98">98</a>  <em class="jxr_javadoccomment">     * Returns the ids of the applied policies.</em>
+<a name="99" href="#99">99</a>  <em class="jxr_javadoccomment">     * </em>
+<a name="100" href="#100">100</a> <em class="jxr_javadoccomment">     * @return the policy ids or &lt;code&gt;null&lt;/code&gt; if no policies are applied or</em>
+<a name="101" href="#101">101</a> <em class="jxr_javadoccomment">     *         the ids are unknown</em>
+<a name="102" href="#102">102</a> <em class="jxr_javadoccomment">     */</em>
+<a name="103" href="#103">103</a>     <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/PolicyIdList.html">PolicyIdList</a> getPolicyIds();
+<a name="104" href="#104">104</a> 
+<a name="105" href="#105">105</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="106" href="#106">106</a> <em class="jxr_javadoccomment">     * Returns the renditions of this object.</em>
+<a name="107" href="#107">107</a> <em class="jxr_javadoccomment">     * </em>
+<a name="108" href="#108">108</a> <em class="jxr_javadoccomment">     * @return the list of renditions (might be empty) or &lt;code&gt;null&lt;/code&gt; if</em>
+<a name="109" href="#109">109</a> <em class="jxr_javadoccomment">     *         no renditions exist or the renditions are unknown</em>
+<a name="110" href="#110">110</a> <em class="jxr_javadoccomment">     */</em>
+<a name="111" href="#111">111</a>     List&lt;RenditionData&gt; getRenditions();
+<a name="112" href="#112">112</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.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectInFolderContainer.html
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectInFolderContainer.html?rev=1308678&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectInFolderContainer.html (added)
+++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectInFolderContainer.html Tue Apr  3 04:25:02 2012
@@ -0,0 +1,42 @@
+<!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=ISO-8859-1" />
+<title>ObjectInFolderContainer xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<pre>
+
+<a name="1" href="#1">1</a>   <em class="jxr_comment">/*</em>
+<a name="2" href="#2">2</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a name="3" href="#3">3</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a name="4" href="#4">4</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a name="5" href="#5">5</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a name="6" href="#6">6</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a name="7" href="#7">7</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a name="8" href="#8">8</a>   <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a name="9" href="#9">9</a>   <em class="jxr_comment"> *</em>
+<a 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 name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a name="12" href="#12">12</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a name="13" href="#13">13</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a name="14" href="#14">14</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a name="15" href="#15">15</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a name="16" href="#16">16</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a name="17" href="#17">17</a>  <em class="jxr_comment"> * under the License.</em>
+<a name="18" href="#18">18</a>  <em class="jxr_comment"> */</em>
+<a name="19" href="#19">19</a>  <strong class="jxr_keyword">package</strong> org.apache.chemistry.opencmis.commons.data;
+<a name="20" href="#20">20</a>  
+<a name="21" href="#21">21</a>  <strong class="jxr_keyword">import</strong> java.util.List;
+<a name="22" href="#22">22</a>  
+<a name="23" href="#23">23</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ObjectInFolderContainer.html">ObjectInFolderContainer</a> <strong class="jxr_keyword">extends</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ExtensionsData.html">ExtensionsData</a> {
+<a name="24" href="#24">24</a>  
+<a name="25" href="#25">25</a>      <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ObjectInFolderData.html">ObjectInFolderData</a> getObject();
+<a name="26" href="#26">26</a>  
+<a name="27" href="#27">27</a>      List&lt;ObjectInFolderContainer&gt; getChildren();
+<a name="28" href="#28">28</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.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectInFolderData.html
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectInFolderData.html?rev=1308678&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectInFolderData.html (added)
+++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectInFolderData.html Tue Apr  3 04:25:02 2012
@@ -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=ISO-8859-1" />
+<title>ObjectInFolderData xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<pre>
+
+<a name="1" href="#1">1</a>   <em class="jxr_comment">/*</em>
+<a name="2" href="#2">2</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a name="3" href="#3">3</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a name="4" href="#4">4</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a name="5" href="#5">5</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a name="6" href="#6">6</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a name="7" href="#7">7</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a name="8" href="#8">8</a>   <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a name="9" href="#9">9</a>   <em class="jxr_comment"> *</em>
+<a 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 name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a name="12" href="#12">12</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a name="13" href="#13">13</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a name="14" href="#14">14</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a name="15" href="#15">15</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a name="16" href="#16">16</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a name="17" href="#17">17</a>  <em class="jxr_comment"> * under the License.</em>
+<a name="18" href="#18">18</a>  <em class="jxr_comment"> */</em>
+<a name="19" href="#19">19</a>  <strong class="jxr_keyword">package</strong> org.apache.chemistry.opencmis.commons.data;
+<a name="20" href="#20">20</a>  
+<a name="21" href="#21">21</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ObjectInFolderData.html">ObjectInFolderData</a> <strong class="jxr_keyword">extends</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ExtensionsData.html">ExtensionsData</a> {
+<a name="22" href="#22">22</a>  
+<a name="23" href="#23">23</a>      <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ObjectData.html">ObjectData</a> getObject();
+<a name="24" href="#24">24</a>  
+<a name="25" href="#25">25</a>      String getPathSegment();
+<a 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.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectInFolderList.html
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectInFolderList.html?rev=1308678&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectInFolderList.html (added)
+++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectInFolderList.html Tue Apr  3 04:25:02 2012
@@ -0,0 +1,45 @@
+<!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=ISO-8859-1" />
+<title>ObjectInFolderList xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<pre>
+
+<a name="1" href="#1">1</a>   <em class="jxr_comment">/*</em>
+<a name="2" href="#2">2</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a name="3" href="#3">3</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a name="4" href="#4">4</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a name="5" href="#5">5</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a name="6" href="#6">6</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a name="7" href="#7">7</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a name="8" href="#8">8</a>   <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a name="9" href="#9">9</a>   <em class="jxr_comment"> *</em>
+<a 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 name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a name="12" href="#12">12</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a name="13" href="#13">13</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a name="14" href="#14">14</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a name="15" href="#15">15</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a name="16" href="#16">16</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a name="17" href="#17">17</a>  <em class="jxr_comment"> * under the License.</em>
+<a name="18" href="#18">18</a>  <em class="jxr_comment"> */</em>
+<a name="19" href="#19">19</a>  <strong class="jxr_keyword">package</strong> org.apache.chemistry.opencmis.commons.data;
+<a name="20" href="#20">20</a>  
+<a name="21" href="#21">21</a>  <strong class="jxr_keyword">import</strong> java.math.BigInteger;
+<a name="22" href="#22">22</a>  <strong class="jxr_keyword">import</strong> java.util.List;
+<a name="23" href="#23">23</a>  
+<a name="24" href="#24">24</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ObjectInFolderList.html">ObjectInFolderList</a> <strong class="jxr_keyword">extends</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ExtensionsData.html">ExtensionsData</a> {
+<a name="25" href="#25">25</a>  
+<a name="26" href="#26">26</a>      List&lt;ObjectInFolderData&gt; getObjects();
+<a name="27" href="#27">27</a>  
+<a name="28" href="#28">28</a>      Boolean hasMoreItems();
+<a name="29" href="#29">29</a>  
+<a name="30" href="#30">30</a>      BigInteger getNumItems();
+<a name="31" href="#31">31</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.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectList.html
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectList.html?rev=1308678&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectList.html (added)
+++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectList.html Tue Apr  3 04:25:02 2012
@@ -0,0 +1,45 @@
+<!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=ISO-8859-1" />
+<title>ObjectList xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<pre>
+
+<a name="1" href="#1">1</a>   <em class="jxr_comment">/*</em>
+<a name="2" href="#2">2</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a name="3" href="#3">3</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a name="4" href="#4">4</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a name="5" href="#5">5</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a name="6" href="#6">6</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a name="7" href="#7">7</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a name="8" href="#8">8</a>   <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a name="9" href="#9">9</a>   <em class="jxr_comment"> *</em>
+<a 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 name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a name="12" href="#12">12</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a name="13" href="#13">13</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a name="14" href="#14">14</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a name="15" href="#15">15</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a name="16" href="#16">16</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a name="17" href="#17">17</a>  <em class="jxr_comment"> * under the License.</em>
+<a name="18" href="#18">18</a>  <em class="jxr_comment"> */</em>
+<a name="19" href="#19">19</a>  <strong class="jxr_keyword">package</strong> org.apache.chemistry.opencmis.commons.data;
+<a name="20" href="#20">20</a>  
+<a name="21" href="#21">21</a>  <strong class="jxr_keyword">import</strong> java.math.BigInteger;
+<a name="22" href="#22">22</a>  <strong class="jxr_keyword">import</strong> java.util.List;
+<a name="23" href="#23">23</a>  
+<a name="24" href="#24">24</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ObjectList.html">ObjectList</a> <strong class="jxr_keyword">extends</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ExtensionsData.html">ExtensionsData</a> {
+<a name="25" href="#25">25</a>  
+<a name="26" href="#26">26</a>      List&lt;ObjectData&gt; getObjects();
+<a name="27" href="#27">27</a>  
+<a name="28" href="#28">28</a>      Boolean hasMoreItems();
+<a name="29" href="#29">29</a>  
+<a name="30" href="#30">30</a>      BigInteger getNumItems();
+<a name="31" href="#31">31</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.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectParentData.html
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectParentData.html?rev=1308678&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectParentData.html (added)
+++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/ObjectParentData.html Tue Apr  3 04:25:02 2012
@@ -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=ISO-8859-1" />
+<title>ObjectParentData xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<pre>
+
+<a name="1" href="#1">1</a>   <em class="jxr_comment">/*</em>
+<a name="2" href="#2">2</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a name="3" href="#3">3</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a name="4" href="#4">4</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a name="5" href="#5">5</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a name="6" href="#6">6</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a name="7" href="#7">7</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a name="8" href="#8">8</a>   <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a name="9" href="#9">9</a>   <em class="jxr_comment"> *</em>
+<a 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 name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a name="12" href="#12">12</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a name="13" href="#13">13</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a name="14" href="#14">14</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a name="15" href="#15">15</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a name="16" href="#16">16</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a name="17" href="#17">17</a>  <em class="jxr_comment"> * under the License.</em>
+<a name="18" href="#18">18</a>  <em class="jxr_comment"> */</em>
+<a name="19" href="#19">19</a>  <strong class="jxr_keyword">package</strong> org.apache.chemistry.opencmis.commons.data;
+<a name="20" href="#20">20</a>  
+<a name="21" href="#21">21</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ObjectParentData.html">ObjectParentData</a> <strong class="jxr_keyword">extends</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ExtensionsData.html">ExtensionsData</a> {
+<a name="22" href="#22">22</a>  
+<a name="23" href="#23">23</a>      <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ObjectData.html">ObjectData</a> getObject();
+<a name="24" href="#24">24</a>  
+<a name="25" href="#25">25</a>      String getRelativePathSegment();
+<a 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.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/PermissionMapping.html
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/PermissionMapping.html?rev=1308678&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/PermissionMapping.html (added)
+++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/PermissionMapping.html Tue Apr  3 04:25:02 2012
@@ -0,0 +1,78 @@
+<!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=ISO-8859-1" />
+<title>PermissionMapping xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<pre>
+
+<a name="1" href="#1">1</a>   <em class="jxr_comment">/*</em>
+<a name="2" href="#2">2</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a name="3" href="#3">3</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a name="4" href="#4">4</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a name="5" href="#5">5</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a name="6" href="#6">6</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a name="7" href="#7">7</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a name="8" href="#8">8</a>   <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a name="9" href="#9">9</a>   <em class="jxr_comment"> *</em>
+<a 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 name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a name="12" href="#12">12</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a name="13" href="#13">13</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a name="14" href="#14">14</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a name="15" href="#15">15</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a name="16" href="#16">16</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a name="17" href="#17">17</a>  <em class="jxr_comment"> * under the License.</em>
+<a name="18" href="#18">18</a>  <em class="jxr_comment"> */</em>
+<a name="19" href="#19">19</a>  <strong class="jxr_keyword">package</strong> org.apache.chemistry.opencmis.commons.data;
+<a name="20" href="#20">20</a>  
+<a name="21" href="#21">21</a>  <strong class="jxr_keyword">import</strong> java.io.Serializable;
+<a name="22" href="#22">22</a>  <strong class="jxr_keyword">import</strong> java.util.List;
+<a name="23" href="#23">23</a>  
+<a name="24" href="#24">24</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/PermissionMapping.html">PermissionMapping</a> <strong class="jxr_keyword">extends</strong> Serializable, <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ExtensionsData.html">ExtensionsData</a> {
+<a name="25" href="#25">25</a>      String CAN_GET_DESCENDENTS_FOLDER = <span class="jxr_string">"canGetDescendents.Folder"</span>;
+<a name="26" href="#26">26</a>      String CAN_GET_CHILDREN_FOLDER = <span class="jxr_string">"canGetChildren.Folder"</span>;
+<a name="27" href="#27">27</a>      String CAN_GET_PARENTS_FOLDER = <span class="jxr_string">"canGetParents.Folder"</span>;
+<a name="28" href="#28">28</a>      String CAN_GET_FOLDER_PARENT_OBJECT = <span class="jxr_string">"canGetFolderParent.Object"</span>;
+<a name="29" href="#29">29</a>      String CAN_CREATE_DOCUMENT_FOLDER = <span class="jxr_string">"canCreateDocument.Folder"</span>;
+<a name="30" href="#30">30</a>      String CAN_CREATE_FOLDER_FOLDER = <span class="jxr_string">"canCreateFolder.Folder"</span>;
+<a name="31" href="#31">31</a>      String CAN_CREATE_RELATIONSHIP_SOURCE = <span class="jxr_string">"canCreateRelationship.Source"</span>;
+<a name="32" href="#32">32</a>      String CAN_CREATE_RELATIONSHIP_TARGET = <span class="jxr_string">"canCreateRelationship.Target"</span>;
+<a name="33" href="#33">33</a>      String CAN_GET_PROPERTIES_OBJECT = <span class="jxr_string">"canGetProperties.Object"</span>;
+<a name="34" href="#34">34</a>      String CAN_VIEW_CONTENT_OBJECT = <span class="jxr_string">"canViewContent.Object"</span>;
+<a name="35" href="#35">35</a>      String CAN_UPDATE_PROPERTIES_OBJECT = <span class="jxr_string">"canUpdateProperties.Object"</span>;
+<a name="36" href="#36">36</a>      String CAN_MOVE_OBJECT = <span class="jxr_string">"canMove.Object"</span>;
+<a name="37" href="#37">37</a>      String CAN_MOVE_TARGET = <span class="jxr_string">"canMove.Target"</span>;
+<a name="38" href="#38">38</a>      String CAN_MOVE_SOURCE = <span class="jxr_string">"canMove.Source"</span>;
+<a name="39" href="#39">39</a>      String CAN_DELETE_OBJECT = <span class="jxr_string">"canDelete.Object"</span>;
+<a name="40" href="#40">40</a>      String CAN_DELETE_TREE_FOLDER = <span class="jxr_string">"canDeleteTree.Folder"</span>;
+<a name="41" href="#41">41</a>      String CAN_SET_CONTENT_DOCUMENT = <span class="jxr_string">"canSetContent.Document"</span>;
+<a name="42" href="#42">42</a>      String CAN_DELETE_CONTENT_DOCUMENT = <span class="jxr_string">"canDeleteContent.Document"</span>;
+<a name="43" href="#43">43</a>      String CAN_ADD_TO_FOLDER_OBJECT = <span class="jxr_string">"canAddToFolder.Object"</span>;
+<a name="44" href="#44">44</a>      String CAN_ADD_TO_FOLDER_FOLDER = <span class="jxr_string">"canAddToFolder.Folder"</span>;
+<a name="45" href="#45">45</a>      String CAN_REMOVE_FROM_FOLDER_OBJECT = <span class="jxr_string">"canRemoveFromFolder.Object"</span>;
+<a name="46" href="#46">46</a>      String CAN_REMOVE_FROM_FOLDER_FOLDER = <span class="jxr_string">"canRemoveFromFolder.Folder"</span>;
+<a name="47" href="#47">47</a>      String CAN_CHECKOUT_DOCUMENT = <span class="jxr_string">"canCheckout.Document"</span>;
+<a name="48" href="#48">48</a>      String CAN_CANCEL_CHECKOUT_DOCUMENT = <span class="jxr_string">"canCancelCheckout.Document"</span>;
+<a name="49" href="#49">49</a>      String CAN_CHECKIN_DOCUMENT = <span class="jxr_string">"canCheckin.Document"</span>;
+<a name="50" href="#50">50</a>      String CAN_GET_ALL_VERSIONS_VERSION_SERIES = <span class="jxr_string">"canGetAllVersions.VersionSeries"</span>;
+<a name="51" href="#51">51</a>      String CAN_GET_OBJECT_RELATIONSHIPS_OBJECT = <span class="jxr_string">"canGetObjectRelationships.Object"</span>;
+<a name="52" href="#52">52</a>      String CAN_ADD_POLICY_OBJECT = <span class="jxr_string">"canAddPolicy.Object"</span>;
+<a name="53" href="#53">53</a>      String CAN_ADD_POLICY_POLICY = <span class="jxr_string">"canAddPolicy.Policy"</span>;
+<a name="54" href="#54">54</a>      String CAN_REMOVE_POLICY_OBJECT = <span class="jxr_string">"canRemovePolicy.Object"</span>;
+<a name="55" href="#55">55</a>      String CAN_REMOVE_POLICY_POLICY = <span class="jxr_string">"canRemovePolicy.Policy"</span>;
+<a name="56" href="#56">56</a>      String CAN_GET_APPLIED_POLICIES_OBJECT = <span class="jxr_string">"canGetAppliedPolicies.Object"</span>;
+<a name="57" href="#57">57</a>      String CAN_GET_ACL_OBJECT = <span class="jxr_string">"canGetACL.Object"</span>;
+<a name="58" href="#58">58</a>      String CAN_APPLY_ACL_OBJECT = <span class="jxr_string">"canApplyACL.Object"</span>;
+<a name="59" href="#59">59</a>  
+<a name="60" href="#60">60</a>      String getKey();
+<a name="61" href="#61">61</a>  
+<a name="62" href="#62">62</a>      List&lt;String&gt; getPermissions();
+<a name="63" href="#63">63</a>  
+<a name="64" href="#64">64</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.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/PolicyIdList.html
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/PolicyIdList.html?rev=1308678&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/PolicyIdList.html (added)
+++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/PolicyIdList.html Tue Apr  3 04:25:02 2012
@@ -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=ISO-8859-1" />
+<title>PolicyIdList xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<pre>
+
+<a name="1" href="#1">1</a>   <em class="jxr_comment">/*</em>
+<a name="2" href="#2">2</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a name="3" href="#3">3</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a name="4" href="#4">4</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a name="5" href="#5">5</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a name="6" href="#6">6</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a name="7" href="#7">7</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a name="8" href="#8">8</a>   <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a name="9" href="#9">9</a>   <em class="jxr_comment"> *</em>
+<a 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 name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a name="12" href="#12">12</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a name="13" href="#13">13</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a name="14" href="#14">14</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a name="15" href="#15">15</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a name="16" href="#16">16</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a name="17" href="#17">17</a>  <em class="jxr_comment"> * under the License.</em>
+<a name="18" href="#18">18</a>  <em class="jxr_comment"> */</em>
+<a name="19" href="#19">19</a>  <strong class="jxr_keyword">package</strong> org.apache.chemistry.opencmis.commons.data;
+<a name="20" href="#20">20</a>  
+<a name="21" href="#21">21</a>  <strong class="jxr_keyword">import</strong> java.util.List;
+<a name="22" href="#22">22</a>  
+<a name="23" href="#23">23</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/PolicyIdList.html">PolicyIdList</a> <strong class="jxr_keyword">extends</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ExtensionsData.html">ExtensionsData</a> {
+<a name="24" href="#24">24</a>  
+<a name="25" href="#25">25</a>      List&lt;String&gt; getPolicyIds();
+<a 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.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/Principal.html
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/Principal.html?rev=1308678&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/Principal.html (added)
+++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/Principal.html Tue Apr  3 04:25:02 2012
@@ -0,0 +1,44 @@
+<!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=ISO-8859-1" />
+<title>Principal xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<pre>
+
+<a name="1" href="#1">1</a>   <em class="jxr_comment">/*</em>
+<a name="2" href="#2">2</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a name="3" href="#3">3</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a name="4" href="#4">4</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a name="5" href="#5">5</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a name="6" href="#6">6</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a name="7" href="#7">7</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a name="8" href="#8">8</a>   <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a name="9" href="#9">9</a>   <em class="jxr_comment"> *</em>
+<a 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 name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a name="12" href="#12">12</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a name="13" href="#13">13</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a name="14" href="#14">14</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a name="15" href="#15">15</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a name="16" href="#16">16</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a name="17" href="#17">17</a>  <em class="jxr_comment"> * under the License.</em>
+<a name="18" href="#18">18</a>  <em class="jxr_comment"> */</em>
+<a name="19" href="#19">19</a>  <strong class="jxr_keyword">package</strong> org.apache.chemistry.opencmis.commons.data;
+<a name="20" href="#20">20</a>  
+<a name="21" href="#21">21</a>  <em class="jxr_javadoccomment">/**</em>
+<a name="22" href="#22">22</a>  <em class="jxr_javadoccomment"> * ACE Principal.</em>
+<a name="23" href="#23">23</a>  <em class="jxr_javadoccomment"> */</em>
+<a name="24" href="#24">24</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/Principal.html">Principal</a> <strong class="jxr_keyword">extends</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ExtensionsData.html">ExtensionsData</a> {
+<a name="25" href="#25">25</a>  
+<a name="26" href="#26">26</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="27" href="#27">27</a>  <em class="jxr_javadoccomment">     * Returns the principal id.</em>
+<a name="28" href="#28">28</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="29" href="#29">29</a>      String getId();
+<a name="30" href="#30">30</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.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/Properties.html
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/Properties.html?rev=1308678&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/Properties.html (added)
+++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/Properties.html Tue Apr  3 04:25:02 2012
@@ -0,0 +1,53 @@
+<!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=ISO-8859-1" />
+<title>Properties xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<pre>
+
+<a name="1" href="#1">1</a>   <em class="jxr_comment">/*</em>
+<a name="2" href="#2">2</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a name="3" href="#3">3</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a name="4" href="#4">4</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a name="5" href="#5">5</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a name="6" href="#6">6</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a name="7" href="#7">7</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a name="8" href="#8">8</a>   <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a name="9" href="#9">9</a>   <em class="jxr_comment"> *</em>
+<a 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 name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a name="12" href="#12">12</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a name="13" href="#13">13</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a name="14" href="#14">14</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a name="15" href="#15">15</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a name="16" href="#16">16</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a name="17" href="#17">17</a>  <em class="jxr_comment"> * under the License.</em>
+<a name="18" href="#18">18</a>  <em class="jxr_comment"> */</em>
+<a name="19" href="#19">19</a>  <strong class="jxr_keyword">package</strong> org.apache.chemistry.opencmis.commons.data;
+<a name="20" href="#20">20</a>  
+<a name="21" href="#21">21</a>  <strong class="jxr_keyword">import</strong> java.util.List;
+<a name="22" href="#22">22</a>  <strong class="jxr_keyword">import</strong> java.util.Map;
+<a name="23" href="#23">23</a>  
+<a name="24" href="#24">24</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/Properties.html">Properties</a> <strong class="jxr_keyword">extends</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/ExtensionsData.html">ExtensionsData</a> {
+<a name="25" href="#25">25</a>  
+<a name="26" href="#26">26</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="27" href="#27">27</a>  <em class="jxr_javadoccomment">     * Returns a map of properties (property id =&gt; property). Should not be used</em>
+<a name="28" href="#28">28</a>  <em class="jxr_javadoccomment">     * with queries because some repositories don't set property ids, and</em>
+<a name="29" href="#29">29</a>  <em class="jxr_javadoccomment">     * because when dealing with queries the proper key is usually the query</em>
+<a name="30" href="#30">30</a>  <em class="jxr_javadoccomment">     * name (when using JOINs, several properties with the same id may be</em>
+<a name="31" href="#31">31</a>  <em class="jxr_javadoccomment">     * returned).</em>
+<a name="32" href="#32">32</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="33" href="#33">33</a>      Map&lt;String, PropertyData&lt;?&gt;&gt; getProperties();
+<a name="34" href="#34">34</a>  
+<a name="35" href="#35">35</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="36" href="#36">36</a>  <em class="jxr_javadoccomment">     * Returns the list of properties.</em>
+<a name="37" href="#37">37</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="38" href="#38">38</a>      List&lt;PropertyData&lt;?&gt;&gt; getPropertyList();
+<a name="39" href="#39">39</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.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/PropertyBoolean.html
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/PropertyBoolean.html?rev=1308678&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/PropertyBoolean.html (added)
+++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/data/PropertyBoolean.html Tue Apr  3 04:25:02 2012
@@ -0,0 +1,37 @@
+<!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=ISO-8859-1" />
+<title>PropertyBoolean xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<pre>
+
+<a name="1" href="#1">1</a>   <em class="jxr_comment">/*</em>
+<a name="2" href="#2">2</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a name="3" href="#3">3</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a name="4" href="#4">4</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a name="5" href="#5">5</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a name="6" href="#6">6</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a name="7" href="#7">7</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a name="8" href="#8">8</a>   <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a name="9" href="#9">9</a>   <em class="jxr_comment"> *</em>
+<a 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 name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a name="12" href="#12">12</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a name="13" href="#13">13</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a name="14" href="#14">14</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a name="15" href="#15">15</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a name="16" href="#16">16</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a name="17" href="#17">17</a>  <em class="jxr_comment"> * under the License.</em>
+<a name="18" href="#18">18</a>  <em class="jxr_comment"> */</em>
+<a name="19" href="#19">19</a>  <strong class="jxr_keyword">package</strong> org.apache.chemistry.opencmis.commons.data;
+<a name="20" href="#20">20</a>  
+<a name="21" href="#21">21</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/data/PropertyBoolean.html">PropertyBoolean</a> <strong class="jxr_keyword">extends</strong> PropertyData&lt;Boolean&gt; {
+<a name="22" href="#22">22</a>  
+<a name="23" href="#23">23</a>  }
+</pre>
+<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
+</html>
+