1 package com.loribel.commons.abstraction;
2
3 /***
4 * Interface for action report.
5 *
6 * @author Grégory Borelli
7 */
8 public interface GB_ActionReport
9 extends
10 GB_StateOwner
11 {
12 String getMessage();
13
14 String getDetails();
15
16 //Object getUserObject();
17 }