/* * Copyright (c) 2010-2014 Evolveum * * 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 com.evolveum.midpoint.task.api; /** * @author mederly */ public class TaskCategory { public static final String DEMO = "Demo"; public static final String IMPORTING_ACCOUNTS = "ImportingAccounts"; public static final String IMPORT_FROM_FILE = "ImportFromFile"; public static final String LIVE_SYNCHRONIZATION = "LiveSynchronization"; public static final String BULK_ACTIONS = "BulkActions"; public static final String MOCK = "Mock"; public static final String RECOMPUTATION = "Recomputation"; public static final String EXECUTE_CHANGES = "ExecuteChanges"; public static final String RECONCILIATION = "Reconciliation"; public static final String WORKFLOW = "Workflow"; public static final String SYSTEM = "System"; public static final String REPORT = "Report"; public static final String CUSTOM = "Custom"; public static final String ACCESS_CERTIFICATION = "AccessCertification"; public static final String UTIL = "Utility"; }