Access a normal java class from EJB

how can i access normal java class from an EJB.I do not want to write the business logic inside the EJB. How can I achieve this.
[142 byte] By [v12345a] at [2007-10-3 3:56:18]
# 1
There's no special API for doing this. Just use normal java.E.g.@Stateless public class FooBean implements Foo {public void foo() {// access non-EJB utility class BarBar b = new Bar();b.bar();}
ksaksa at 2007-7-14 21:54:30 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...