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

📄 customer.java

📁 EJB实践的服务器是用SUN的服务器
💻 JAVA
字号:
package examples;

import javax.ejb.*;

/**
 * These are the business logic methods exposed publicly by CustomerBean.
 *
 * This interface is what local clients operate on when they interact with
 * beans. The container vendor will implement this interface; the
 * implementation object is called the EJB Local Object, which delegates
 * invocations to the actual bean.
 */
public interface Customer extends EJBLocalObject {

	
    /**
     * Returns the Id of the customer.
     */
	public String getCustomerID();
    
    /**
     * Returns the name of the customer.
     */
	public String getName();
    
    /**
     * Sets the name of the customer.
     */
	public void setName(String name);
     
    /**
     * Returns the password of the customer.
     */
	public String getPassword();
    
    /**
     * Sets the password of the customer.
     */
	public void setPassword(String password);
    
    /**
     * Returns the address of the customer.
     */
	public String getAddress();
   
    /**
     * Sets the address of the customer.
     */   
	public void setAddress(String address);
}

⌨️ 快捷键说明

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