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