01: package com.bm.introspectors;
02:
03: /**
04: * Marker class :Introspector for jboss service.
05: *
06: * @author Daniel Wiese
07: * @param <T> -
08: * teh type of the service
09: * @since 12.11.2005
10: */
11: public class JbossServiceIntrospector<T> extends
12: SessionBeanIntrospector<T> {
13:
14: /**
15: * Constructor.
16: *
17: * @param toInspect -
18: * the sesion bean to inspect
19: */
20: public JbossServiceIntrospector(Class<? extends T> toInspect) {
21: super(toInspect);
22: }
23:
24: }
|