1 package com.loribel.commons.abstraction;
2
3 /***
4 * Interface for action report.
5 *
6 * @author Grégory Borelli
7 */
8 public interface GB_ActionReportSet
9 extends
10 GB_ActionReport,
11 GB_StateOwnerSet
12 {
13 void setMessage(
14 String a_msg);
15
16 void setDetails(
17 String a_details);
18
19 void setUserObject(
20 Object a_userObject);
21 }