samples/componentinjection/anagram-modular/src-app-spring-scan/org/apidesign/anagram/app/springscan/SimpleScramblerAnnotated.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 10:07:21 +0200
changeset 230 3282ef5328a8
child 237 a84441ff1f73
permissions -rw-r--r--
Yet another example of spring autoconfiguration
jtulach@230
     1
package org.apidesign.anagram.app.springscan;
jtulach@230
     2
jtulach@230
     3
import org.apidesign.anagram.scramblersimple.SimpleScrambler;
jtulach@230
     4
import org.springframework.stereotype.Service;
jtulach@230
     5
jtulach@230
     6
/* This class shall be in its own module, not here, but because of the need
jtulach@230
     7
 * to see the @Service annotation, I've put it here. The right solution would
jtulach@230
     8
 * be to add dependency of the module providing super class on spring and
jtulach@230
     9
 * use the annotation directly there.
jtulach@230
    10
 */
jtulach@230
    11
jtulach@230
    12
jtulach@230
    13
@Service
jtulach@230
    14
public class SimpleScramblerAnnotated extends SimpleScrambler {
jtulach@230
    15
}