RulePoint
- RulePoint 6.1.2
- All Products
/** * Annotation used to mark and provide metadata for a service * * */ @Target(value=ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) public @interface Service { // Class Metadata. Used to populate the BeanDescriptor String name(); String configClassName() default ""; String displayName(); String description(); String connectionTypeName() default ""; // The type of the service: SOURCE/CONNECTION/RESPONDER/ANALYTIC/MARSHALLER ServiceType serviceType(); }