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