namespace Sockeye.Biz
{
///
/// All Sockeye Job types, used by OpsJob and biz objects for long running processes
///
public enum JobType : int
{
NotSet = 0,
TestJob = 1,//test job for unit and OPS admin testing
CoreJobSweeper = 2,
SeedTestData = 4,
BatchCoreObjectOperation = 5,
Backup = 6,
AttachmentMaintenance = 7,
RenderReport=8,
ExportData=9
}
///
/// SubTypes for jobs that have further distinctions
///
public enum JobSubType : int
{
NotSet = 0,
TagAdd = 1,
TagAddAny = 2,
TagRemove = 3,
TagRemoveAny = 4,
TagReplace = 5,
TagReplaceAny = 6,
Delete = 7
}
}//eons