KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > myvietnam > mvncore > interceptor > sample > NoPublicMailInterceptor


1 /*
2  * $Header: /cvsroot/mvnforum/myvietnam/src/net/myvietnam/mvncore/interceptor/sample/NoPublicMailInterceptor.java,v 1.4 2006/04/15 02:59:19 minhnn Exp $
3  * $Author: minhnn $
4  * $Revision: 1.4 $
5  * $Date: 2006/04/15 02:59:19 $
6  *
7  * ====================================================================
8  *
9  * Copyright (C) 2002-2006 by MyVietnam.net
10  *
11  * All copyright notices regarding MyVietnam and MyVietnam CoreLib
12  * MUST remain intact in the scripts and source code.
13  *
14  * This library is free software; you can redistribute it and/or
15  * modify it under the terms of the GNU Lesser General Public
16  * License as published by the Free Software Foundation; either
17  * version 2.1 of the License, or (at your option) any later version.
18  *
19  * This library is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22  * Lesser General Public License for more details.
23  *
24  * You should have received a copy of the GNU Lesser General Public
25  * License along with this library; if not, write to the Free Software
26  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27  *
28  * Correspondence and Marketing Questions can be sent to:
29  * info at MyVietnam net
30  *
31  * @author: Minh Nguyen
32  */

33 package net.myvietnam.mvncore.interceptor.sample;
34
35 import net.myvietnam.mvncore.interceptor.MailInterceptor;
36 import net.myvietnam.mvncore.exception.InterceptorException;
37
38 /**
39  * This sample MailInterceptor show how to check that user cannot
40  * use public email such as @hotmail.com to use the system. This class
41  * show simple method for checking but for real case you should build
42  * a list of not-allowed domain and use other data struture for efficiency
43  * You can based on this sample to write your own MailInterceptor.
44  */

45 public class NoPublicMailInterceptor implements MailInterceptor {
46
47     public NoPublicMailInterceptor() {
48     }
49
50     /**
51      * In this sample interceptor, it check that emails in public
52      * domain will not be accepted
53      *
54      * @param email String email to be validated
55      * @throws InterceptorException
56      */

57     public void validateEmail(String JavaDoc email) throws InterceptorException {
58         email = email.toLowerCase();
59         if (email.endsWith("@yahoo.com") ||
60             email.endsWith("@hotmail.com") ||
61             email.endsWith("@aol.com") ) {
62             throw new InterceptorException("Cannot accept email that is in public domain. Your email = " + email);
63         }
64     }
65 }
66
Popular Tags