1 package com.loribel.commons.business.abstraction;
2
3 import com.loribel.commons.business.impl.bo.*;
4
5 /***
6 * Pool of of BusinessObject.
7 */
8 public interface GB_BOMetaDataPool
9 {
10 String[] getBOMetaDataIds();
11
12 String[] getBOPropertyIds();
13
14 GB_BOMetaDataBO getBOMetaData(
15 String a_id);
16
17 GB_BOPropertyBO getBOProperty(
18 String a_id,
19 boolean a_useRefId);
20
21 }