06-05-2012 04:20 AM
06-06-2012 09:57 AM
06-06-2012 05:06 PM
public void insert(PersistentObject persistentObject) {
checkHistoryEnabled();
super.insert(persistentObject);
}
public class AbstractHistoricManager extends AbstractManager {
protected int historyLevel = Context.getProcessEngineConfiguration().getHistoryLevel();
protected boolean isHistoryEnabled = historyLevel > ProcessEngineConfigurationImpl.HISTORYLEVEL_NONE;
protected void checkHistoryEnabled() {
if (!isHistoryEnabled) {
throw new ActivitiException("history is not enabled");
}
}
public boolean isHistoryEnabled() {
return isHistoryEnabled;
}
}
06-07-2012 04:19 AM
12-02-2013 11:39 PM
12-04-2013 10:13 AM
12-05-2013 02:32 AM
12-05-2013 03:48 AM
12-05-2013 07:32 PM
12-05-2013 07:44 PM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.