/* * Copyright (C) 2003-2009 eXo Platform SAS. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License * as published by the Free Software Foundation; either version 3 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see<http://www.gnu.org/licenses/>. */ package org.exoplatform.ks.bbcode.api; import java.util.List; import org.exoplatform.ks.bbcode.spi.BBCodePlugin; /** * Main Facade for all BBCode related operations * @author <a href="mailto:patrice.lamarque@exoplatform.com">Patrice Lamarque</a> * @version $Revision$ */ public interface BBCodeService { /** * Register a new BBCode plugin * @param plugin * @throws Exception */ void registerBBCodePlugin(BBCodePlugin plugin) throws Exception; /** * Save a list of BBCodes * @param bbcodes List of BBCodes to save * @throws Exception */ public void save(List<BBCode> bbcodes) throws Exception; /** * Retrieve all BBCodes * @return List of all registered BBCodes * @throws Exception */ public List<BBCode> getAll() throws Exception; /** * Retrieve BBCode IDs that are active * @return List of BBCOde IDs * @throws Exception */ public List<String> getActive() throws Exception; /** * Load a specific BBCode * @param bbcodeId ID of the BBCode * @return * @throws Exception */ public BBCode findById(String bbcodeId) throws Exception; /** * Delete an existing BBCode * @param bbcodeId * @throws Exception */ public void delete(String bbcodeId) throws Exception; }