1
2
3
4 package org.andromda.cartridges.ejb.metafacades;
5
6 /***
7 *
8 *
9 * Metafacade interface to be used by AndroMDA cartridges.
10 */
11 public interface EJBPrimaryKeyFacade
12 extends org.andromda.cartridges.ejb.metafacades.EJBEntityAttributeFacade
13 {
14
15 /***
16 * Indicates the metafacade type (used for metafacade mappings).
17 *
18 * @return always <code>true</code>
19 */
20 public boolean isEJBPrimaryKeyFacadeMetaType();
21
22 /***
23 * <p>
24 * True/false on whether or not the primary key is complex.
25 * </p>
26 */
27 public boolean isComplex();
28
29 }