org.activiti.engine.impl.jobexecutor.TimerEventHandler Maven / Gradle / Ivy
The newest version!
package org.activiti.engine.impl.jobexecutor;
/* 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.
*/
import org.activiti.engine.delegate.Expression;
import org.activiti.engine.impl.util.json.JSONException;
import org.activiti.engine.impl.util.json.JSONObject;
public class TimerEventHandler {
public static final String PROPERTYNAME_TIMER_ACTIVITY_ID = "activityId";
public static final String PROPERTYNAME_END_DATE_EXPRESSION = "timerEndDate";
public static String createConfiguration(String id, Expression endDate) {
JSONObject cfgJson = new JSONObject();
cfgJson.put(PROPERTYNAME_TIMER_ACTIVITY_ID, id);
if (endDate!=null) {
cfgJson.put(PROPERTYNAME_END_DATE_EXPRESSION, endDate.getExpressionText());
}
return cfgJson.toString();
}
public String setActivityIdToConfiguration(String jobHandlerConfiguration, String activityId) {
try{
JSONObject cfgJson = new JSONObject(jobHandlerConfiguration);
cfgJson.put(PROPERTYNAME_TIMER_ACTIVITY_ID, activityId);
return cfgJson.toString();
}catch (JSONException ex){
return jobHandlerConfiguration;
}
}
public static String getActivityIdFromConfiguration(String jobHandlerConfiguration) {
try{
JSONObject cfgJson = new JSONObject(jobHandlerConfiguration);
return cfgJson.get(PROPERTYNAME_TIMER_ACTIVITY_ID).toString();
}catch (JSONException ex){
return jobHandlerConfiguration;
}
}
public String setEndDateToConfiguration(String jobHandlerConfiguration, String endDate) {
JSONObject cfgJson =null;
try{
cfgJson = new JSONObject(jobHandlerConfiguration);
}catch (JSONException ex){
//create the json config
cfgJson = new JSONObject();
cfgJson.put(PROPERTYNAME_TIMER_ACTIVITY_ID, jobHandlerConfiguration);
}
if (endDate!=null) {
cfgJson.put(PROPERTYNAME_END_DATE_EXPRESSION, endDate);
}
return cfgJson.toString();
}
public static String getEndDateFromConfiguration(String jobHandlerConfiguration) {
try{
JSONObject cfgJson = new JSONObject(jobHandlerConfiguration);
return cfgJson.get(PROPERTYNAME_END_DATE_EXPRESSION).toString();
}catch (JSONException ex){
return null;
}
}
}