KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > javabb > dao > entity > IBadWordDAO


1 package org.javabb.dao.entity;
2
3 import java.util.List JavaDoc;
4
5 import org.javabb.dao.DAOConstants;
6 import org.javabb.vo.BadWord;
7
8 /*
9  * Copyright 2004 JavaFree.org
10  *
11  * Licensed under the Apache License, Version 2.0 (the "License");
12  * you may not use this file except in compliance with the License.
13  * You may obtain a copy of the License at
14  *
15  * http://www.apache.org/licenses/LICENSE-2.0
16  *
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  */

23
24 /* $Id: IBadWordDAO.java,v 1.5.8.2 2006/04/17 17:47:26 daltoncamargo Exp $ */
25 /**
26  * @author Dalton Camargo - <a HREF="mailto:dalton@javabb.org">dalton@javabb.org </a> <br>
27  * @author Ronald Tetsuo Miura
28  */

29 public interface IBadWordDAO extends DAOConstants {
30
31     /**
32      * @return badwords
33      */

34     public List JavaDoc findAll();
35
36     /**
37      * @param id
38      * @return badword
39      */

40     public BadWord load(Long JavaDoc id);
41
42     /**
43      * @param badword
44      */

45     public void delete(BadWord badword);
46
47
48     /**
49      * @param badword
50      */

51     public void save(BadWord badword);
52 }
53
Popular Tags