Skip to content

Commit 2ae43f8

Browse files
authored
Merge pull request #1549 from marklogic/feature/since-additions
Added "since 6.2.0" to a couple places
2 parents 833906d + cc56c5e commit 2ae43f8

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

marklogic-client-api/src/main/java/com/marklogic/client/query/StructuredQueryDefinition.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ public interface StructuredQueryDefinition
4343
*
4444
* @param xmlStreamWriter The XML stream writer to which the query definition should be serialized.
4545
* @throws XMLStreamException
46+
* @since 6.2.0
4647
*/
4748
void serialize(XMLStreamWriter xmlStreamWriter) throws XMLStreamException;
4849

marklogic-client-api/src/main/java/com/marklogic/client/row/RowManager.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,7 @@ public enum RowStructure{ARRAY, OBJECT}
369369
* @param resultsHandle the IO class for capturing the results
370370
* @param <T> the type of the IO object for r the results
371371
* @return an object of the IO class containing the query results, which will include error messages if the query fails
372+
* @since 6.2.0
372373
*/
373374
<T extends JSONReadHandle> T graphql(JSONWriteHandle query, T resultsHandle);
374375

@@ -379,6 +380,7 @@ public enum RowStructure{ARRAY, OBJECT}
379380
* @param as the class type of the results to return; typically JsonNode or String
380381
* @param <T> the type of the results to return
381382
* @return an instance of the given return type that contains the query results, which will include error messages if the query fails
383+
* @since 6.2.0
382384
*/
383385
<T> T graphqlAs(JSONWriteHandle query, Class<T> as);
384386
}

0 commit comments

Comments
 (0)