1 package com.loribel.commons.abstraction; 2 3 /*** 4 * Interface to keep realitions with ids [1-n]. 5 */ 6 public interface GB_LinkId 7 extends 8 GB_IdOwner 9 { 10 /*** 11 * Returns the list of foreign keys. 12 */ 13 String[] getFkIds(); 14 }