KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > profileservice > simple1 > ProfileServiceImpl2


1 package org.jboss.test.profileservice.simple1;
2
3 import java.io.IOException JavaDoc;
4
5 /**
6  * A simple read-only profile service for testing the basic kernel bootstrap
7  * and management view usecases.
8  *
9  * @author Scott.Stark@jboss.org
10  * @version $Revision$
11  */

12 public class ProfileServiceImpl2
13    extends ProfileServiceImpl
14 {
15    public ProfileServiceImpl2() throws IOException JavaDoc
16    {
17       defatulImpl = new ProfileImpl2();
18    }
19
20 }
21
Popular Tags