1 package com.loribel.commons.abstraction;
2
3 /***
4 * Interface to keep realitions with ids [1-n].
5 */
6 public interface GB_LinkIdLongSet
7 extends
8 GB_LinkIdLong,
9 GB_IdLongOwnerSet
10 {
11 /***
12 * Sets the list of foreign keys.
13 */
14 void setFkLongIds(
15 long[] a_fkIds);
16 }