KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > tapestry > vlib > ejb > IBook


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

15 package org.apache.tapestry.vlib.ejb;
16
17 import java.rmi.RemoteException JavaDoc;
18 import java.sql.Timestamp JavaDoc;
19
20 /**
21  * Remote interface for the Book entity bean.
22  *
23  * @version $Id: IBook.java,v 1.4 2004/02/19 17:37:39 hlship Exp $
24  * @author Howard Lewis Ship
25  *
26  **/

27
28 public interface IBook extends IEntityBean
29 {
30     public void setAuthor(String JavaDoc value) throws RemoteException JavaDoc;
31
32     public String JavaDoc getAuthor() throws RemoteException JavaDoc;
33
34     public void setTitle(String JavaDoc value) throws RemoteException JavaDoc;
35
36     public String JavaDoc getTitle() throws RemoteException JavaDoc;
37
38     public void setDescription(String JavaDoc value) throws RemoteException JavaDoc;
39
40     public String JavaDoc getDescription() throws RemoteException JavaDoc;
41
42     public void setISBN(String JavaDoc value) throws RemoteException JavaDoc;
43
44     public String JavaDoc getISBN() throws RemoteException JavaDoc;
45
46     public void setOwnerId(Integer JavaDoc value) throws RemoteException JavaDoc;
47
48     public Integer JavaDoc getOwnerId() throws RemoteException JavaDoc;
49
50     public void setHolderId(Integer JavaDoc value) throws RemoteException JavaDoc;
51
52     public Integer JavaDoc getHolderId() throws RemoteException JavaDoc;
53
54     public void setPublisherId(Integer JavaDoc value) throws RemoteException JavaDoc;
55     
56     public Integer JavaDoc getPublisherId() throws RemoteException JavaDoc;
57
58     public boolean getHidden() throws RemoteException JavaDoc;
59
60     public void setHidden(boolean value) throws RemoteException JavaDoc;
61
62     public boolean getLendable() throws RemoteException JavaDoc;
63
64     public void setLendable(boolean value) throws RemoteException JavaDoc;
65
66     public Timestamp JavaDoc getDateAdded() throws RemoteException JavaDoc;
67
68     public void setDateAdded(Timestamp JavaDoc value) throws RemoteException JavaDoc;
69 }
Popular Tags