ejbdata.java

来自「主要是对串口驱动的的一些控制源码!!! 在下载javacomm20-win32」· Java 代码 · 共 84 行

JAVA
84
字号
/**
 * $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 + =
减小字号Ctrl + -
显示快捷键?