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

📄 stakeholder.java

📁 《Java网络程序设计.rar》包括三个网络程序的源代码。
💻 JAVA
字号:
package org.impact.stars.organizationmd.stakeholder.ejb;import javax.ejb.EJBObject;import java.rmi.RemoteException;public interface Stakeholder extends EJBObject {  //public String getProcessData() throws RemoteException;   //public String getProcessId() throws RemoteException;  public String getUserId () throws RemoteException;  public String getPassword () throws RemoteException;  public String getUserName () throws RemoteException;  //public String getMaxUserid () throws RemoteException;     public void setGroupId(String newgroupid) throws RemoteException;   public String getGroupId () throws RemoteException;   public void setFirstName (String newfirstname) throws RemoteException;   public String getFirstName ()throws RemoteException;   public void setLastName (String newlastname) throws RemoteException;   public String getLastName () throws RemoteException;   public void setAddress1 (String newaddress1) throws RemoteException;   public String getAddress1() throws RemoteException;   public void setAddress2 (String newaddress2) throws RemoteException;   public String getAddress2() throws RemoteException;   public void setCity (String newcity) throws RemoteException;   public String getCity () throws RemoteException;   public void setState(String newstate) throws RemoteException;   public String getState() throws RemoteException;   public void setZipcode (String newzipcode) throws RemoteException;   public String getZipcode () throws RemoteException;   public void setCountry (String newcountry) throws RemoteException;   public String getCountry () throws RemoteException;   public void setRole (String newrole) throws RemoteException;   public String getRole () throws RemoteException;   public void setProjectId (String newprojectid) throws RemoteException;   public String getProjectId() throws RemoteException;   public void setProductId (String newproductid) throws RemoteException;   public String getProductId () throws RemoteException;   public void setOrganizationId (String neworganizationid) throws RemoteException;   public String getOrganizationId () throws RemoteException;   public void setUserId(String newuserid) throws RemoteException;    public void setUserName (String newusername) throws RemoteException;   public void setPassword (String newpassword) throws RemoteException;   //public String getUserId() throws RemoteException;     //public String getUserName() throws RemoteException;    //public String getPassword() throws RemoteException;    }

⌨️ 快捷键说明

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