1 /***************************************************************************2 * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *3 * Please look at license.txt in info directory for more license detail. *4 **************************************************************************/5 package org.exoplatform.services.config;6 7 /**8 * @author Tuan Nguyen (tuan08@users.sourceforge.net)9 * @since Dec 5, 200410 * @version $Id$11 */12 public interface ConfigurationService {13 public Object getServiceConfiguration(Class serviceType) throws Exception ;14 public void saveServiceConfiguration(Class serviceType, Object config) throws Exception ;15 public void removeServiceConfiguration(Class serviceType) throws Exception ;16 }17