blob: a0a472f87c01de485e25d20b2ab3000e4ef68b10 [file] [log] [blame]
package org.eclipse.epp.installer.core;
/**
* Set of confirmation action constants.
*/
public interface IActionConstants {
/**
* File overwrite confirmation.
*/
static final int OVERWRITE_FILE = 1000;
/**
* Directory overwrite confirmation.
*/
static final int OVERWRITE_DIRECTORY = 1001;
/**
* System reboot confirmation.
*/
static final int REBOOT_SYSTEM = 1002;
/**
* Ignore select IProductInstallation no permission confirmation.
*/
static final int SELECT_PRODUCT_INSTALLATION_NO_PERMISSION = 1003;
/**
* File create confirmation.
*/
static final int CREATE_FILE = 1004;
/**
* Directory create confirmation.
*/
static final int CREATE_DIRECTORY = 1005;
}