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