Author: fguillaume
Date: Sun Aug 2 23:50:27 2009
New Revision: 800162
URL: http://svn.apache.org/viewvc?rev=800162&view=rev
Log:
CMIS-44: misc, SPI#getCheckedoutDocuments -> getCheckedOutDocuments
Modified:
incubator/chemistry/trunk/chemistry/chemistry-api/src/main/java/org/apache/chemistry/SPI.java
incubator/chemistry/trunk/chemistry/chemistry-atompub-client/src/main/java/org/apache/chemistry/atompub/client/APPConnection.java
incubator/chemistry/trunk/chemistry/chemistry-commons/src/main/java/org/apache/chemistry/impl/simple/SimpleConnection.java
incubator/chemistry/trunk/chemistry/chemistry-jcr/src/main/java/org/apache/chemistry/jcr/JcrConnection.java
Modified:
incubator/chemistry/trunk/chemistry/chemistry-api/src/main/java/org/apache/chemistry/SPI.java
URL:
http://svn.apache.org/viewvc/incubator/chemistry/trunk/chemistry/chemistry-api/src/main/java/org/apache/chemistry/SPI.java?rev=800162&r1=800161&r2=800162&view=diff
==============================================================================
---
incubator/chemistry/trunk/chemistry/chemistry-api/src/main/java/org/apache/chemistry/SPI.java
(original)
+++
incubator/chemistry/trunk/chemistry/chemistry-api/src/main/java/org/apache/chemistry/SPI.java
Sun Aug 2 23:50:27 2009
@@ -213,7 +213,7 @@
* there are more items
* @param skipCount
*/
- Collection<ObjectEntry> getCheckedoutDocuments(ObjectId folder,
+ Collection<ObjectEntry> getCheckedOutDocuments(ObjectId folder,
String filter, boolean includeAllowableActions,
boolean includeRelationships, int maxItems, int skipCount,
boolean[] hasMoreItems);
@@ -407,6 +407,8 @@
* support updates.
*
* @param document the document
+ * @return the resulting document, which may differ from the one passed as
+ * input
*/
ObjectId deleteContentStream(ObjectId document);
@@ -761,6 +763,7 @@
* not deleted, and may still be applied to other objects.
* <p>
* The target object must be controllable.
+ *
* @param object the target object
* @param policy the policy
*/
Modified:
incubator/chemistry/trunk/chemistry/chemistry-atompub-client/src/main/java/org/apache/chemistry/atompub/client/APPConnection.java
URL:
http://svn.apache.org/viewvc/incubator/chemistry/trunk/chemistry/chemistry-atompub-client/src/main/java/org/apache/chemistry/atompub/client/APPConnection.java?rev=800162&r1=800161&r2=800162&view=diff
==============================================================================
---
incubator/chemistry/trunk/chemistry/chemistry-atompub-client/src/main/java/org/apache/chemistry/atompub/client/APPConnection.java
(original)
+++
incubator/chemistry/trunk/chemistry/chemistry-atompub-client/src/main/java/org/apache/chemistry/atompub/client/APPConnection.java
Sun Aug 2 23:50:27 2009
@@ -315,7 +315,7 @@
return resp.getObjectFeed(new ReadContext(this));
}
- public Collection<ObjectEntry> getCheckedoutDocuments(ObjectId folder,
+ public Collection<ObjectEntry> getCheckedOutDocuments(ObjectId folder,
String filter, boolean includeAllowableActions,
boolean includeRelationships, int maxItems, int skipCount,
boolean[] hasMoreItems) {
Modified:
incubator/chemistry/trunk/chemistry/chemistry-commons/src/main/java/org/apache/chemistry/impl/simple/SimpleConnection.java
URL:
http://svn.apache.org/viewvc/incubator/chemistry/trunk/chemistry/chemistry-commons/src/main/java/org/apache/chemistry/impl/simple/SimpleConnection.java?rev=800162&r1=800161&r2=800162&view=diff
==============================================================================
---
incubator/chemistry/trunk/chemistry/chemistry-commons/src/main/java/org/apache/chemistry/impl/simple/SimpleConnection.java
(original)
+++
incubator/chemistry/trunk/chemistry/chemistry-commons/src/main/java/org/apache/chemistry/impl/simple/SimpleConnection.java
Sun Aug 2 23:50:27 2009
@@ -288,7 +288,7 @@
return parents;
}
- public Collection<ObjectEntry> getCheckedoutDocuments(ObjectId folder,
+ public Collection<ObjectEntry> getCheckedOutDocuments(ObjectId folder,
String filter, boolean includeAllowableActions,
boolean includeRelationships, int maxItems, int skipCount,
boolean[] hasMoreItems) {
Modified:
incubator/chemistry/trunk/chemistry/chemistry-jcr/src/main/java/org/apache/chemistry/jcr/JcrConnection.java
URL:
http://svn.apache.org/viewvc/incubator/chemistry/trunk/chemistry/chemistry-jcr/src/main/java/org/apache/chemistry/jcr/JcrConnection.java?rev=800162&r1=800161&r2=800162&view=diff
==============================================================================
---
incubator/chemistry/trunk/chemistry/chemistry-jcr/src/main/java/org/apache/chemistry/jcr/JcrConnection.java
(original)
+++
incubator/chemistry/trunk/chemistry/chemistry-jcr/src/main/java/org/apache/chemistry/jcr/JcrConnection.java
Sun Aug 2 23:50:27 2009
@@ -260,7 +260,7 @@
throw new UnsupportedOperationException();
}
- public Collection<ObjectEntry> getCheckedoutDocuments(ObjectId folderId,
+ public Collection<ObjectEntry> getCheckedOutDocuments(ObjectId folderId,
String filter, boolean includeAllowableActions,
boolean includeRelationships, int maxItems, int skipCount,
boolean[] hasMoreItems) {