Exemple #1
0
        public static void dbCreateHistoryLevel(CommandContext commandContext)
        {
            ProcessEngineConfigurationImpl processEngineConfiguration = Context.ProcessEngineConfiguration;
            HistoryLevel   configuredHistoryLevel = processEngineConfiguration.HistoryLevel;
            PropertyEntity property = new PropertyEntity("historyLevel", Convert.ToString(configuredHistoryLevel.Id));

            commandContext.getSession(typeof(DbEntityManager)).insert(property);
            LOG.creatingHistoryLevelPropertyInDatabase(configuredHistoryLevel);
        }