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