KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > portletcontainer > test > portlet > SimplePreferencesValidator


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 SARL
8  * Author : Mestrallet Benjamin
9  * benjmestrallet@users.sourceforge.net
10  * Date: Jul 27, 2003
11  * Time: 11:23:49 PM
12  */

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
Popular Tags