A bank clien/server example implemented by RMI, to perform functions of creatAccount and accessAccou

源代码在线查看: details.java

软件大小: 4 K
上传用户: teasler111
关键词: creatAccount accessAccou implemented functions
下载地址: 免注册下载 普通下载 VIP

相关代码

				import java.io.Serializable;
				
				/**
				 * 
				 */
				
				/**
				 * @author Kee
				 *
				 */
				public class Details implements Serializable {
				
					private String name = null;
					private int pin = 0;
					
					public Details(){
					}
					
					public Details(int pin, String name){
						this.pin = pin;
						this.name = name;
					}
					
					public void setPin(int pin){
						this.pin = pin;
					}
					
					public int getPin(){
						return pin;
					}
					
					public void setName(String name){
						this.name = name;
					}
					
					public String getName(){
						return name;
					}
				
				}
							

相关资源