Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2013-2015 MarkLogic Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.marklogic.client.alerting;
import com.marklogic.client.FailedRequestException;
import com.marklogic.client.ForbiddenUserException;
import com.marklogic.client.ResourceNotFoundException;
import com.marklogic.client.document.ServerTransform;
import com.marklogic.client.io.marker.RuleListReadHandle;
import com.marklogic.client.io.marker.RuleReadHandle;
import com.marklogic.client.io.marker.RuleWriteHandle;
import com.marklogic.client.io.marker.StructureWriteHandle;
import com.marklogic.client.query.QueryDefinition;
/**
* Manages CRUD of rules for the REST API alerting capability, as well as match
* operations against installed rules.
*/
public interface RuleManager {
/**
* Tests for existence of rule on the REST server.
*
* @param ruleName Name of the rule
* @return true if rule exists, false otherwise.
*/
public boolean exists(String ruleName);
/**
* Reads a rule from the server in an XML representation provided
* as an object of an IO class.
*
* The IO class must have been registered before creating the database client.
* By default, standard Java IO classes for document content are registered.
*
* @param ruleName name of rule on REST server
* @param as the IO class for reading the rule
* @return an object of the IO class with the rule
*/
public T readRuleAs(String ruleName, Class as)
throws ResourceNotFoundException, ForbiddenUserException, FailedRequestException;
/**
* Reads a rule from the server into the provided handle.
*
* @param ruleName Name of rule on REST server.
* @param readHandle Handle that will accept the rule payload. Often will be an instance of RuleDefinition.
* @return Handle or object that models the rule.
*/
public T readRule(String ruleName, T readHandle)
throws ResourceNotFoundException, ForbiddenUserException,
FailedRequestException;
/**
* Writes a rule to the server in an XML representation provided
* as an object of an IO class.
*
* The IO class must have been registered before creating the database client.
* By default, standard Java IO classes for document content are registered.
*
* @param ruleName name of rule on REST server
* @param ruleSource an IO representation of the rule
*/
public void writeRuleAs(String ruleName, Object ruleSource)
throws ResourceNotFoundException, ForbiddenUserException, FailedRequestException;
/**
* Writes a rule to the server from the provided handle.
*
* @param writeHandle Handle that contains the rule payload. Must be a RuleDefinition object to use this method, which has no ruleName.
*/
public void writeRule(RuleDefinition writeHandle)
throws ResourceNotFoundException, ForbiddenUserException,
FailedRequestException;
/**
* Writes a rule to the server from the provided handle.
*
* @param ruleName Name of rule on REST server.
* @param writeHandle Handle that contains the rule payload. Often will be an instance of RuleDefinition.
*/
public void writeRule(String ruleName, RuleWriteHandle writeHandle);
/**
* Removes a rule from the server.
*
* @param ruleName Name of rule on REST server.
*/
public void delete(String ruleName) throws ForbiddenUserException,
FailedRequestException;
/**
* Matches server rules based on the results of a search.
* @param docQuery A query definition to qualify documents to match.
* @param ruleListHandle A handle to hold the match results.
* @return The List of rules matched by the documents returned by this query.
*/
public T match(QueryDefinition docQuery, T ruleListHandle);
/**
* Matches server rules based on results of a search, with pagination applied to search.
* Use this method to match, say, a page or search results against rules.
* @param docQuery A query definition to qualify documents to match.
* @param start The start position in query results to match.
* @param pageLength The number of results in the filtering query to match. Use null to return all matches.
* @param candidateRules An array of rule names to return in matches. Null matches all rules.
* @param ruleListHandle A handle to hold the match results.
* @return The list of rules matched by the documents returned by the query.
*/
public T match(QueryDefinition docQuery,
long start, long pageLength, String[] candidateRules, T ruleListHandle);
/**
* Matches server rules based on results of a search, with pagination applied to search.
* Use this method to match, say, a page or search results against rules.
* @param docQuery A query definition to qualify documents to match.
* @param start The start position in query results to match.
* @param pageLength The number of results in the filtering query to match. Use null to return all matches.
* @param candidateRules An array of rule names to return in matches. A zero-length array matches all rules.
* @param ruleListHandle A handle to hold the match results.
* @param transform a server transform to modify the rule list payload.
* @return The list of rules matched by the documents returned by the query.
*/
public T match(QueryDefinition docQuery,
long start, long pageLength, String[] candidateRules, T ruleListHandle,
ServerTransform transform);
/**
* Matches server rules based on an array of document IDS.
* @param docIds An array of document IDs to match against.
* @param ruleListHandle A handle to hold the match results.
* @return The union of all rules matched by the document ids provided.
*/
public T match(String[] docIds, T ruleListHandle);
/**
* Matches server rules based on an array of document IDs and an array of rule names.
* @param docIds An array of document IDs to match against.
* @param candidateRules An array of rule names to return in matches. A zero-length array matches all rules.
* @param ruleListHandle A handle to hold the match results
* @return The union of rules in candidateRules matched by the document ids provided.
*/
public T match(String[] docIds, String[] candidateRules, T ruleListHandle);
/**
* Matches server rules based on an array of document IDs and an array of rule names.
* @param docIds An array of document IDs to match against.
* @param candidateRules An array of rule names to return in matches. A zero-length array matches all rules.
* @param ruleListHandle A handle to hold the match results.
* @param transform a server transform to modify the rule list payload.
* @return The union of rules in candidateRules matched by the document ids provided.
*/
public T match(String[] docIds, String[] candidateRules, T ruleListHandle, ServerTransform transform);
/**
* Matches server rules based on a document supplied
* in a textual representation provided as an object of an IO class.
*
* The IO class must have been registered before creating the database client.
* By default, standard Java IO classes for document content are registered.
*
* @param content an IO representation of the document to match against rules
* @param ruleListHandle a handle to hold the match results
* @return the union of rules matched by the document provided
*/
public T matchAs(Object content, T ruleListHandle);
/**
* Matches server rules based on a document supplied
* in a textual representation provided as an object of an IO class.
*
* The IO class must have been registered before creating the database client.
* By default, standard Java IO classes for document content are registered.
*
* @param content an IO representation of the document to match against rules
* @param candidateRules an array of rule names to match. A zero-length array matches all rules.
* @param ruleListHandle a handle to hold the match results
* @return the union of rules matched by the document provided
*/
public T matchAs(Object content, String[] candidateRules,
T ruleListHandle);
/**
* Matches server rules based on a document supplied
* in a textual representation provided as an object of an IO class.
*
* The IO class must have been registered before creating the database client.
* By default, standard Java IO classes for document content are registered.
*
* @param content an IO representation of the document to match against rules
* @param candidateRules an array of rule names to match. A zero-length array matches all rules.
* @param ruleListHandle a handle to hold the match results
* @param transform a server transform to modify the rule list payload
* @return the union of rules matched by the document provided
*/
public T matchAs(Object content, String[] candidateRules,
T ruleListHandle, ServerTransform transform);
/**
* Matches server rules based on a document supplied in a write handle.
* @param document A document payload to match against rules.
* @param ruleListHandle A handle to hold the match results.
* @return The union of rules matched by the document provided.
*/
public T match(StructureWriteHandle document, T ruleListHandle);
/**
* Matches server rules based on a document supplied in a write handle.
* @param document A document payload to match against rules.
* @param candidateRules An array of rule names to match. A zero-length array matches all rules.
* @param ruleListHandle A handle to hold the match results
* @return The union of rules in candidateRules matched by the document.
*/
public T match(StructureWriteHandle document,
String[] candidateRules, T ruleListHandle);
/**
* Matches server rules based on a document supplied in a write handle.
* @param document A document payload to match against rules.
* @param candidateRules An array of rule names to match. A zero-length array matches all rules.
* @param ruleListHandle A handle to hold the match results.
* @param transform a server transform to modify the rule list payload.
* @return The union of rules in candidateRules matched by the document.
*/
public T match(StructureWriteHandle document,
String[] candidateRules, T ruleListHandle, ServerTransform transform);
}