KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejtools > util > service > ProfileService


1 /*
2  * EJTools, the Enterprise Java Tools
3  *
4  * Distributable under LGPL license.
5  * See terms of license at www.gnu.org.
6  */

7 package org.ejtools.util.service;
8
9 import java.io.Serializable JavaDoc;
10
11 /**
12  * @author Laurent Etiemble
13  * @version $Revision: 1.4 $
14  */

15 public interface ProfileService extends Serializable JavaDoc
16 {
17    /**
18     * Gets the metaDatas attribute of the FactoryService object
19     *
20     * @return The metaDatas value
21     */

22    public Profile[] getProfiles();
23
24
25    /**
26     * Gets the metaData attribute of the FactoryService object
27     *
28     * @param index Description of the Parameter
29     * @return The metaData value
30     */

31    public Profile getProfile(int index);
32 }
33
Popular Tags