KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > johnmammen > betterpetshop > service > dao > ICustomerDAO


1 /*
2  * Copyright 2004 John S. Mammen
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5  * use this file except in compliance with the License. You may obtain a copy of
6  * the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13  * License for the specific language governing permissions and limitations under
14  * the License.
15  */

16 package johnmammen.betterpetshop.service.dao;
17
18 import org.apache.tapestry.pets.domain.model.ICustomer;
19 import org.apache.tapestry.pets.domain.model.IUserLogin;
20
21 /**
22  * @author admin
23  *
24  */

25 public interface ICustomerDAO {
26
27     /**
28      * @param username
29      * @param password
30      * @return
31      */

32     public abstract ICustomer login(String JavaDoc username, String JavaDoc password);
33
34     /**
35      * @param userID
36      * @return
37      */

38     public abstract ICustomer accountInfo(String JavaDoc userID);
39
40     /**
41      * @param newcustomer
42      * @param userLogin
43      */

44     public boolean add(ICustomer newcustomer, IUserLogin userLogin);
45
46     /**
47      * @param customer
48      */

49     public abstract void updateAccount(ICustomer customer);
50
51 }
Popular Tags