org.modeshape.jcr.api.RestoreOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of modeshape-jcr-api Show documentation
Show all versions of modeshape-jcr-api Show documentation
ModeShape JCR Repository API
/*
* ModeShape (http://www.modeshape.org)
*
* 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 org.modeshape.jcr.api;
/**
* Class which allows a customization of the restore process
*
* @author Horia Chiorean ([email protected])
*/
public abstract class RestoreOptions {
/**
* The number of documents written in one unit (i.e. transaction) from the backup files into the persistent storage.
*/
public static final int DEFAULT_BATCH_SIZE = 1000;
/**
* The default options used during restore, if no explicit ones are given.
*/
public static final RestoreOptions DEFAULT = new RestoreOptions(){};
/**
* Whether a full reindexing should be performed or not after restoring the content.
*
* @return {@code true} if a full reindexing should be performed; defaults to {@code true}
*/
public boolean reindexContentOnFinish() {
return true;
}
/**
* Return the number of documents that are written to the persistent store in one unit of work (transaction)
*
*
* This is a setting that can be used to influence the memory and throughout of the restore process.
*
*
* @return the number of documents; defaults to {@value #DEFAULT_BATCH_SIZE}
* @since 5.0
*/
public int batchSize() {
return DEFAULT_BATCH_SIZE;
}
/**
* Whether binaries should be restored or not. ModeShape uses references between documents and binary values, so
* depending on the context it may not always be desired for binary values to be restored.
*
* @return {@code true} if binary values should be included; defaults to {@code true}
*/
public boolean includeBinaries() {
return true;
}
@Override
public String toString() {
StringBuilder builder = new StringBuilder("[restore_options: ");
builder.append("batch size=").append(batchSize());
builder.append(", include binaries=").append(includeBinaries());
builder.append(", reindex content on finish=").append(reindexContentOnFinish());
builder.append("]");
return builder.toString();
}
}