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

org.onetwo.common.web.tomcatmini.ContextCreatedEvent Maven / Gradle / Ivy

package org.onetwo.common.web.tomcatmini;

import java.util.List;

import org.apache.catalina.Context;
import org.apache.catalina.startup.Tomcat;

public class ContextCreatedEvent {
	final private Tomcat tomcat;
	final private List contexts;
	
	public ContextCreatedEvent(Tomcat tomcat, List contexts) {
		super();
		this.tomcat = tomcat;
		this.contexts = contexts;
	}
	public Tomcat getTomcat() {
		return tomcat;
	}
	public List getContexts() {
		return contexts;
	}
	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy