customerentity.java.svn-base

来自「rmi server web service for a stock track」· SVN-BASE 代码 · 共 54 行

SVN-BASE
54
字号
package ase.assignment.sts.beans;

import java.io.Serializable;
/**
 * @author Lionel
 * 
 */
public class CustomerEntity implements Serializable{
	private String name;
	private String password;
	private String email;
	
	public CustomerEntity(String name) {
		this.name = name;
	}

	/**
	 * @return the name
	 */
	public String getName() {
		return name;
	}

	/**
	 * @param password
	 *            the password to set
	 */
	public void setPassword(String password) {
		this.password = password;
	}

	/**
	 * @return the password
	 */
	public String getPassword() {
		return password;
	}

	/**
	 * @param email
	 *            the email to set
	 */
	public void setEmail(String email) {
		this.email = email;
	}

	/**
	 * @return the email
	 */
	public String getEmail() {
		return email == null ? "" : email;
	}
}

⌨️ 快捷键说明

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