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

cdc.impex.templates.ImportAction Maven / Gradle / Ivy

The newest version!
package cdc.impex.templates;

/**
 * Enumeration of possible actions for each row.
 *
 * @author Damien Carbonne
 */
public enum ImportAction {
    /**
     * The row describes the creation of something.
     * 

* It must contain all identification and read-only-attributes. */ CREATE, /** * The row describes the update of something. *

* It must contain all identification attributes and those that must be changed. */ UPDATE, /** * The row describes the removal of something. *

* It must contain identification attributes. */ DELETE, /** * The row must be ignored. *

* Note: an empty action is also ignored. */ IGNORE }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy