1 package com.loribel.commons.abstraction; 2 3 import com.loribel.commons.util.*; 4 5 /*** 6 * Abstraction of a Object with id. 7 * 8 * @see GB_IdOwnerTools 9 * 10 * @author Gregory Borelli 11 */ 12 public interface GB_IdOwner 13 { 14 String getId(); 15 }