1 package br.com.ibnetwork.guara.modules; 2 3 import br.com.ibnetwork.guara.rundata.Outcome; 4 import br.com.ibnetwork.guara.rundata.RunData; 5 import br.com.ibnetwork.guara.view.Context; 6 7 public abstract class ModuleSupport 8 implements Module 9 { 10 protected String name; 11 12 public Outcome doPerform(RunData data, Context context) 13 throws Exception 14 { 15 return Outcome.UNKNOWN; 16 } 17 18 public String getName() 19 { 20 return name; 21 } 22 23 public void setName(String name) 24 { 25 this.name = name; 26 } 27 }