📄 ejbdata.java
字号:
/**
* $Log: EJBData.java,v $
* Revision 1.2 2003/02/12 16:54:18 mwulff
* no deals with JndiProperties instead of LookupHandler
*
* Revision 1.1 2003/01/16 13:11:41 mwulff
* initial version
*
* Revision 1.1 2002/11/22 16:41:50 mwulff
* moved
*
* Revision 1.1 2002/11/15 18:20:56 mwulff
* initial version
*
*/
package de.fhm.jkf.comm.sv;
/**
* @author marten wulff
*/
public class EJBData {
private String jndiName = null;
private JndiProperties jndiProperties = null;
private String homeInterface = null;
/**
* Constructor for EJBData.
*/
public EJBData() {
super();
jndiProperties = new JndiProperties();
}
/**
* Returns the homeInterface.
* @return String
*/
public String getHomeInterface() {
return homeInterface;
}
/**
* Returns the jndiProperties.
* @return JndiProperties
*/
public JndiProperties getJndiProperties() {
return jndiProperties;
}
/**
* Sets the homeInterface.
* @param homeInterface The homeInterface to set
*/
public void setHomeInterface(String homeInterface) {
this.homeInterface = homeInterface;
}
/**
* Sets the jndiProperties.
* @param jndiProperties The jndiProperties to set
*/
public void setJndiProperties(JndiProperties props) {
this.jndiProperties = props;
}
/**
* Returns the jndiName.
* @return String
*/
public String getJndiName() {
return jndiName;
}
/**
* Sets the jndiName.
* @param jndiName The jndiName to set
*/
public void setJndiName(String jndiName) {
this.jndiName = jndiName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -