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

javax.jcr.ImportUUIDBehavior Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2009 Day Management AG, Switzerland. All rights reserved.
 */
package javax.jcr;

/**
 * The possible actions specified by the uuidBehavior parameter in
 * {@link Workspace#importXML}, {@link Session#importXML}, {@link
 * Workspace#getImportContentHandler} and {@link Session#getImportContentHandler}.
 */

public interface ImportUUIDBehavior {
    public static final int IMPORT_UUID_CREATE_NEW = 0;
    public static final int IMPORT_UUID_COLLISION_REMOVE_EXISTING = 1;
    public static final int IMPORT_UUID_COLLISION_REPLACE_EXISTING = 2;
    public static final int IMPORT_UUID_COLLISION_THROW = 3;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy