⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 greeter.java

📁 一个java写的加密算法
💻 JAVA
字号:
/* * Copyright 2004-2005 Sun Microsystems, Inc.  All rights reserved. * Use is subject to license terms. */package samples.logging.simple.ejb;/** * Remote interface for the GreeterEJB. The remote interface defines all possible * business methods for the bean. These are the methods going tobe invoked remotely * by clients, once they have a reference to the remote interface. * * Clients (GreeterServlet, in this case), generally take the help of JNDI to lookup * the bean's home interface (GreeterHome, in this case) and then use the home interface * to obtain references to the bean's remote interface (Greeter, in this case). * */public interface Greeter extends javax.ejb.EJBObject {    /**     * Returns a greeting.     * @return returns a greeting as a string.     * @exception throws a RemoteException.     *     */    public String getGreeting() throws java.rmi.RemoteException;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -