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

com.marklogic.client.admin.ServerConfigurationManager Maven / Gradle / Ivy

/*
 * Copyright 2012-2016 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.admin;

import com.marklogic.client.FailedRequestException;
import com.marklogic.client.ForbiddenUserException;
import com.marklogic.client.ResourceNotFoundException;
import com.marklogic.client.ResourceNotResendableException;

/**
 * The ServerConfigurationManager reads and writes the configurable properties
 * of the server.
 */
public interface ServerConfigurationManager {
	/**
	 * Specifies the policy for updating documents in the database. 
	 */
	public enum UpdatePolicy {
		/**
		 * A document can be updated or deleted only if its version number
		 * is supplied and matches; a document can be created only if no
		 * version number is supplied and the document doesn't exist. This
		 * update policy requires optimistic locking.
		 */
		VERSION_REQUIRED,
		/**
		 * A document can be updated or deleted if its version number is
		 * not supplied or if the version number matches. This update policy
		 * provides for optional optimistic locking.
		 */
		VERSION_OPTIONAL,
		/**
		 * If a document exists, the supplied metadata is merged with the
		 * persisted document metadata. This update policy is the default
		 * (equivalent to content versions of Policy.NONE).
		 */
		MERGE_METADATA,
		/**
		 * The document is written without testing whether it exists. Only
		 * the supplied metadata is persisted. This update policy is slightly
		 * faster than other update policies.
		 */
		OVERWRITE_METADATA
	}
	/**
	 * Specifies the policy for use of a capability. 
	 */
	public enum Policy {
		/**
		 * Specifies that the capability must be used.
		 */
		REQUIRED,
		/**
		 * Specifies that the capability may be used.
		 */
		OPTIONAL,
		/**
		 * Specifies that the capability may not be used.
		 */
		NONE;
	}

	/**
	 * Reads the values of the properties from the server into this object.
	 */
	public void readConfiguration()
	throws FailedRequestException, ForbiddenUserException;
	/**
	 * Writes the values of the properties of this object to the server.
	 */
	public void writeConfiguration()
	throws FailedRequestException, ResourceNotFoundException, ResourceNotResendableException, ForbiddenUserException;

	/**
	 * Returns whether the server validates query options before storing them.
	 * @return	true if query options are validated
	 */
	public Boolean getQueryOptionValidation();
	/**
	 * Specifies whether the server validates query options before storing them.
	 * @param on	set to true to validate the query options
	 */
	public void setQueryOptionValidation(Boolean on);

	/**
	 * Returns whether the server validates queries before running them.
	 * @return true if queries are validated
	 */
	public Boolean getQueryValidation();
	
	/**
	 * Specifies whether the server validates queries before running them.
	 * @param on	set to true to validate queries
	 */
	public void setQueryValidation(Boolean on);

	/**
	 * Returns the name of the default transform for reading documents.
	 * @return	the default transform name
	 */
	public String getDefaultDocumentReadTransform();
	/**
	 * Specifies the name of the default transform for reading documents.
	 * The default transform is applied before any transform specified
	 * on the read request.
	 * @param name	the default transform name
	 */
	public void setDefaultDocumentReadTransform(String name);

	/**
	 * Returns whether the default transform for reading documents
	 * applies to all users or only users with the rest-reader role.
	 * @return	true if the default read transform applies to all users
	 */
	public Boolean getDefaultDocumentReadTransformAll();
	/**
	 * Specifies whether the default transform for reading documents
	 * applies to all users or only users with the rest-reader role.
	 * @param on	true to apply the default read transform to all users
	 */
	public void setDefaultDocumentReadTransformAll(Boolean on);

	/**
	 * Returns whether the server logs requests to the error log on the server.
	 * @return	true if the server logs requests
	 */
	public Boolean getServerRequestLogging();
	/**
	 * Specifies whether the server logs requests to the error log on the server.
	 * @param on	true to log requests on the server
	 */
	public void setServerRequestLogging(Boolean on);

	/**
	 * Returns the policy for updating or deleting documents in the database.
	 * @return	the policy controlling updates or deletes
	 */
	public UpdatePolicy getUpdatePolicy();
	/**
	 * Specifies the policy for updating or deleting documents in the database.
	 * @param policy	the policy controlling updates or deletes
	 */
	public void setUpdatePolicy(UpdatePolicy policy);

	/**
	 * Returns whether the server requires, allows, or ignores document versions
	 * on document read, write, and delete requests.
	 * @return	the policy as required, optional, or none
	 * @deprecated	use {@link #getUpdatePolicy()}, which provides more alternatives
	 */
	public Policy getContentVersionRequests();
	/**
	 * Specifies whether the server requires, allows, or ignores document versions
	 * on document read, write, and delete requests.
	 * @param policy	required, optional, or none for document versions
	 * @deprecated	use {@link #setUpdatePolicy(UpdatePolicy)}, which provides more alternatives
	 */
	public void setContentVersionRequests(Policy policy);

	/**
	 * Creates a manager for listing, reading, writing, and deleting query options.
	 * @return	a new manager for query options
	 */
	public QueryOptionsManager        newQueryOptionsManager();
	/**
	 * Creates a manager for listing, reading, writing, and deleting
	 * namespace bindings.
	 * @return	a new manager for namespace bindings
	 */
    public NamespacesManager newNamespacesManager();
	/**
	 * Creates a manager for listing, reading, writing, and deleting
	 * resource service extensions.
	 * @return	a new manager for resource service extensions
	 */
	public ResourceExtensionsManager  newResourceExtensionsManager();
	/**
	 * Creates a manager for listing, reading, writing, and deleting
	 * transform extensions.
	 * @return	a new manager for transform extensions
	 */
	public TransformExtensionsManager newTransformExtensionsManager();
	/**
	 * Creates a manager for writing and reading assets in the REST
	 * server's modules database.
	 * @return The extensions manager.
	 */
	public ExtensionLibrariesManager newExtensionLibrariesManager();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy