1 package com.loribel.commons.abstraction; 2 3 import java.util.*; 4 5 /*** 6 * Abstraction Extension Owner. 7 * 8 * @author Grégory Borelli 9 */ 10 public interface GB_ExtensionsOwner 11 { 12 /*** 13 * Returns a map of extensions. 14 * Generaly the map keys are String. 15 * The type of value depends of your implementation. 16 */ 17 Map getExtensions(); 18 19 }