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