blob: 0e710c76df7a1631d6335c548ac24b823c0ed06d [file] [log] [blame]
/**
*
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*
*/
package org.eclipse.osbp.vaaclipse.addons.softwarefactory.bpmImpl;
import org.jbpm.task.event.entity.TaskEventType;
import org.jbpm.task.event.entity.TaskUserEvent;
import org.eclipse.osbp.bpm.api.IBPMTaskEventNotification;
public class PostponeNotification {
private IBPMTaskEventNotification notification;
private TaskEventType type;
private TaskUserEvent event;
public PostponeNotification(IBPMTaskEventNotification notification, TaskEventType type, TaskUserEvent event) {
this.notification = notification;
this.type = type;
this.event = event;
}
public IBPMTaskEventNotification getNotification() {
return notification;
}
public void setNotification(IBPMTaskEventNotification notification) {
this.notification = notification;
}
public TaskEventType getType() {
return type;
}
public void setType(TaskEventType type) {
this.type = type;
}
public TaskUserEvent getEvent() {
return event;
}
public void setEvent(TaskUserEvent event) {
this.event = event;
}
}