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

org.eclipse.jetty.util.resource.VisibleCombinedResource Maven / Gradle / Ivy

There is a newer version: 3.1.22
Show newest version
/*
 * Licensed under MIT (https://github.com/ligoj/ligoj/blob/master/LICENSE)
 */
package org.eclipse.jetty.util.resource;

import java.util.List;

/**
 * Dummy implementation required by a poor design of jetty sever configuration.
 */
public class VisibleCombinedResource {
	/**
	 * Simple override of CombinedResource#combine
	 * @param resources The combined resources.
	 * @return The combined resources.
	 */
	public static Resource combine(Resource... resources) {
		return CombinedResource.combine(List.of(resources));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy