01: package com.bm.ejb3metadata.annotations.impl;
02:
03: /**
04: * Acts as an implementation of @{@link javax.ejb.Stateful} annotation.
05: *
06: * @author Daniel Wiese
07: */
08: public class JStateful extends JCommonBean {
09:
10: /**
11: * Build an object which represents @{@link javax.ejb.Stateful} object.
12: */
13: public JStateful() {
14: super();
15: }
16:
17: }
|