DSJQuery |
DSJQuery.children() |
Retrieves the immediate descendants for all selected collections.
|
DSJQuery |
DSJQuery.children(java.lang.String filterSelector) |
Retrieves the immediate descendants for all selected collections which satisfy a given filter.
|
DSJQuery |
DSJQuery.filter(java.lang.String filterSelector) |
Reduces the set of objects to those that match the given selector.
|
DSJQuery |
DSJQuery.filter_byObjectClass(java.lang.String className) |
Reduces the set of objects to those of a given object class.
|
DSJQuery |
DSJQuery.filter_byProperty_contains(java.lang.String propertyName,
java.lang.String propertyValue,
boolean ignoreCase) |
Reduces the set of objects to those with property values containing a given value.
|
DSJQuery |
DSJQuery.filter_byProperty_endsWith(java.lang.String propertyName,
java.lang.String propertyValue,
boolean ignoreCase) |
Reduces the set of objects to those with property values ending with a given value.
|
DSJQuery |
DSJQuery.filter_byProperty_equals(java.lang.String propertyName,
java.lang.String propertyValue,
boolean ignoreCase) |
Reduces the set of objects to those with property values equal to a given value.
|
DSJQuery |
DSJQuery.filter_byProperty_startsWith(java.lang.String propertyName,
java.lang.String propertyValue,
boolean ignoreCase) |
Reduces the set of objects to those with property values starting with a given value.
|
DSJQuery |
DSJQuery.find(java.lang.String findSelector) |
Searches beneath all currently selected Collections for Documents and Collections
that match the given selector.
|
DSJQuery |
DSJQuery.find_all() |
Searches beneath all currently selected Collections
for all Documents and Collections.
|
DSJQuery |
DSJQuery.find_byHandle(java.lang.String handle) |
Searches beneath all currently selected Collections
for objects with the given handle.
|
DSJQuery |
DSJQuery.find_byObjectClass(java.lang.String className) |
Searches beneath all currently selection Collections
for objects with a given object class.
|
DSJQuery |
DSJQuery.first() |
Filters the current set of documents and collections to only include the first one.
|
DSJQuery |
DSJQuery.insertAndGet(java.io.File file) |
Uploads a new Document to DocuShare under each Collection in the set.
|
DSJQuery |
DSJQuery.insertCollectionAndGet(java.lang.String collectionName) |
Creates a new Collection under each Collection in the set.
|
DSJQuery |
DSJQuery.reverse() |
Reverses the order of the current set of objects.
|
static void |
DSJQuerySessionHandler.serverSetup(java.lang.String serverName) |
Initializes DSJQuery with DocuShare server details.
|
static void |
DSJQuerySessionHandler.serverSetup(java.lang.String serverName,
int serverPort) |
Initializes DSJQuery with complete DocuShare server details.
|
static void |
DSJQuerySessionHandler.sessionSetup(java.lang.String userName,
java.lang.String password) |
Initializes DSJQuery with session login details.
|
static void |
DSJQuerySessionHandler.sessionSetup(java.lang.String userDomain,
java.lang.String userName,
java.lang.String password) |
Initializes DSJQuery with complete session login details.
|
DSJQuery |
DSJQuery.sort(java.util.Comparator<com.xerox.docushare.DSObject> comparator) |
Sorts the current set of objects using a Comparator.
|
DSJQuery |
DSJQuery.sortAsc_byAttribute(java.lang.String attributeName) |
Sorts the current set of objects in ascending order by an attribute.
|