01: package org.obe.client.api.repository;
02:
03: import java.io.Serializable;
04:
05: /**
06: * Describes a subscription to a workflow event.
07: *
08: * @author Adrian Price
09: */
10: public final class WorkflowEventSubscription implements Serializable {
11: private static final long serialVersionUID = 9082940684713832739L;
12: public String listenerType;
13: public int eventMask = Integer.MAX_VALUE;
14:
15: public String toString() {
16: return "WorkflowEventSubscription[listenerType=" + listenerType
17: + ", eventMask=" + eventMask + ']';
18: }
19: }
|