StoredProcedure Class

public class StoredProcedure
extends Resource

Represents a stored procedure in the Azure Cosmos DB database service.

Azure Cosmos DB allows stored procedures to be executed in the storage tier, directly against a document collection. The script gets executed under ACID transactions on the primary storage partition of the specified collection. For additional details, refer to the server-side JavaScript API documentation.

Constructor Summary

Constructor Description
StoredProcedure()

Constructor.

StoredProcedure(String jsonString)

Constructor.

StoredProcedure(JSONObject jsonObject)

Constructor.

Method Summary

Modifier and Type Method and Description
java.lang.String getBody()

Get the body of the stored procedure.

void setBody(String body)

Set the body of the stored procedure.

Methods inherited from JsonSerializable

Methods inherited from Resource

Methods inherited from java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

Constructor Details

StoredProcedure

public StoredProcedure()

Constructor.

StoredProcedure

public StoredProcedure(String jsonString)

Constructor.

Parameters:

jsonString - the json string that represents the stored procedure.

StoredProcedure

public StoredProcedure(JSONObject jsonObject)

Constructor.

Parameters:

jsonObject - the json object that represents the stored procedure.

Method Details

getBody

public String getBody()

Get the body of the stored procedure.

Returns:

the body of the stored procedure.

setBody

public void setBody(String body)

Set the body of the stored procedure.

Parameters:

body - the body of the stored procedure.

Applies to