1 /*
2 * ========================================================================
3 *
4 * Licensed to the Apache Software Foundation (ASF) under one or more
5 * contributor license agreements. See the NOTICE file distributed with
6 * this work for additional information regarding copyright ownership.
7 * The ASF licenses this file to You under the Apache License, Version 2.0
8 * (the "License"); you may not use this file except in compliance with
9 * the License. You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 *
19 * ========================================================================
20 */
21 package org.apache.cactus.internal.server.runner;
22
23 import org.apache.cactus.internal.util.ClassLoaderUtils;
24
25 /**
26 * Dynamic class loader to load classes from the webapp classpath.
27 *
28 * @version $Id: WebappTestSuiteLoader.java 238991 2004-05-22 11:34:50Z vmassol $
29 */
30 public class WebappTestSuiteLoader
31 {
32 /**
33 * Try to load the test suite class using both the context class loader
34 * or the class loader that loaded this class.
35 *
36 * @param theSuiteClassName the test suite class to load
37 * @return the test suite class object
38 * @throws ClassNotFoundException if failed to load the class
39 */
40 public Class load(String theSuiteClassName) throws ClassNotFoundException
41 {
42 return ClassLoaderUtils.loadClass(theSuiteClassName, this.getClass());
43 }
44
45 /**
46 * Not implemented. Used to reload a class.
47 *
48 * @param theClass the class to reload
49 * @return the reloaded class
50 * @throws ClassNotFoundException if an error occurs during reloading
51 */
52 public Class reload(Class theClass) throws ClassNotFoundException
53 {
54 throw new ClassNotFoundException("Feature not implemented");
55 }
56 }