KickJava   Java API By Example, From Geeks To Geeks.

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


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.3 $
14  */

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

22    public String JavaDoc getFileName();
23
24
25    /**
26     * Gets the key attribute of the ConnectionMetaData object
27     *
28     * @param index Description of the Parameter
29     * @return The key value
30     */

31    public String JavaDoc getKey(int index);
32
33
34    /**
35     * Gets the keys attribute of the ConnectionMetaData object
36     *
37     * @return The keys value
38     */

39    public String JavaDoc[] getKeys();
40
41
42    /**
43     * Gets the prefix attribute of the ConnectionMetaData object
44     *
45     * @return The prefix value
46     */

47    public String JavaDoc getPrefix();
48 }
49
Popular Tags