user.java
来自「《精通SOA:基于服务总线的Struts+EJB+Web Service整合应用」· Java 代码 · 共 113 行
JAVA
113 行
/* * Generated by XDoclet - Do not edit! */package com.sample.cmp.user;/** * Remote interface for User. * @generated * @lomboz generated */public interface User extends javax.ejb.EJBObject{ /** * <!-- begin-user-doc --> CMP Field userID Returns the userID * @return the userID <!-- end-user-doc --> <!-- begin-xdoclet-definition --> * @generated */ public java.lang.Integer getUserID( ) throws java.rmi.RemoteException; /** * <!-- begin-user-doc --> Sets the userID * @param java.lang.Integer the new userID value <!-- end-user-doc --> <!-- begin-xdoclet-definition --> * @generated */ public void setUserID( java.lang.Integer userID ) throws java.rmi.RemoteException; /** * <!-- begin-user-doc --> CMP Field loginName Returns the loginName * @return the loginName <!-- end-user-doc --> <!-- begin-xdoclet-definition --> * @generated */ public java.lang.String getLoginName( ) throws java.rmi.RemoteException; /** * <!-- begin-user-doc --> Sets the loginName * @param java.lang.String the new loginName value <!-- end-user-doc --> <!-- begin-xdoclet-definition --> * @generated */ public void setLoginName( java.lang.String loginName ) throws java.rmi.RemoteException; /** * <!-- begin-user-doc --> CMP Field name Returns the name * @return the name <!-- end-user-doc --> <!-- begin-xdoclet-definition --> * @generated */ public java.lang.String getName( ) throws java.rmi.RemoteException; /** * <!-- begin-user-doc --> Sets the name * @param java.lang.String the new name value <!-- end-user-doc --> <!-- begin-xdoclet-definition --> * @generated */ public void setName( java.lang.String name ) throws java.rmi.RemoteException; /** * <!-- begin-user-doc --> CMP Field password Returns the password * @return the password <!-- end-user-doc --> <!-- begin-xdoclet-definition --> * @generated */ public java.lang.String getPassword( ) throws java.rmi.RemoteException; /** * <!-- begin-user-doc --> Sets the password * @param java.lang.String the new password value <!-- end-user-doc --> <!-- begin-xdoclet-definition --> * @generated */ public void setPassword( java.lang.String password ) throws java.rmi.RemoteException; /** * <!-- begin-user-doc --> CMP Field phone Returns the phone * @return the phone <!-- end-user-doc --> <!-- begin-xdoclet-definition --> * @generated */ public java.lang.String getPhone( ) throws java.rmi.RemoteException; /** * <!-- begin-user-doc --> Sets the phone * @param java.lang.String the new phone value <!-- end-user-doc --> <!-- begin-xdoclet-definition --> * @generated */ public void setPhone( java.lang.String phone ) throws java.rmi.RemoteException; /** * <!-- begin-user-doc --> CMP Field email Returns the email * @return the email <!-- end-user-doc --> <!-- begin-xdoclet-definition --> * @generated */ public java.lang.String getEmail( ) throws java.rmi.RemoteException; /** * <!-- begin-user-doc --> Sets the email * @param java.lang.String the new email value <!-- end-user-doc --> <!-- begin-xdoclet-definition --> * @generated */ public void setEmail( java.lang.String email ) throws java.rmi.RemoteException; /** * <!-- begin-user-doc --> CMP Field createTime Returns the createTime * @return the createTime <!-- end-user-doc --> <!-- begin-xdoclet-definition --> * @generated */ public java.sql.Timestamp getCreateTime( ) throws java.rmi.RemoteException; /** * <!-- begin-user-doc --> Sets the createTime * @param java.sql.Timestamp the new createTime value <!-- end-user-doc --> <!-- begin-xdoclet-definition --> * @generated */ public void setCreateTime( java.sql.Timestamp createTime ) throws java.rmi.RemoteException;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?