View Javadoc

1   package com.loribel.commons.business.abstraction;
2   
3   /***
4    * Abstraction of a data.
5    *
6    * @author Grégory Borelli
7    */
8   public interface GB_BOData
9   {
10      String boName();
11  
12      void updateFromBO(
13              GB_SimpleBusinessObject a_bo);
14  
15      void updateBO(
16              GB_SimpleBusinessObject a_bo);
17  }