@@ -43,7 +43,10 @@ public interface TransformExtensionsManager {
4343 * in a JSON or XML representation provided as an object of an IO class.
4444 *
4545 * The IO class must have been registered before creating the database client.
46- * By default, standard Java IO classes for document content are registered.
46+ * By default, the provided handles that implement
47+ * {@link com.marklogic.client.io.marker.ContentHandle ContentHandle} are registered.
48+ *
49+ * <a href="../../../../overview-summary.html#ShortcutMethods">Learn more about shortcut methods</a>
4750 *
4851 * @param format whether to provide the list in a JSON or XML representation
4952 * @param as the IO class for reading the list of transform extensions
@@ -56,7 +59,10 @@ public interface TransformExtensionsManager {
5659 * in a JSON or XML representation provided as an object of an IO class.
5760 *
5861 * The IO class must have been registered before creating the database client.
59- * By default, standard Java IO classes for document content are registered.
62+ * By default, the provided handles that implement
63+ * {@link com.marklogic.client.io.marker.ContentHandle ContentHandle} are registered.
64+ *
65+ * <a href="../../../../overview-summary.html#ShortcutMethods">Learn more about shortcut methods</a>
6066 *
6167 * @param format whether to provide the list in a JSON or XML representation
6268 * @param as the IO class for reading the list of transform extensions
@@ -90,7 +96,10 @@ public <T extends StructureReadHandle> T listTransforms(T listHandle, boolean re
9096 * in an XML representation provided as an object of an IO class.
9197 *
9298 * The IO class must have been registered before creating the database client.
93- * By default, standard Java IO classes for document content are registered.
99+ * By default, the provided handles that implement
100+ * {@link com.marklogic.client.io.marker.ContentHandle ContentHandle} are registered.
101+ *
102+ * <a href="../../../../overview-summary.html#ShortcutMethods">Learn more about shortcut methods</a>
94103 *
95104 * @param transformName the name of the transform
96105 * @param as the IO class for reading the source code as XML
@@ -115,7 +124,10 @@ public <T extends XMLReadHandle> T readXSLTransform(String transformName, T sour
115124 * in a textual representation provided as an object of an IO class.
116125 *
117126 * The IO class must have been registered before creating the database client.
118- * By default, standard Java IO classes for document content are registered.
127+ * By default, the provided handles that implement
128+ * {@link com.marklogic.client.io.marker.ContentHandle ContentHandle} are registered.
129+ *
130+ * <a href="../../../../overview-summary.html#ShortcutMethods">Learn more about shortcut methods</a>
119131 *
120132 * @param transformName the name of the transform
121133 * @param as the IO class for reading the source code as text
@@ -140,7 +152,10 @@ public <T extends TextReadHandle> T readXQueryTransform(String transformName, T
140152 * in a textual representation provided as an object of an IO class.
141153 *
142154 * The IO class must have been registered before creating the database client.
143- * By default, standard Java IO classes for document content are registered.
155+ * By default, the provided handles that implement
156+ * {@link com.marklogic.client.io.marker.ContentHandle ContentHandle} are registered.
157+ *
158+ * <a href="../../../../overview-summary.html#ShortcutMethods">Learn more about shortcut methods</a>
144159 *
145160 * @param transformName the name of the transform
146161 * @param as the IO class for reading the source code as text
@@ -166,7 +181,10 @@ public <T extends TextReadHandle> T readJavascriptTransform(String transformName
166181 * in an XML representation provided as an object of an IO class.
167182 *
168183 * The IO class must have been registered before creating the database client.
169- * By default, standard Java IO classes for document content are registered.
184+ * By default, the provided handles that implement
185+ * {@link com.marklogic.client.io.marker.ContentHandle ContentHandle} are registered.
186+ *
187+ * <a href="../../../../overview-summary.html#ShortcutMethods">Learn more about shortcut methods</a>
170188 *
171189 * @param transformName the name of the transform
172190 * @param source an IO representation of the source code
@@ -178,7 +196,10 @@ public void writeXSLTransformAs(String transformName, Object source)
178196 * in an XML representation provided as an object of an IO class.
179197 *
180198 * The IO class must have been registered before creating the database client.
181- * By default, standard Java IO classes for document content are registered.
199+ * By default, the provided handles that implement
200+ * {@link com.marklogic.client.io.marker.ContentHandle ContentHandle} are registered.
201+ *
202+ * <a href="../../../../overview-summary.html#ShortcutMethods">Learn more about shortcut methods</a>
182203 *
183204 * @param transformName the name of the transform
184205 * @param metadata the metadata about the transform
@@ -218,7 +239,10 @@ public void writeXSLTransform(String transformName, XMLWriteHandle sourceHandle,
218239 * in a textual representation provided as an object of an IO class.
219240 *
220241 * The IO class must have been registered before creating the database client.
221- * By default, standard Java IO classes for document content are registered.
242+ * By default, the provided handles that implement
243+ * {@link com.marklogic.client.io.marker.ContentHandle ContentHandle} are registered.
244+ *
245+ * <a href="../../../../overview-summary.html#ShortcutMethods">Learn more about shortcut methods</a>
222246 *
223247 * @param transformName the name of the transform
224248 * @param source an IO representation of the source code
@@ -230,7 +254,10 @@ public void writeXQueryTransformAs(String transformName, Object source)
230254 * in a textual representation provided as an object of an IO class.
231255 *
232256 * The IO class must have been registered before creating the database client.
233- * By default, standard Java IO classes for document content are registered.
257+ * By default, the provided handles that implement
258+ * {@link com.marklogic.client.io.marker.ContentHandle ContentHandle} are registered.
259+ *
260+ * <a href="../../../../overview-summary.html#ShortcutMethods">Learn more about shortcut methods</a>
234261 *
235262 * @param transformName the name of the transform
236263 * @param metadata the metadata about the transform
@@ -266,28 +293,34 @@ public void writeXQueryTransform(String transformName, TextWriteHandle sourceHan
266293 throws ResourceNotFoundException , ResourceNotResendableException , ForbiddenUserException , FailedRequestException ;
267294
268295 /**
269- * Installs a transform implemented in XQuery
270- * in a textual representation provided as an object of an IO class.
271- *
272- * The IO class must have been registered before creating the database client.
273- * By default, standard Java IO classes for document content are registered.
274- *
275- * @param transformName the name of the transform
276- * @param source an IO representation of the source code
296+ * Installs a transform implemented in XQuery
297+ * in a textual representation provided as an object of an IO class.
298+ *
299+ * The IO class must have been registered before creating the database client.
300+ * By default, the provided handles that implement
301+ * {@link com.marklogic.client.io.marker.ContentHandle ContentHandle} are registered.
302+ *
303+ * <a href="../../../../overview-summary.html#ShortcutMethods">Learn more about shortcut methods</a>
304+ *
305+ * @param transformName the name of the transform
306+ * @param source an IO representation of the source code
277307 */
278308
279309 public void writeJavascriptTransformAs (String transformName , Object source )
280310 throws ResourceNotFoundException , ResourceNotResendableException , ForbiddenUserException , FailedRequestException ;
281311 /**
282- * Installs a transform implemented in Javascript
283- * in a textual representation provided as an object of an IO class.
284- *
285- * The IO class must have been registered before creating the database client.
286- * By default, standard Java IO classes for document content are registered.
287- *
288- * @param transformName the name of the transform
289- * @param metadata the metadata about the transform
290- * @param source an IO representation of the source code
312+ * Installs a transform implemented in Javascript
313+ * in a textual representation provided as an object of an IO class.
314+ *
315+ *The IO class must have been registered before creating the database client.
316+ * By default, the provided handles that implement
317+ * {@link com.marklogic.client.io.marker.ContentHandle ContentHandle} are registered.
318+ *
319+ * <a href="../../../../overview-summary.html#ShortcutMethods">Learn more about shortcut methods</a>
320+ *
321+ * @param transformName the name of the transform
322+ * @param metadata the metadata about the transform
323+ * @param source an IO representation of the source code
291324 */
292325 public void writeJavascriptTransformAs (String transformName , ExtensionMetadata metadata , Object source )
293326 throws ResourceNotFoundException , ResourceNotResendableException , ForbiddenUserException , FailedRequestException ;
0 commit comments