All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.marklogic.client.query.RawQueryDefinition Maven / Gradle / Ivy

The newest version!
/*
 * Copyright © 2024 MarkLogic Corporation. All Rights Reserved.
 */
package com.marklogic.client.query;

import com.marklogic.client.io.marker.StructureWriteHandle;

/**
 * A RawQueryDefinition provides access to a query
 * in a JSON or XML representation.
 */
public interface RawQueryDefinition extends QueryDefinition {
  /**
   * Returns the handle for the JSON or XML representation of the query.
   * @return	the JSON or XML handle.
   */
  StructureWriteHandle getHandle();

  /**
   * Specifies the handle for the JSON or XML representation of the query.
   * @param handle	the JSON or XML handle.
   */
  void setHandle(StructureWriteHandle handle);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy