Skip to content

Commit

Permalink
[DROOLS-2290] make TimerJobFactoryType to implement Serializable
Browse files Browse the repository at this point in the history
  • Loading branch information
mariofusco committed Feb 2, 2018
1 parent 1fb501f commit 8435e42
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -15,6 +15,7 @@

package org.drools.core;

import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;

Expand All @@ -23,7 +24,7 @@
import org.drools.core.time.impl.TimerJobFactoryManager;
import org.drools.core.time.impl.TrackableTimeJobFactoryManager;

public abstract class TimerJobFactoryType {
public abstract class TimerJobFactoryType implements Serializable {

public static final TimerJobFactoryType DEFAULT = new TimerJobFactoryType("default") {
public TimerJobFactoryManager createInstance() {
Expand Down

0 comments on commit 8435e42

Please sign in to comment.