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

📄 ejbdestination.java

📁 快速FLEX+J2EE开发工具。具体自动生成功能代码功能。
💻 JAVA
字号:
/*
 * Copyright 2008 [CompanyName], Inc. All rights reserved.
 * Website: http://www.pomer.org.cn/
 */
package cn.org.pomer.flex.remoting.services;

/**
 * 
 * 描述ejb为远程对象
 * 
 * @author Linlin Yu
 * 
 */
public class EJBDestination {
	private String romoteObjectID;
	private String serverUrl;
	private String ejbName;

	public EJBDestination(String romoteObjectID, String serverUrl,
			String ejbName) {
		super();
		this.romoteObjectID = romoteObjectID;
		this.serverUrl = serverUrl;
		this.ejbName = ejbName;
	}

	public EJBDestination(String romoteObjectID, String ejbName) {
		super();
		this.romoteObjectID = romoteObjectID;
		this.serverUrl = "jnp://localhost:1099";
		this.ejbName = ejbName;
	}

	public String getRomoteObjectID() {
		return romoteObjectID;
	}

	public void setRomoteObjectID(String romoteObjectID) {
		this.romoteObjectID = romoteObjectID;
	}

	public String getServerUrl() {
		return serverUrl;
	}

	public void setServerUrl(String serverUrl) {
		this.serverUrl = serverUrl;
	}

	public String getEjbName() {
		return ejbName;
	}

	public void setEjbName(String ejbName) {
		this.ejbName = ejbName;
	}

}

⌨️ 快捷键说明

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