1 /*2 * EJTools, the Enterprise Java Tools3 *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 ;10 11 /**12 * @author Laurent Etiemble13 * @version $Revision: 1.3 $14 */15 public interface ProfileMetaData extends Serializable 16 {17 /**18 * Gets the fileName attribute of the ConnectionMetaData object19 *20 * @return The fileName value21 */22 public String getFileName();23 24 25 /**26 * Gets the key attribute of the ConnectionMetaData object27 *28 * @param index Description of the Parameter29 * @return The key value30 */31 public String getKey(int index);32 33 34 /**35 * Gets the keys attribute of the ConnectionMetaData object36 *37 * @return The keys value38 */39 public String [] getKeys();40 41 42 /**43 * Gets the prefix attribute of the ConnectionMetaData object44 *45 * @return The prefix value46 */47 public String getPrefix();48 }49