All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.beigesoft.ajetty.FactoryWebAppClassLoaderEmbedded Maven / Gradle / Ivy

Go to download

A-Jetty Base can run on Android Java as well as on standard Java 7+ and it can run precompiled JSP/JSTL.

There is a newer version: 1.0.5
Show newest version
package org.beigesoft.ajetty;

/*
 * Beigesoft ™
 *
 * Licensed under the Apache License, Version 2.0
 *
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 */

import org.eclipse.jetty.webapp.WebAppClassLoader;
import org.eclipse.jetty.webapp.WebAppClassLoaderEmbedded;

import org.beigesoft.afactory.IFactoryParam;

/**
 * 

Factory of WebAppClassLoaderEmbedded.

* * @author Yury Demidenko */ public class FactoryWebAppClassLoaderEmbedded implements IFactoryParam { /** *

Create a bean with abstract params.

* @param pParam parameter * @return M request(or) scoped bean */ @Override public final WebAppClassLoaderEmbedded create( final WebAppClassLoader.Context pContext) throws Exception { return new WebAppClassLoaderEmbedded(pContext); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy