Coverage Report - org.kuali.rice.krms.framework.engine.result.BasicResult
 
Classes in this File Line Coverage Branch Coverage Complexity
BasicResult
100%
22/22
100%
2/2
1.143
 
 1  
 package org.kuali.rice.krms.framework.engine.result;
 2  
 
 3  
 import java.text.SimpleDateFormat;
 4  
 import java.util.Date;
 5  
 import java.util.EventObject;
 6  
 
 7  
 import org.kuali.rice.krms.api.engine.ExecutionEnvironment;
 8  
 import org.kuali.rice.krms.api.engine.ResultEvent;
 9  
 
 10  
 public class BasicResult extends EventObject implements ResultEvent{
 11  
         private static final long serialVersionUID = -4124200802034785921L;
 12  
         
 13  
         protected String type;
 14  
         protected Date timestamp;
 15  
         protected ExecutionEnvironment environment;
 16  74
         protected Boolean result = null;
 17  
 
 18  
         public BasicResult(String eventType, Object source, ExecutionEnvironment environment, boolean result) {
 19  73
                 this(eventType, source, environment);
 20  73
                 this.result = new Boolean(result);
 21  73
         }
 22  
 
 23  
         public BasicResult(String eventType, Object source, ExecutionEnvironment environment) {
 24  74
                 super(source);
 25  74
                 this.type = eventType;
 26  74
                 this.timestamp = new Date(); 
 27  74
                 this.environment = environment;
 28  74
         }
 29  
 
 30  
         @Override
 31  
         public String getType() {
 32  954
                 return type;
 33  
         }
 34  
 
 35  
         @Override
 36  
         public Date getTimestamp() {
 37  954
                 return new Date(timestamp.getTime()); // defensive copy
 38  
         }
 39  
         
 40  
         @Override
 41  
         public ExecutionEnvironment getEnvironment(){
 42  1028
                 return environment;
 43  
         }
 44  
         
 45  
         @Override
 46  
         public Boolean getResult(){
 47  1899
                 return result;
 48  
         }
 49  
 
 50  
         public String toString(){
 51  954
                 StringBuffer sb = new StringBuffer();
 52  954
                 SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH.mm.ss.SSS");
 53  954
                 sb.append(df.format(this.getTimestamp()));
 54  954
                 sb.append(" EventType: "+ getType());
 55  954
                 sb.append(" ( "+ this.getSource().toString());
 56  954
                 if (this.getResult() != null){
 57  945
                         sb.append(" evaluated to: "+ this.getResult().toString());
 58  
                 }
 59  954
                 sb.append(" )");
 60  954
                 return sb.toString();
 61  
         }
 62  
 
 63  
 }