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 6 /**7 * Created by The eXo Platform SARL8 * Author : Mestrallet Benjamin9 * benjmestrallet@users.sourceforge.net10 * Date: Jul 27, 200311 * Time: 11:23:49 PM12 */13 package org.exoplatform.services.portletcontainer.test.portlet;14 15 import javax.portlet.PreferencesValidator;16 import javax.portlet.PortletPreferences;17 import javax.portlet.ValidatorException;18 19 public class SimplePreferencesValidator implements PreferencesValidator {20 21 public void validate(PortletPreferences portletPreferences)22 throws ValidatorException {23 24 }25 }26