?? ejbdestination.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 + -