<?xml version="1.0"?>

<!DOCTYPE ejb-jar PUBLIC '-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN' 'http://java.sun.com/dtd/ejb-jar_2_0.dtd'>

<ejb-jar>

	<enterprise-beans>
		<session>
			<ejb-name>HelloEJB</ejb-name>
			<home>hello.HelloHome</home>
			<remote>hello.Hello</remote>
			<ejb-class>hello.HelloBean</ejb-class>
			<session-type>Stateless</session-type>
			<transaction-type>Container</transaction-type>
 		</session>
	</enterprise-beans>

</ejb-jar>

