📄 booksession.java
字号:
/* * Generated by XDoclet - Do not edit! */package de.laliluna.tutorial.library.session.interfaces;/** * Remote interface for BookSession. * @xdoclet-generated at ${TODAY} * @copyright The XDoclet Team * @author XDoclet * @version ${version} */public interface BookSession extends javax.ejb.EJBObject{ /** * This method return all books as a collection Diese Methode liest alle B點her aus und gibt diese als Collection zur點k */ public de.laliluna.tutorial.library.view.BookView[] getAllBooks( ) throws java.rmi.RemoteException; /** * This methode get a book by primary key Diese Methode liest ein Buch anhand seines Prim鋜schl黶sels aus. */ public de.laliluna.tutorial.library.view.BookView getBookByPrimaryKey( java.lang.Integer primaryKey ) throws java.rmi.RemoteException; /** * This methode return a book from a user by primary key Diese Methode gibt ein ausgeliehenes Buch eines Benutzers zur點k. */ public void returnBook( java.lang.Integer primaryKey ) throws java.rmi.RemoteException; /** * This methode borrow a book for a user Diese Methode verleiht ein Buch an einen Benutzer */ public void borrowBook( java.lang.Integer primaryKey,java.lang.Integer userPrimaryKey ) throws java.rmi.RemoteException; /** * This method removes a book from the database Diese Methode entfernt ein Buch aus der Datenbank */ public void removeBookByPrimaryKey( java.lang.Integer primaryKey ) throws java.rmi.RemoteException; /** * This method save the value object of the book Diese Methode speichert das Value Objekt des Buches */ public void saveBook( de.laliluna.tutorial.library.entity.interfaces.BookValue bookValue ) throws java.rmi.RemoteException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -