1 package com.bm.ejb3metadata.annotations.impl; 2 3 /** 4 * Acts as an implementation of @{@link javax.ejb.Stateless} annotation. 5 * 6 * @author Daniel Wiese 7 */ 8 public class JStateless extends JCommonBean { 9 10 /** 11 * Build an object which represents @{@link javax.ejb.Stateless} 12 * object. 13 */ 14 public JStateless() { 15 super(); 16 } 17 18 }