KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > profileservice > support > Simple2PSBootstrap


1 package org.jboss.test.profileservice.support;
2
3 import org.jboss.test.profileservice.simple1.ProfileServiceImpl2;
4
5 import java.io.IOException JavaDoc;
6
7 public class Simple2PSBootstrap extends Simple1PSBootstrap
8 {
9    public Simple2PSBootstrap(String JavaDoc name) throws IOException JavaDoc
10    {
11       super(name);
12       profileService = new ProfileServiceImpl2();
13    }
14
15 }
16
Popular Tags