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.4 $14 */15 public interface ProfileService extends Serializable 16 {17 /**18 * Gets the metaDatas attribute of the FactoryService object19 *20 * @return The metaDatas value21 */22 public Profile[] getProfiles();23 24 25 /**26 * Gets the metaData attribute of the FactoryService object27 *28 * @param index Description of the Parameter29 * @return The metaData value30 */31 public Profile getProfile(int index);32 }33