Skip to content

Commit 9f7ed88

Browse files
author
ehennum
committed
missing JavaDoc #1250
1 parent f1be64d commit 9f7ed88

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

marklogic-client-api/src/main/java/com/marklogic/client/dataservices/IOEndpoint.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,7 @@ interface CallContext {
213213
SessionState getSessionState();
214214
/**
215215
* Sets an identifier for an endpoint to use when accessing a session cache on the server.
216+
* @param sessionState the identifier for the server cache of the endpoint
216217
* @return the callContext
217218
*/
218219
CallContext withSessionState(SessionState sessionState);

marklogic-client-api/src/main/java/com/marklogic/client/dataservices/InputOutputCaller.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ public interface InputOutputCaller<I,O> extends IOEndpoint {
3333
* @param client the database client to use for making calls
3434
* @param apiDecl the JSON api declaration specifying how to call the endpoint
3535
* @param inputHandle the handle for the representation of the input content (such as StringHandle)
36-
* @param outputHandle
36+
* @param outputHandle the handle for the representation of the output content (such as BytesHandle)
3737
* @param <I> the content representation (such as String)
38-
* @param <O>
38+
* @param <O> the output content representation (such as byte[])
3939
* @return the InputOutputCaller instance for calling the endpoint.
4040
*/
4141
static <I,O> InputOutputCaller<I,O> on(

marklogic-client-api/src/main/java/com/marklogic/client/dataservices/OutputCaller.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public interface OutputCaller<O> extends IOEndpoint {
3030
* Constructs an instance of the OutputCaller interface.
3131
* @param client the database client to use for making calls
3232
* @param apiDecl the JSON api declaration specifying how to call the endpoint
33-
* @param outputHandle the handle for the representation of the output content (such as byte[])
33+
* @param outputHandle the handle for the representation of the output content (such as BytesHandle)
3434
* @param <O> the output content representation (such as byte[])
3535
* @return the OutputCaller instance for calling the endpoint.
3636
*/

0 commit comments

Comments
 (0)